/external/libxkbcommon/src/ |
D | util-list.h | 54 #define list_first_entry(head, pos, member) \ macro 61 for (pos = 0, pos = list_first_entry(head, pos, member); \ 63 pos = list_first_entry(&pos->member, pos, member)) 67 pos = list_first_entry(head, pos, member), \ 68 tmp = list_first_entry(&pos->member, tmp, member); \ 71 tmp = list_first_entry(&pos->member, tmp, member))
|
D | registry.c | 199 o = list_first_entry(&parent->parent_field_, o, base.link); \ 208 next = list_first_entry(&o->base.link, o, base.link); \ 261 code = list_first_entry(&layout->iso639s, code, base.link); in rxkb_layout_get_iso639_first() 277 next = list_first_entry(&code->base.link, code, base.link); in rxkb_iso639_code_next() 298 code = list_first_entry(&layout->iso3166s, code, base.link); in rxkb_layout_get_iso3166_first() 314 next = list_first_entry(&code->base.link, code, base.link); in rxkb_iso3166_code_next()
|
/external/erofs-utils/include/erofs/ |
D | list.h | 72 #define list_first_entry(ptr, type, member) \ macro 92 for (pos = list_first_entry(head, typeof(*pos), member); \ 105 for (pos = list_first_entry(head, typeof(*pos), member), \
|
/external/iproute2/include/ |
D | list.h | 55 #define list_first_entry(ptr, type, member) \ macro 68 for (pos = list_first_entry(head, typeof(*pos), member); \ 73 for (pos = list_first_entry(head, typeof(*pos), member), \
|
/external/mesa3d/src/freedreno/ir3/tests/ |
D | delay.c | 122 list_first_entry(&ir->block_list, struct ir3_block, node); in regs_to_ssa() 192 list_first_entry(&ir->block_list, struct ir3_block, node); in main()
|
/external/mesa3d/src/freedreno/ir3/ |
D | ir3_legalize.c | 290 assert(block == list_first_entry(&block->shader->block_list, in legalize_block() 445 struct ir3_instruction *instr = list_first_entry( in resolve_dest_block() 507 target = list_first_entry(&tblock->instr_list, in resolve_jump() 555 struct ir3_instruction *target = list_first_entry(&block->instr_list, in mark_jp()
|
/external/mesa3d/src/panfrost/util/ |
D | nir_mod_helpers.c | 99 nir_src *use = list_first_entry(&dest->ssa.uses, nir_src, use_link); in pan_has_dest_mod()
|
/external/f2fs-tools/fsck/ |
D | f2fs.h | 80 #define list_first_entry(ptr, type, member) \ macro 87 for (pos = list_first_entry(head, typeof(*pos), member); \ 92 for (pos = list_first_entry(head, typeof(*pos), member), \
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_cs_tpool.c | 53 task = list_first_entry(&pool->workqueue, struct lp_cs_tpool_task, in lp_cs_tpool_worker()
|
/external/mesa3d/src/panfrost/bifrost/ |
D | compiler.h | 636 return list_first_entry(&(ins->link), bi_instruction, link); in bi_next_op() 642 return list_first_entry(&(block->link), pan_block, link); in pan_next_block()
|
/external/libusb/include/libusb/ |
D | libusbi.h | 133 #define list_first_entry(ptr, type, member) \ macro 146 for (pos = list_first_entry(head, type, member); \ 151 for (pos = list_first_entry(head, type, member), \
|
/external/libusb/libusb/ |
D | libusbi.h | 133 #define list_first_entry(ptr, type, member) \ macro 146 for (pos = list_first_entry(head, type, member); \ 151 for (pos = list_first_entry(head, type, member), \
|
/external/mesa3d/src/gallium/drivers/lima/ir/pp/ |
D | scheduler.c | 124 ppir_instr *instr = list_first_entry(ready_list, ppir_instr, list); in ppir_schedule_ready_list()
|
D | ppir.h | 439 return list_first_entry(&node->succ_list, ppir_dep, succ_link)->succ; in ppir_node_first_succ() 449 return list_first_entry(&node->pred_list, ppir_dep, pred_link)->pred; in ppir_node_first_pred()
|
D | liveness.c | 233 ppir_instr *first = list_first_entry(&block->instr_list, ppir_instr, list); in ppir_liveness_compute_live_sets()
|
/external/mesa3d/src/gallium/drivers/lima/ir/gp/ |
D | optimize.c | 73 gpir_node *node = list_first_entry(&block->node_list, gpir_node, list); in optimize_branches()
|
D | reduce_scheduler.c | 136 gpir_node *node = list_first_entry(ready_list, gpir_node, list); in schedule_ready_list()
|
/external/mesa3d/src/broadcom/vulkan/ |
D | v3dv_bo.c | 56 struct v3dv_bo *first = list_first_entry(&cache->time_list, in bo_dump_stats() 107 bo = list_first_entry(&cache->size_list[page_index], in bo_from_cache()
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_log.c | 175 struct fd_log_chunk *chunk = list_first_entry(&ctx->log_chunks, in fd_log_process()
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | gfx10_query.c | 127 qbuf = list_first_entry(&sctx->shader_query_buffers, struct gfx10_sh_query_buffer, list); in gfx10_alloc_query_buffer() 501 list_first_entry(&sctx->shader_query_buffers, struct gfx10_sh_query_buffer, list); in gfx10_destroy_query()
|
/external/mesa3d/src/gallium/drivers/v3d/ |
D | v3d_bufmgr.c | 61 struct v3d_bo *first = list_first_entry(&cache->time_list, in v3d_bo_dump_stats() 99 bo = list_first_entry(&cache->size_list[page_index], in v3d_bo_from_cache()
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_qir.c | 667 return list_first_entry(&c->blocks, struct qblock, link); in qir_entry_block() 743 list_first_entry(&block->instructions, in qir_compile_destroy()
|
/external/mesa3d/src/compiler/nir/ |
D | nir_opt_loop_unroll.c | 688 list_first_entry(&loop->info->loop_terminator_list, in partial_unroll() 919 list_first_entry(&loop->info->loop_terminator_list, in process_loops()
|
D | nir_opt_combine_stores.c | 90 result = list_first_entry(&state->freelist, in alloc_combined_store()
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_batch_chain.c | 1030 list_first_entry(&secondary->batch_bos, struct anv_batch_bo, link); in anv_cmd_buffer_add_secondary() 1059 list_first_entry(©_list, struct anv_batch_bo, link); in anv_cmd_buffer_add_secondary() 1073 list_first_entry(&secondary->batch_bos, struct anv_batch_bo, link); in anv_cmd_buffer_add_secondary() 1547 list_first_entry(&cmd_buffer->batch_bos, struct anv_batch_bo, link); in setup_execbuf_for_cmd_buffer()
|