Lines Matching refs:image
278 do { void *_here = image + addrs[i] - 8; \
370 void *image; in bpf_jit_compile() local
387 image = NULL; in bpf_jit_compile()
762 if (image) { in bpf_jit_compile()
766 module_memfree(image); in bpf_jit_compile()
769 memcpy(image + proglen, temp, ilen); in bpf_jit_compile()
782 if (image) { in bpf_jit_compile()
789 image = module_alloc(proglen); in bpf_jit_compile()
790 if (!image) in bpf_jit_compile()
797 bpf_jit_dump(flen, proglen, pass + 1, image); in bpf_jit_compile()
799 if (image) { in bpf_jit_compile()
800 bpf_flush_icache(image, image + proglen); in bpf_jit_compile()
801 fp->bpf_func = (void *)image; in bpf_jit_compile()