• Home
  • Raw
  • Download

Lines Matching refs:jt

64 		      unsigned char jt, unsigned char jf)  in bpf_comp_jeq32()  argument
67 set_bpf_jump(filter, BPF_JMP + BPF_JEQ + BPF_K, lo, jt, jf); in bpf_comp_jeq32()
76 size_t bpf_comp_jeq64(struct sock_filter *filter, uint64_t c, unsigned char jt, in bpf_comp_jeq64() argument
87 curr_block += bpf_comp_jeq32(curr_block, lo, jt, jf); in bpf_comp_jeq64()
94 unsigned char jt, unsigned char jf) in bpf_comp_jgt32() argument
97 set_bpf_jump(filter, BPF_JMP + BPF_JGT + BPF_K, lo, jt, jf); in bpf_comp_jgt32()
102 unsigned char jt, unsigned char jf) in bpf_comp_jge32() argument
105 set_bpf_jump(filter, BPF_JMP + BPF_JGE + BPF_K, lo, jt, jf); in bpf_comp_jge32()
115 size_t bpf_comp_jgt64(struct sock_filter *filter, uint64_t c, unsigned char jt, in bpf_comp_jgt64() argument
126 bpf_comp_jgt32(curr_block, hi, SKIPN(2) + jt, NEXT); in bpf_comp_jgt64()
129 bpf_comp_jgt32(curr_block, hi, SKIPN(3) + jt, NEXT); in bpf_comp_jgt64()
134 curr_block += bpf_comp_jgt32(curr_block, lo, jt, jf); in bpf_comp_jgt64()
139 size_t bpf_comp_jge64(struct sock_filter *filter, uint64_t c, unsigned char jt, in bpf_comp_jge64() argument
150 bpf_comp_jgt32(curr_block, hi, SKIPN(2) + jt, NEXT); in bpf_comp_jge64()
153 bpf_comp_jgt32(curr_block, hi, SKIPN(3) + jt, NEXT); in bpf_comp_jge64()
158 curr_block += bpf_comp_jge32(curr_block, lo, jt, jf); in bpf_comp_jge64()
166 unsigned char jt, unsigned char jf) in bpf_comp_jset32() argument
169 set_bpf_jump(filter, BPF_JMP + BPF_JSET + BPF_K, mask_lo, jt, jf); in bpf_comp_jset32()
179 unsigned char jt, unsigned char jf) in bpf_comp_jset64() argument
187 curr_block += bpf_comp_jset32(curr_block, mask_hi, SKIPN(2) + jt, NEXT); in bpf_comp_jset64()
189 curr_block += bpf_comp_jset32(curr_block, mask_lo, jt, jf); in bpf_comp_jset64()
196 unsigned char jt, unsigned char jf) in bpf_comp_jin() argument
204 return bpf_comp_jset(filter, negative_mask, jf, jt); in bpf_comp_jin()
236 unsigned char jt, unsigned char jf); in bpf_arg_comp()
285 unsigned char jt = flip ? NEXT : SKIP; in bpf_arg_comp() local
287 curr_block += comp_function(curr_block, c, jt, jf); in bpf_arg_comp()
312 switch ((instr->jt << 8) | instr->jf) { in bpf_resolve_jumps()
325 instr->jt = 0; in bpf_resolve_jumps()
336 instr->jt = 0; in bpf_resolve_jumps()