Home
last modified time | relevance | path

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

/linux/arch/parisc/net/
H A 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/arch/riscv/net/
H A 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()
122 prog_size = sizeof(*ctx->insns) * ctx->ninsns; in bpf_int_jit_compile()
125 bpf_jit_binary_pack_alloc(prog_size + extable_size, in bpf_int_jit_compile()
158 prog->aux->extable = (void *)ctx->ro_insns + prog_size; in bpf_int_jit_compile()
173 bpf_jit_dump(prog->len, prog_size, pass, ctx->insns); in bpf_int_jit_compile()
177 prog->jited_len = prog_size - cfi_get_offset(); in bpf_int_jit_compile()
/linux/include/sound/
H A Dtas2781-dsp.h100 unsigned int prog_size; member
/linux/arch/loongarch/net/
H A Dbpf_jit.c1927 int image_size, prog_size, extable_size; in bpf_int_jit_compile() local
1971 prog_size = sizeof(u32) * ctx.idx; in bpf_int_jit_compile()
2002 prog_size = sizeof(u32) * ctx.idx; in bpf_int_jit_compile()
2003 image_size = prog_size + extable_size; in bpf_int_jit_compile()
2023 prog->aux->extable = (void *)ro_image_ptr + prog_size; in bpf_int_jit_compile()
2044 bpf_jit_dump(prog->len, prog_size, 2, ctx.image); in bpf_int_jit_compile()
2070 prog->jited_len = prog_size; in bpf_int_jit_compile()
/linux/arch/arm64/net/
H A Dbpf_jit_comp.c2011 int image_size, prog_size, extable_size, extable_align, extable_offset; in bpf_int_jit_compile() local
2075 prog_size = sizeof(u32) * ctx.idx; in bpf_int_jit_compile()
2117 prog_size = sizeof(u32) * ctx.idx; in bpf_int_jit_compile()
2119 extable_offset = round_up(prog_size + PLT_TARGET_SIZE, extable_align); in bpf_int_jit_compile()
2182 prog_size = sizeof(u32) * ctx.idx; in bpf_int_jit_compile()
2186 bpf_jit_dump(prog->len, prog_size, 2, ctx.image); in bpf_int_jit_compile()
2222 prog->jited_len = prog_size - cfi_get_offset(); in bpf_int_jit_compile()
/linux/sound/soc/codecs/
H A Dtas2781-fmwlib.c826 program->prog_size = get_unaligned_be32(&buf[offset]); in fw_parse_variable_header_kernel()