Home
last modified time | relevance | path

Searched refs:jf (Results 1 – 8 of 8) sorted by relevance

/f-stack/freebsd/net/
H A Dbpf_filter.c390 pc += (A > pc->k) ? pc->jt : pc->jf; in bpf_filter()
394 pc += (A >= pc->k) ? pc->jt : pc->jf; in bpf_filter()
398 pc += (A == pc->k) ? pc->jt : pc->jf; in bpf_filter()
402 pc += (A & pc->k) ? pc->jt : pc->jf; in bpf_filter()
406 pc += (A > X) ? pc->jt : pc->jf; in bpf_filter()
410 pc += (A >= X) ? pc->jt : pc->jf; in bpf_filter()
414 pc += (A == X) ? pc->jt : pc->jf; in bpf_filter()
418 pc += (A & X) ? pc->jt : pc->jf; in bpf_filter()
582 offset = p->jt > p->jf ? p->jt : p->jf; in bpf_validate()
H A Dbpf.h366 u_char jf; member
374 #define BPF_JUMP(code, k, jt, jf) { (u_short)(code), jt, jf, k } argument
/f-stack/tools/compat/include/net/
H A Dbpf.h365 u_char jf; member
373 #define BPF_JUMP(code, k, jt, jf) { (u_short)(code), jt, jf, k } argument
/f-stack/freebsd/i386/i386/
H A Dbpf_jit_machdep.h423 if (ins->jt != 0 && ins->jf != 0) { \
428 JMP(stream.refs[stream.bpf_pc + ins->jf] - \
436 emitm(&stream, stream.refs[stream.bpf_pc + ins->jf] - \
H A Dbpf_jit_machdep.c458 if (ins->jt == ins->jf) { in bpf_jit_compile()
/f-stack/freebsd/amd64/amd64/
H A Dbpf_jit_machdep.h478 if (ins->jt != 0 && ins->jf != 0) { \
483 JMP(stream.refs[stream.bpf_pc + ins->jf] - \
491 emitm(&stream, stream.refs[stream.bpf_pc + ins->jf] - \
H A Dbpf_jit_machdep.c436 if (ins->jt == ins->jf) { in bpf_jit_compile()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlparser.c1384 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()