/Linux-v4.19/arch/x86/include/uapi/asm/ |
D | a.out.h | 5 struct exec struct 7 unsigned int a_info; /* Use macros N_MAGIC, etc for access */ 8 unsigned a_text; /* length of text, in bytes */ 9 unsigned a_data; /* length of data, in bytes */ 10 unsigned a_bss; /* length of uninitialized data area for file, in bytes */ 11 unsigned a_syms; /* length of symbol table data in file, in bytes */ 12 unsigned a_entry; /* start address */ 13 unsigned a_trsize; /* length of relocation info for text, in bytes */ 14 unsigned a_drsize; /* length of relocation info for data, in bytes */
|
/Linux-v4.19/arch/m68k/include/uapi/asm/ |
D | a.out.h | 5 struct exec struct 7 unsigned long a_info; /* Use macros N_MAGIC, etc for access */ 8 unsigned a_text; /* length of text, in bytes */ 9 unsigned a_data; /* length of data, in bytes */ 10 unsigned a_bss; /* length of uninitialized data area for file, in bytes */ 11 unsigned a_syms; /* length of symbol table data in file, in bytes */ 12 unsigned a_entry; /* start address */ 13 unsigned a_trsize; /* length of relocation info for text, in bytes */ 14 unsigned a_drsize; /* length of relocation info for data, in bytes */
|
/Linux-v4.19/drivers/gpu/drm/vc4/ |
D | vc4_render_cl.c | 99 static uint32_t vc4_full_res_offset(struct vc4_exec_info *exec, in vc4_full_res_offset() 123 static void emit_tile(struct vc4_exec_info *exec, in emit_tile() 253 static int vc4_create_rcl_bo(struct drm_device *dev, struct vc4_exec_info *exec, in vc4_create_rcl_bo() 384 static int vc4_full_res_bounds_check(struct vc4_exec_info *exec, in vc4_full_res_bounds_check() 410 static int vc4_rcl_msaa_surface_setup(struct vc4_exec_info *exec, in vc4_rcl_msaa_surface_setup() 436 static int vc4_rcl_surface_setup(struct vc4_exec_info *exec, in vc4_rcl_surface_setup() 535 vc4_rcl_render_config_surface_setup(struct vc4_exec_info *exec, in vc4_rcl_render_config_surface_setup() 595 int vc4_get_rcl(struct drm_device *dev, struct vc4_exec_info *exec) in vc4_get_rcl()
|
D | vc4_gem.c | 147 struct vc4_exec_info *exec[2]; in vc4_save_hang_state() local 462 struct vc4_exec_info *exec; in vc4_submit_next_bin_job() local 502 struct vc4_exec_info *exec = vc4_first_render_job(vc4); in vc4_submit_next_render_job() local 519 vc4_move_job_to_render(struct drm_device *dev, struct vc4_exec_info *exec) in vc4_move_job_to_render() 530 vc4_update_bo_seqnos(struct vc4_exec_info *exec, uint64_t seqno) in vc4_update_bo_seqnos() 556 struct vc4_exec_info *exec, in vc4_unlock_bo_reservations() 579 struct vc4_exec_info *exec, in vc4_lock_bo_reservations() 658 vc4_queue_submit(struct drm_device *dev, struct vc4_exec_info *exec, in vc4_queue_submit() 723 struct vc4_exec_info *exec) in vc4_cl_lookup_bos() 815 vc4_get_bcl(struct drm_device *dev, struct vc4_exec_info *exec) in vc4_get_bcl() [all …]
|
D | vc4_irq.c | 64 struct vc4_exec_info *exec; in vc4_overflow_mem_work() local 107 struct vc4_exec_info *next, *exec = vc4_first_bin_job(vc4); in vc4_irq_finish_bin_job() local 127 struct vc4_exec_info *exec = vc4_first_bin_job(vc4); in vc4_cancel_bin_job() local 144 struct vc4_exec_info *exec = vc4_first_render_job(vc4); in vc4_irq_finish_render_job() local
|
D | vc4_validate.c | 106 vc4_use_bo(struct vc4_exec_info *exec, uint32_t hindex) in vc4_use_bo() 129 vc4_use_handle(struct vc4_exec_info *exec, uint32_t gem_handles_packet_index) in vc4_use_handle() 135 validate_bin_pos(struct vc4_exec_info *exec, void *untrusted, uint32_t pos) in validate_bin_pos() 159 vc4_check_tex_size(struct vc4_exec_info *exec, struct drm_gem_cma_object *fbo, in vc4_check_tex_size() 483 struct vc4_exec_info *exec) in vc4_validate_bin_cl() 561 reloc_tex(struct vc4_exec_info *exec, in reloc_tex() 745 struct vc4_exec_info *exec, in validate_gl_shader_rec() 927 struct vc4_exec_info *exec) in vc4_validate_shader_recs()
|
/Linux-v4.19/drivers/gpu/drm/v3d/ |
D | v3d_gem.c | 210 v3d_attach_object_fences(struct v3d_exec_info *exec) in v3d_attach_object_fences() 226 struct v3d_exec_info *exec, in v3d_unlock_bo_reservations() 249 struct v3d_exec_info *exec, in v3d_lock_bo_reservations() 336 struct v3d_exec_info *exec) in v3d_cl_lookup_bos() 399 struct v3d_exec_info *exec = container_of(ref, struct v3d_exec_info, in v3d_exec_cleanup() local 427 void v3d_exec_put(struct v3d_exec_info *exec) in v3d_exec_put() 501 struct v3d_exec_info *exec; in v3d_submit_cl_ioctl() local
|
D | v3d_sched.c | 50 struct v3d_exec_info *exec = job->exec; in v3d_job_dependency() local 82 struct v3d_exec_info *exec = job->exec; in v3d_job_run() local 154 struct v3d_exec_info *exec = job->exec; in v3d_job_timedout() local
|
/Linux-v4.19/include/uapi/linux/ |
D | a.out.h | 44 #define N_MAGIC(exec) ((exec).a_info & 0xffff) argument 46 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff)) argument 47 #define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff) argument 48 #define N_SET_INFO(exec, magic, type, flags) \ argument 52 #define N_SET_MAGIC(exec, magic) \ argument 55 #define N_SET_MACHTYPE(exec, machtype) \ argument 59 #define N_SET_FLAGS(exec, flags) \ argument
|
/Linux-v4.19/arch/sparc/mm/ |
D | tlb.c | 71 bool exec, unsigned int hugepage_shift) in tlb_batch_add_one() 156 bool exec = pte_exec(*pte); in tlb_batch_pmd_scan() local 208 bool exec = pte_exec(orig_pte); in __set_pmd_acct() local
|
/Linux-v4.19/arch/alpha/include/uapi/asm/ |
D | a.out.h | 54 struct exec struct 62 * Define's so that the kernel exec code can access the a.out header argument
|
/Linux-v4.19/tools/perf/util/ |
D | comm.c | 107 struct comm *comm__new(const char *str, u64 timestamp, bool exec) in comm__new() 126 int comm__override(struct comm *comm, const char *str, u64 timestamp, bool exec) in comm__override()
|
D | comm.h | 15 bool exec; member
|
D | thread.c | 196 u64 timestamp, bool exec) in ____thread__set_comm() 221 bool exec) in __thread__set_comm()
|
/Linux-v4.19/arch/mips/mm/ |
D | cache.c | 137 int exec = !pte_no_exec(pte) && !cpu_has_ic_fills_f_dc; in __update_cache() local
|
D | c-r3k.c | 241 int exec = vma->vm_flags & VM_EXEC; in r3k_flush_cache_page() local
|
D | c-r4k.c | 554 int exec = vma->vm_flags & VM_EXEC; in local_r4k_flush_cache_range() local 574 int exec = vma->vm_flags & VM_EXEC; in r4k_flush_cache_range() local 624 int exec = vma->vm_flags & VM_EXEC; in local_r4k_flush_cache_page() local
|
/Linux-v4.19/arch/x86/mm/ |
D | pageattr-test.c | 45 long lpg, gpg, spg, exec; member
|
/Linux-v4.19/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
D | timer.h | 8 struct list_head exec; member
|
/Linux-v4.19/arch/sparc/include/uapi/asm/ |
D | oradax.h | 53 struct ccb_exec_result exec; member
|
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/subdev/bus/ |
D | hwsq.c | 61 nvkm_hwsq_fini(struct nvkm_hwsq **phwsq, bool exec) in nvkm_hwsq_fini()
|
D | hwsq.h | 75 hwsq_exec(struct hwsq *ram, bool exec) in hwsq_exec()
|
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/ |
D | gm200.c | 116 u32 exec, args; in gm200_devinit_post() local
|
/Linux-v4.19/arch/um/include/asm/ |
D | processor-generic.h | 35 } fork, exec; member
|
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/subdev/mxm/ |
D | base.c | 200 bool (*exec)(struct nvkm_mxm *, u8 version); member
|