| /OK3568_Linux_fs/kernel/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()
|
| /OK3568_Linux_fs/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 …]
|
| /OK3568_Linux_fs/u-boot/board/freescale/ls2080ardb/ |
| H A D | eth_ls2080rdb.c | 108 gd->jt->strcpy = strcpy; in board_eth_init() 109 gd->jt->mdelay = mdelay; in board_eth_init() 110 gd->jt->mdio_get_current_dev = mdio_get_current_dev; in board_eth_init() 111 gd->jt->phy_find_by_mask = phy_find_by_mask; in board_eth_init() 112 gd->jt->mdio_phydev_for_ethname = mdio_phydev_for_ethname; in board_eth_init() 113 gd->jt->miiphy_set_current_dev = miiphy_set_current_dev; in board_eth_init()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/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
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/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
|
| /OK3568_Linux_fs/kernel/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
|
| /OK3568_Linux_fs/kernel/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
|
| /OK3568_Linux_fs/u-boot/common/ |
| H A D | console.c | 138 gd->jt->getc = getc; in console_setfile() 139 gd->jt->tstc = tstc; in console_setfile() 142 gd->jt->putc = putc; in console_setfile() 143 gd->jt->puts = puts; in console_setfile() 144 gd->jt->printf = printf; in console_setfile() 844 gd->jt->getc = serial_getc; in console_init_r() 845 gd->jt->tstc = serial_tstc; in console_init_r() 846 gd->jt->putc = serial_putc; in console_init_r() 847 gd->jt->puts = serial_puts; in console_init_r() 848 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()
|
| /OK3568_Linux_fs/kernel/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() 565 out[i].jt = bpf_encode_jt_jf_offset(off, i); in bpf_reduce_jt_jumps() 595 out[i].jt, out[i].jf, out[i].k); in bpf_pretty_print_c() 605 out[i].jt, out[i].jf, out[i].k); in bpf_pretty_print()
|
| /OK3568_Linux_fs/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; 92 gd->jt->foobar = another_foobar;
|
| /OK3568_Linux_fs/kernel/arch/powerpc/net/ |
| H A D | bpf_jit_comp.c | 480 if (filter[i].jt == filter[i].jf) { in bpf_jit_build_body() 481 if (filter[i].jt > 0) in bpf_jit_build_body() 482 PPC_JMP(addrs[i + 1 + filter[i].jt]); in bpf_jit_build_body() 522 if (filter[i].jt == 0) in bpf_jit_build_body() 527 PPC_BCC(true_cond, addrs[i + 1 + filter[i].jt]); in bpf_jit_build_body()
|
| /OK3568_Linux_fs/kernel/arch/mips/net/ |
| H A D | bpf_jit.c | 683 __func__, inst->code, inst->jt, inst->jf, inst->k); in build_body() 1006 b_off = b_imm(i + inst->jt + 1, ctx); in build_body() 1011 b_off = b_imm(i + inst->jt + 1, ctx); in build_body() 1021 b_off = b_imm(i + inst->jt + 1, ctx); in build_body() 1034 b_off = b_imm(i + inst->jt + 1, in build_body() 1053 b_off = b_imm(i + inst->jt + 1, ctx); in build_body() 1066 b_off = b_imm(i + inst->jt + 1, ctx); in build_body()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/net/mptcp/ |
| H A D | simult_flows.sh | 160 ip netns exec ${ns3} ./mptcp_connect -jt $timeout -l -p $port 0.0.0.0 < "$sin" > "$sout" & 167 ip netns exec ${ns1} ./mptcp_connect -jt $timeout -p $port 10.0.3.3 < "$cin" > "$cout" &
|
| /OK3568_Linux_fs/u-boot/include/asm-generic/ |
| H A D | global_data.h | 96 struct jt_funcs *jt; /* jump table */ member
|
| /OK3568_Linux_fs/kernel/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()
|
| /OK3568_Linux_fs/kernel/Documentation/networking/ |
| H A D | filter.rst | 71 __u8 jt; /* Jump true */ 77 a code, jt, jf and k value. jt and jf are jump offsets and k a generic 200 op:16, jt:8, jf:8, k:32 203 encoded. jt and jf are two 8 bit wide jump targets, one for condition 430 /* { op, jt, jf, k }, */ 459 code: [40] jt[0] jf[0] k[12] <-- plain BPF code of current instruction 696 - Conditional jt/jf targets replaced with jt/fall-through: 853 op:16, jt:8, jf:8, k:32 ==> op:8, dst_reg:4, src_reg:4, off:16, imm:32
|
| /OK3568_Linux_fs/yocto/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 … 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["…
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | load.c | 228 if (gd->jt->getc != getc) { in read_record()
|
| /OK3568_Linux_fs/kernel/ |
| H A D | .mailmap | 150 Jean Tourrilhes <jt@hpl.hp.com>
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | seccomp.c | 764 pc += op_res ? insn->jt : insn->jf; in seccomp_is_const_allow()
|
| /OK3568_Linux_fs/kernel/net/core/ |
| H A D | filter.c | 735 target = i + fp->jt + 1; in bpf_convert_filter() 741 if (fp->jt == 0) { in bpf_convert_filter() 762 target = i + fp->jt + 1; in bpf_convert_filter() 949 masks[pc + 1 + filter[pc].jt] &= memvalid; in check_load_and_stores() 1103 if (pc + ftest->jt + 1 >= flen || in bpf_check_classic()
|
| /OK3568_Linux_fs/recovery/ |
| HD | rootfs.cpio.gz | 107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000binusr/bin07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ... |