Home
last modified time | relevance | path

Searched refs:prog_size (Results 1 – 6 of 6) sorted by relevance

/linux-6.6.21/arch/parisc/net/
Dbpf_jit_core.c46 unsigned int prog_size = 0, extable_size = 0; in bpf_int_jit_compile() local
78 prog_size = sizeof(*ctx->insns) * ctx->ninsns; in bpf_int_jit_compile()
112 prog_size = sizeof(*ctx->insns) * ctx->ninsns; in bpf_int_jit_compile()
115 bpf_jit_binary_alloc(prog_size + extable_size, in bpf_int_jit_compile()
142 prog->aux->extable = (void *)ctx->insns + prog_size; in bpf_int_jit_compile()
158 bpf_jit_dump(prog->len, prog_size, pass, ctx->insns); in bpf_int_jit_compile()
165 prog->jited_len = prog_size; in bpf_int_jit_compile()
/linux-6.6.21/arch/riscv/net/
Dbpf_jit_core.c46 unsigned int prog_size = 0, extable_size = 0; in bpf_int_jit_compile() local
78 prog_size = sizeof(*ctx->insns) * ctx->ninsns; in bpf_int_jit_compile()
120 prog_size = sizeof(*ctx->insns) * ctx->ninsns; in bpf_int_jit_compile()
123 bpf_jit_binary_pack_alloc(prog_size + extable_size, in bpf_int_jit_compile()
156 prog->aux->extable = (void *)ctx->ro_insns + prog_size; in bpf_int_jit_compile()
171 bpf_jit_dump(prog->len, prog_size, pass, ctx->insns); in bpf_int_jit_compile()
175 prog->jited_len = prog_size; in bpf_int_jit_compile()
/linux-6.6.21/arch/loongarch/net/
Dbpf_jit.c1097 int image_size, prog_size, extable_size; in bpf_int_jit_compile() local
1138 prog_size = sizeof(u32) * ctx.idx; in bpf_int_jit_compile()
1167 prog_size = sizeof(u32) * ctx.idx; in bpf_int_jit_compile()
1168 image_size = prog_size + extable_size; in bpf_int_jit_compile()
1180 prog->aux->extable = (void *)image_ptr + prog_size; in bpf_int_jit_compile()
1203 bpf_jit_dump(prog->len, prog_size, 2, ctx.image); in bpf_int_jit_compile()
1225 prog->jited_len = prog_size; in bpf_int_jit_compile()
/linux-6.6.21/include/sound/
Dtas2781-dsp.h90 unsigned int prog_size; member
/linux-6.6.21/arch/arm64/net/
Dbpf_jit_comp.c1520 int image_size, prog_size, extable_size, extable_align, extable_offset; in bpf_int_jit_compile() local
1558 prog_size = sizeof(u32) * ctx.idx; in bpf_int_jit_compile()
1597 prog_size = sizeof(u32) * ctx.idx; in bpf_int_jit_compile()
1599 extable_offset = round_up(prog_size + PLT_TARGET_SIZE, extable_align); in bpf_int_jit_compile()
1637 bpf_jit_dump(prog->len, prog_size, 2, ctx.image); in bpf_int_jit_compile()
1659 prog->jited_len = prog_size; in bpf_int_jit_compile()
/linux-6.6.21/sound/soc/codecs/
Dtas2781-fmwlib.c524 program->prog_size = be32_to_cpup((__be32 *)&buf[offset]); in fw_parse_variable_header_kernel()