Lines Matching defs:SIZE
2116 #define LDST(SIZEOP, SIZE) \
2118 *(SIZE *)(unsigned long) (DST + insn->off) = SRC; \
2121 *(SIZE *)(unsigned long) (DST + insn->off) = IMM; \
2124 DST = *(SIZE *)(unsigned long) (SRC + insn->off); \
2127 bpf_probe_read_kernel_common(&DST, sizeof(SIZE), \
2129 DST = *((SIZE *)&DST); \
2138 #define LDSX(SIZEOP, SIZE) \
2140 DST = *(SIZE *)(unsigned long) (SRC + insn->off); \
2143 bpf_probe_read_kernel_common(&DST, sizeof(SIZE), \
2145 DST = *((SIZE *)&DST); \
2220 #define LOAD_ACQUIRE(SIZEOP, SIZE) \
2222 DST = (SIZE)smp_load_acquire( \
2223 (SIZE *)(unsigned long)(SRC + insn->off)); \
2238 #define STORE_RELEASE(SIZEOP, SIZE) \
2241 (SIZE *)(unsigned long)(DST + insn->off), (SIZE)SRC); \