Symbol: SZ
arch/sh/math-emu/math.c
101
#define ARITH_X(SZ,OP,M,N) do{ \
arch/sh/math-emu/math.c
102
FP_DECL_##SZ(Fm); FP_DECL_##SZ(Fn); FP_DECL_##SZ(Fr); \
arch/sh/math-emu/math.c
103
UNPACK_##SZ(Fm, M); UNPACK_##SZ(Fn, N); \
arch/sh/math-emu/math.c
104
FP_##OP##_##SZ(Fr, Fn, Fm); \
arch/sh/math-emu/math.c
105
PACK_##SZ(N, Fr); }while(0)
arch/sh/math-emu/math.c
287
#define EMU_FLOAT_X(SZ,N) do { \
arch/sh/math-emu/math.c
288
FP_DECL_##SZ(Fn); \
arch/sh/math-emu/math.c
289
FP_FROM_INT_##SZ(Fn, FPUL, 32, int); \
arch/sh/math-emu/math.c
290
PACK_##SZ(N, Fn); }while(0)
arch/sh/math-emu/math.c
303
#define EMU_FTRC_X(SZ,N) do { \
arch/sh/math-emu/math.c
304
FP_DECL_##SZ(Fn); \
arch/sh/math-emu/math.c
305
UNPACK_##SZ(Fn, N); \
arch/sh/math-emu/math.c
306
FP_TO_INT_##SZ(FPUL, Fn, 32, 1); }while(0)
arch/sh/math-emu/math.c
70
#define CMP_X(SZ,R,M,N) do{ \
arch/sh/math-emu/math.c
71
FP_DECL_##SZ(Fm); FP_DECL_##SZ(Fn); \
arch/sh/math-emu/math.c
72
UNPACK_##SZ(Fm, M); UNPACK_##SZ(Fn, N); \
arch/sh/math-emu/math.c
73
FP_CMP_##SZ(R, Fn, Fm, 2); }while(0)
arch/sh/math-emu/math.c
74
#define EQ_X(SZ,R,M,N) do{ \
arch/sh/math-emu/math.c
75
FP_DECL_##SZ(Fm); FP_DECL_##SZ(Fn); \
arch/sh/math-emu/math.c
76
UNPACK_##SZ(Fm, M); UNPACK_##SZ(Fn, N); \
arch/sh/math-emu/math.c
77
FP_CMP_EQ_##SZ(R, Fn, Fm); }while(0)
arch/sparc/net/bpf_jit_comp_32.c
291
#define emit_alloc_stack(SZ) \
arch/sparc/net/bpf_jit_comp_32.c
292
*prog++ = (SUB | IMMED | RS1(SP) | S13(SZ) | RD(SP))
arch/sparc/net/bpf_jit_comp_32.c
294
#define emit_release_stack(SZ) \
arch/sparc/net/bpf_jit_comp_32.c
295
*prog++ = (ADD | IMMED | RS1(SP) | S13(SZ) | RD(SP))
lib/crc/mips/crc32.h
16
#define _ASM_SET_CRC(OP, SZ, TYPE) \
lib/crc/mips/crc32.h
22
((SZ) << 6) | ((TYPE) << 8)) \
lib/crc/mips/crc32.h
24
((SZ) << 14) | ((TYPE) << 3)))
lib/crc/mips/crc32.h
25
#define _ASM_UNSET_CRC(op, SZ, TYPE) ".purgem " #op "\n\t"
lib/crc/mips/crc32.h
27
#define _ASM_SET_CRC(op, SZ, TYPE) ".set\tcrc\n\t"
lib/crc/mips/crc32.h
28
#define _ASM_UNSET_CRC(op, SZ, TYPE)
lib/crc/mips/crc32.h
31
#define __CRC32(crc, value, op, SZ, TYPE) \
lib/crc/mips/crc32.h
35
_ASM_SET_CRC(op, SZ, TYPE) \
lib/crc/mips/crc32.h
37
_ASM_UNSET_CRC(op, SZ, TYPE) \
scripts/mod/modpost.c
1686
char tmp[SZ];
scripts/mod/modpost.c
1691
len = vsnprintf(tmp, SZ, fmt, ap);
scripts/mod/modpost.c
1699
buf->size += len + SZ;
tools/testing/selftests/bpf/progs/uretprobe_stack.c
35
entry1_len = bpf_get_stack(ctx, &entry_stack1, SZ, BPF_F_USER_STACK);
tools/testing/selftests/bpf/progs/uretprobe_stack.c
37
entry1_recur_len = bpf_get_stack(ctx, &entry_stack1_recur, SZ, BPF_F_USER_STACK);
tools/testing/selftests/bpf/progs/uretprobe_stack.c
51
exit1_recur_len = bpf_get_stack(ctx, &exit_stack1_recur, SZ, BPF_F_USER_STACK);
tools/testing/selftests/bpf/progs/uretprobe_stack.c
53
exit1_len = bpf_get_stack(ctx, &exit_stack1, SZ, BPF_F_USER_STACK);
tools/testing/selftests/bpf/progs/uretprobe_stack.c
62
entry2_len = bpf_get_stack(ctx, &entry_stack2, SZ, BPF_F_USER_STACK);
tools/testing/selftests/bpf/progs/uretprobe_stack.c
71
entry3_len = bpf_get_stack(ctx, &entry_stack3, SZ, BPF_F_USER_STACK);
tools/testing/selftests/bpf/progs/uretprobe_stack.c
80
entry4_len = bpf_get_stack(ctx, &entry_stack4, SZ, BPF_F_USER_STACK);
tools/testing/selftests/bpf/progs/uretprobe_stack.c
87
exit4_len = bpf_get_stack(ctx, &exit_stack4, SZ, BPF_F_USER_STACK);
tools/testing/selftests/bpf/progs/uretprobe_stack.c
94
usdt_len = bpf_get_stack(ctx, &usdt_stack, SZ, BPF_F_USER_STACK);