| /freebsd/contrib/libpcap/ |
| H A D | bpf_filter.c | 244 pc += (A > pc->k) ? pc->jt : pc->jf; in pcapint_filter_with_aux_data() 248 pc += (A >= pc->k) ? pc->jt : pc->jf; in pcapint_filter_with_aux_data() 252 pc += (A == pc->k) ? pc->jt : pc->jf; in pcapint_filter_with_aux_data() 256 pc += (A & pc->k) ? pc->jt : pc->jf; in pcapint_filter_with_aux_data() 260 pc += (A > X) ? pc->jt : pc->jf; in pcapint_filter_with_aux_data() 264 pc += (A >= X) ? pc->jt : pc->jf; in pcapint_filter_with_aux_data() 268 pc += (A == X) ? pc->jt : pc->jf; in pcapint_filter_with_aux_data() 272 pc += (A & X) ? pc->jt : pc->jf; in pcapint_filter_with_aux_data() 512 if (from + p->jt >= (u_int)len || from + p->jf >= (u_int)len) in pcapint_validate_filter()
|
| H A D | bpf_dump.c | 41 insn->jt, insn->jf, insn->k); in bpf_dump() 48 insn->code, insn->jt, insn->jf, insn->k); in bpf_dump()
|
| H A D | optimize.c | 2753 if (src->s.jt || src->s.jf) { in convert_code_r() 2766 int jt, jf; in convert_code_r() local 2771 off, src->s.jt, src->s.jf); in convert_code_r() 2774 if (!src->s.jt || !src->s.jf) { in convert_code_r() 2780 jt = jf = 0; in convert_code_r() 2797 if (offset[i] == src->s.jf) { in convert_code_r() 2798 if (jf) { in convert_code_r() 2808 dst->jf = (u_char)(i - off - 1); in convert_code_r() 2809 jf++; in convert_code_r() 2812 if (!jt || !jf) { in convert_code_r() [all …]
|
| H A D | gencode.c | 2482 sjeq_avs_cookie->s.jf = s2; in gen_load_prism_llprefixlen() 2492 sjcommon->s.jf = s2; in gen_load_prism_llprefixlen() 2769 sjset_data_frame_1->s.jf = snext; in gen_load_802_11_header_len() 2777 sjset_data_frame_2->s.jf = sjset_qos = new_stmt(cstate, JMP(BPF_JSET)); in gen_load_802_11_header_len() 2821 sjset_qos->s.jf = s2 = new_stmt(cstate, BPF_LD|BPF_ABS|BPF_W); in gen_load_802_11_header_len() 2832 sjset_radiotap_flags_present->s.jf = snext; in gen_load_802_11_header_len() 2853 sjset_radiotap_ext_present->s.jf = sjset_radiotap_tsft_present; in gen_load_802_11_header_len() 2884 sjset_radiotap_tsft_present->s.jf = s2; in gen_load_802_11_header_len() 2911 sjset_tsft_datapad->s.jf = snext; in gen_load_802_11_header_len() 2913 sjset_notsft_datapad->s.jf = snext; in gen_load_802_11_header_len() [all …]
|
| H A D | rpcap-protocol.h | 337 uint8 jf; /* relative offset to jump to in case of 'false' */ member
|
| H A D | gencode.h | 221 struct slist *jf; /* only for relative jump in block */ member
|
| H A D | bpf_image.c | 417 n, op, operand, n + 1 + p->jt, n + 1 + p->jf); in bpf_image()
|
| /freebsd/sbin/ipf/ipf/ |
| H A D | bpf_filter.c | 340 pc += (A > pc->k) ? pc->jt : pc->jf; in bpf_filter() 344 pc += (A >= pc->k) ? pc->jt : pc->jf; in bpf_filter() 348 pc += (A == pc->k) ? pc->jt : pc->jf; in bpf_filter() 352 pc += (A & pc->k) ? pc->jt : pc->jf; in bpf_filter() 356 pc += (A > X) ? pc->jt : pc->jf; in bpf_filter() 360 pc += (A >= X) ? pc->jt : pc->jf; in bpf_filter() 364 pc += (A == X) ? pc->jt : pc->jf; in bpf_filter() 368 pc += (A & X) ? pc->jt : pc->jf; in bpf_filter() 561 if (from + p->jt >= len || from + p->jf >= len) in bpf_validate()
|
| H A D | bpf-ipf.h | 403 u_char jf; member 411 #define BPF_JUMP(code, k, jt, jf) { (u_short)(code), jt, jf, k } argument
|
| /freebsd/sys/net/ |
| H A D | bpf_filter.c | 385 pc += (A > pc->k) ? pc->jt : pc->jf; in bpf_filter() 389 pc += (A >= pc->k) ? pc->jt : pc->jf; in bpf_filter() 393 pc += (A == pc->k) ? pc->jt : pc->jf; in bpf_filter() 397 pc += (A & pc->k) ? pc->jt : pc->jf; in bpf_filter() 401 pc += (A > X) ? pc->jt : pc->jf; in bpf_filter() 405 pc += (A >= X) ? pc->jt : pc->jf; in bpf_filter() 409 pc += (A == X) ? pc->jt : pc->jf; in bpf_filter() 413 pc += (A & X) ? pc->jt : pc->jf; in bpf_filter() 577 offset = p->jt > p->jf ? p->jt : p->jf; in bpf_validate()
|
| H A D | bpf.h | 374 u_char jf; member 382 #define BPF_JUMP(code, k, jt, jf) { (u_short)(code), jt, jf, k } argument
|
| /freebsd/contrib/libpcap/pcap/ |
| H A D | bpf.h | 261 u_char jf; 282 #define BPF_JUMP(code, k, jt, jf) { (u_short)(code), jt, jf, k }
|
| /freebsd/contrib/tcpdump/ |
| H A D | bpf_dump.c | 43 insn->jt, insn->jf, insn->k); in bpf_dump() 50 insn->code, insn->jt, insn->jf, insn->k); in bpf_dump()
|
| /freebsd/contrib/wpa/src/drivers/ |
| H A D | driver_nl80211_monitor.c | 305 if (insn->jf == PASS) in add_monitor_filter() 306 insn->jf = msock_filter.len - idx - 2; in add_monitor_filter() 307 else if (insn->jf == FAIL) in add_monitor_filter() 308 insn->jf = msock_filter.len - idx - 3; in add_monitor_filter()
|
| /freebsd/tools/regression/bpf/bpf_filter/ |
| H A D | bpf_test.c | 159 offset = p->jt > p->jf ? p->jt : p->jf; in bpf_validate()
|
| /freebsd/sys/i386/i386/ |
| H A D | bpf_jit_machdep.h | 421 if (ins->jt != 0 && ins->jf != 0) { \ 426 JMP(stream.refs[stream.bpf_pc + ins->jf] - \ 434 emitm(&stream, stream.refs[stream.bpf_pc + ins->jf] - \
|
| H A D | bpf_jit_machdep.c | 456 if (ins->jt == ins->jf) { in bpf_jit_compile()
|
| /freebsd/sys/amd64/amd64/ |
| H A D | bpf_jit_machdep.h | 476 if (ins->jt != 0 && ins->jf != 0) { \ 481 JMP(stream.refs[stream.bpf_pc + ins->jf] - \ 489 emitm(&stream, stream.refs[stream.bpf_pc + ins->jf] - \
|
| H A D | bpf_jit_machdep.c | 434 if (ins->jt == ins->jf) { in bpf_jit_compile()
|
| /freebsd/usr.bin/sort/tests/ |
| H A D | sort_monthsort_test.sh | 12 date -jf "%Y-%m-%d" {} "${1}" >>in
|
| /freebsd/sys/modules/iwlwifi/ |
| H A D | Makefile | 21 SRCS+= cfg/rf-fm.c cfg/rf-gf.c cfg/rf-hr.c cfg/rf-jf.c cfg/rf-pe.c
|
| /freebsd/usr.sbin/usbdump/ |
| H A D | usbdump.c | 61 (x).jf = (_jf); \ 68 (x).jf = 0; \
|
| /freebsd/sys/contrib/openzfs/module/lua/ |
| H A D | lparser.c | 1384 int jf; /* instruction to skip 'then' code (if condition is false) */ in test_then_block() local 1398 jf = luaK_jump(fs); in test_then_block() 1403 jf = v.f; in test_then_block() 1410 luaK_patchtohere(fs, jf); in test_then_block()
|
| /freebsd/contrib/lua/src/ |
| H A D | lparser.c | 1642 int jf; /* instruction to skip 'then' code (if condition is false) */ in test_then_block() local 1658 jf = luaK_jump(fs); in test_then_block() 1663 jf = v.f; in test_then_block() 1670 luaK_patchtohere(fs, jf); in test_then_block()
|
| /freebsd/tests/sys/netpfil/pf/ |
| H A D | table.sh | 170 date -jf '%a %b %d %H:%M:%S %Y' "$1" '+%s'
|