/openbmc/linux/samples/seccomp/ |
H A D | bpf-helper.h | 55 #define SYSCALL(nr, jt) \ argument 57 jt 76 #define JEQ(x, jt) JEQ32(x, EXPAND(jt)) argument 77 #define JNE(x, jt) JNE32(x, EXPAND(jt)) argument 78 #define JGT(x, jt) JGT32(x, EXPAND(jt)) argument 79 #define JLT(x, jt) JLT32(x, EXPAND(jt)) argument 80 #define JGE(x, jt) JGE32(x, EXPAND(jt)) argument 81 #define JLE(x, jt) JLE32(x, EXPAND(jt)) argument 82 #define JA(x, jt) JA32(x, EXPAND(jt)) argument 103 #define JEQ(x, jt) \ argument [all …]
|
H A D | bpf-helper.c | 35 switch ((instr->jt<<8)|instr->jf) { in bpf_resolve_jumps() 44 instr->jt = 0; in bpf_resolve_jumps() 55 instr->jt = 0; in bpf_resolve_jumps() 95 filter->code, filter->jt, filter->jf, filter->k); in seccomp_bpf_print()
|
/openbmc/u-boot/examples/standalone/ |
H A D | stubs.c | 15 static struct jt_funcs *jt; variable 39 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r11"); 53 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "x9"); 65 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "ip"); 83 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "t9"); 99 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "t9"); 115 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "gp"); 131 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "a0"); 143 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r5"); 161 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r1", "r2"); [all …]
|
/openbmc/u-boot/board/freescale/ls2080ardb/ |
H A D | eth_ls2080rdb.c | 107 gd->jt->strcpy = strcpy; in board_eth_init() 108 gd->jt->mdelay = mdelay; in board_eth_init() 109 gd->jt->mdio_get_current_dev = mdio_get_current_dev; in board_eth_init() 110 gd->jt->phy_find_by_mask = phy_find_by_mask; in board_eth_init() 111 gd->jt->mdio_phydev_for_ethname = mdio_phydev_for_ethname; in board_eth_init() 112 gd->jt->miiphy_set_current_dev = miiphy_set_current_dev; in board_eth_init()
|
/openbmc/u-boot/board/freescale/lx2160a/ |
H A D | eth_lx2160ardb.c | 161 gd->jt->strcpy = strcpy; in board_eth_init() 162 gd->jt->mdelay = mdelay; in board_eth_init() 163 gd->jt->mdio_get_current_dev = mdio_get_current_dev; in board_eth_init() 164 gd->jt->phy_find_by_mask = phy_find_by_mask; in board_eth_init() 165 gd->jt->mdio_phydev_for_ethname = mdio_phydev_for_ethname; in board_eth_init() 166 gd->jt->miiphy_set_current_dev = miiphy_set_current_dev; in board_eth_init()
|
H A D | eth_lx2160aqds.c | 569 gd->jt->strcpy = strcpy; in board_eth_init() 570 gd->jt->mdelay = mdelay; in board_eth_init() 571 gd->jt->mdio_get_current_dev = mdio_get_current_dev; in board_eth_init() 572 gd->jt->phy_find_by_mask = phy_find_by_mask; in board_eth_init() 573 gd->jt->mdio_phydev_for_ethname = mdio_phydev_for_ethname; in board_eth_init() 574 gd->jt->miiphy_set_current_dev = miiphy_set_current_dev; in board_eth_init()
|
/openbmc/linux/tools/include/uapi/linux/ |
H A D | filter.h | 26 __u8 jt; /* Jump true */ member 52 #define BPF_JUMP(code, k, jt, jf) { (unsigned short)(code), jt, jf, k } argument
|
/openbmc/linux/include/uapi/linux/ |
H A D | filter.h | 26 __u8 jt; /* Jump true */ member 52 #define BPF_JUMP(code, k, jt, jf) { (unsigned short)(code), jt, jf, k } argument
|
/openbmc/u-boot/common/ |
H A D | console.c | 132 gd->jt->getc = getc; in console_setfile() 133 gd->jt->tstc = tstc; in console_setfile() 136 gd->jt->putc = putc; in console_setfile() 137 gd->jt->puts = puts; in console_setfile() 138 gd->jt->printf = printf; in console_setfile() 797 gd->jt->getc = serial_getc; in console_init_r() 798 gd->jt->tstc = serial_tstc; in console_init_r() 799 gd->jt->putc = serial_putc; in console_init_r() 800 gd->jt->puts = serial_puts; in console_init_r() 801 gd->jt->printf = serial_printf; in console_init_r()
|
H A D | exports.c | 17 #define EXPORT_FUNC(f, a, x, ...) gd->jt->x = f; 28 gd->jt = malloc(sizeof(struct jt_funcs)); in jumptable_init()
|
/openbmc/linux/tools/bpf/ |
H A D | bpf_dbg.c | 433 i + 1 + f.jt, i + 1 + f.jf); in bpf_disasm() 444 f->code, f->jt, f->jf, f->k); in bpf_dump_curr() 448 if (f->jt || f->jf) { in bpf_dump_curr() 450 bpf_disasm(*(f + f->jt + 1), r->Pc + f->jt + 1); in bpf_dump_curr() 495 f[i].code, f[i].jt, f[i].jf, f[i].k); in bpf_dump_all() 734 r->Pc += r->A > r->X ? f->jt : f->jf; in bpf_single_step() 737 r->Pc += r->A > K ? f->jt : f->jf; in bpf_single_step() 740 r->Pc += r->A >= r->X ? f->jt : f->jf; in bpf_single_step() 743 r->Pc += r->A >= K ? f->jt : f->jf; in bpf_single_step() 746 r->Pc += r->A == r->X ? f->jt : f->jf; in bpf_single_step() [all …]
|
H A D | bpf_exp.y | 43 static void bpf_set_curr_instr(uint16_t op, uint8_t jt, uint8_t jf, uint32_t k); 479 static void bpf_set_curr_instr(uint16_t code, uint8_t jt, uint8_t jf, in bpf_set_curr_instr() argument 484 out[curr_instr].jt = jt; in bpf_set_curr_instr() 567 out[i].jt = bpf_encode_jt_jf_offset(off, i); in bpf_reduce_jt_jumps() 597 out[i].jt, out[i].jf, out[i].k); in bpf_pretty_print_c() 607 out[i].jt, out[i].jf, out[i].k); in bpf_pretty_print()
|
/openbmc/u-boot/doc/ |
H A D | README.standalone | 7 however. The jump table can be accessed as the 'jt' field of the 15 gd->jt->malloc = my_malloc; 16 gd->jt->free = my_free; 93 gd->jt->foobar = another_foobar;
|
/openbmc/u-boot/include/asm-generic/ |
H A D | global_data.h | 84 struct jt_funcs *jt; /* jump table */ member
|
/openbmc/linux/tools/testing/selftests/net/mptcp/ |
H A D | simult_flows.sh | 178 ./mptcp_connect -jt ${timeout_poll} -l -p $port -T $max_time \ 186 ./mptcp_connect -jt ${timeout_poll} -p $port -T $max_time \
|
/openbmc/linux/Documentation/networking/ |
H A D | filter.rst | 78 __u8 jt; /* Jump true */ 84 a code, jt, jf and k value. jt and jf are jump offsets and k a generic 207 op:16, jt:8, jf:8, k:32 210 encoded. jt and jf are two 8 bit wide jump targets, one for condition 446 /* { op, jt, jf, k }, */ 475 code: [40] jt[0] jf[0] k[12] <-- plain BPF code of current instruction
|
/openbmc/linux/arch/sparc/net/ |
H A D | bpf_jit_comp_32.c | 653 t_offset = addrs[i + filter[i].jt]; in bpf_jit_compile() 656 if (filter[i].jt == filter[i].jf) { in bpf_jit_compile() 692 if (filter[i].jt != 0) { in bpf_jit_compile()
|
/openbmc/linux/Documentation/bpf/ |
H A D | classic_vs_extended.rst | 55 - Conditional jt/jf targets replaced with jt/fall-through: 212 op:16, jt:8, jf:8, k:32 ==> op:8, dst_reg:4, src_reg:4, off:16, imm:32
|
/openbmc/qemu/target/riscv/insn_trans/ |
H A D | trans_rvzce.c.inc | 305 /* c.jt vs c.jalt depends on the index. */
|
/openbmc/u-boot/cmd/ |
H A D | load.c | 225 if (gd->jt->getc != getc) { in read_record()
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | jquery-2.0.3.min.js | 5 …jt=["Top","Right","Bottom","Left"],Dt=["Webkit","O","Moz","ms"];function At(e,t){if(t in e)return … variable 6 …nish})}});function qn(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=jt[i],r["margin"+n]=r["…
|
/openbmc/linux/kernel/ |
H A D | seccomp.c | 786 pc += op_res ? insn->jt : insn->jf; in seccomp_is_const_allow()
|
/openbmc/openbmc/meta-raspberrypi/recipes-graphics/userland/files/ |
H A D | 0003-wayland-Add-Wayland-example.patch | 76 …jt{ku}r}�v��r|�oyap�[jzSbrM`oK_pKbrIbrHaqGbrF_oGaqKcsMasPctTduTdvPbmYkvfz�\mvPajL_fIZ`EU\VnzDZf=P…
|
/openbmc/qemu/linux-user/ |
H A D | strace.c | 2989 filter[i].jt, filter[i].jf, in do_print_sockopt() 2994 filter[i].jt, filter[i].jf, in do_print_sockopt()
|
/openbmc/linux/net/core/ |
H A D | filter.c | 741 target = i + fp->jt + 1; in bpf_convert_filter() 747 if (fp->jt == 0) { in bpf_convert_filter() 768 target = i + fp->jt + 1; in bpf_convert_filter() 955 masks[pc + 1 + filter[pc].jt] &= memvalid; in check_load_and_stores() 1109 if (pc + ftest->jt + 1 >= flen || in bpf_check_classic()
|