Lines Matching refs:SIZE
2139 #define LDST(SIZEOP, SIZE) \ in ___bpf_prog_run() argument
2141 *(SIZE *)(unsigned long) (DST + insn->off) = SRC; \ in ___bpf_prog_run()
2144 *(SIZE *)(unsigned long) (DST + insn->off) = IMM; \ in ___bpf_prog_run()
2147 DST = *(SIZE *)(unsigned long) (SRC + insn->off); \ in ___bpf_prog_run()
2150 bpf_probe_read_kernel_common(&DST, sizeof(SIZE), \ in ___bpf_prog_run()
2152 DST = *((SIZE *)&DST); \ in ___bpf_prog_run()
2161 #define LDSX(SIZEOP, SIZE) \ in ___bpf_prog_run() argument
2163 DST = *(SIZE *)(unsigned long) (SRC + insn->off); \ in ___bpf_prog_run()
2166 bpf_probe_read_kernel_common(&DST, sizeof(SIZE), \ in ___bpf_prog_run()
2168 DST = *((SIZE *)&DST); \ in ___bpf_prog_run()
2243 #define LOAD_ACQUIRE(SIZEOP, SIZE) \ in ___bpf_prog_run() argument
2245 DST = (SIZE)smp_load_acquire( \ in ___bpf_prog_run()
2246 (SIZE *)(unsigned long)(SRC + insn->off)); \ in ___bpf_prog_run()
2261 #define STORE_RELEASE(SIZEOP, SIZE) \ in ___bpf_prog_run() argument
2264 (SIZE *)(unsigned long)(DST + insn->off), (SIZE)SRC); \ in ___bpf_prog_run()