Home
last modified time | relevance | path

Searched defs:comp (Results 1 – 25 of 481) sorted by relevance

12345678910>>...20

/third_party/mesa3d/src/compiler/nir/tests/
Dopt_varyings_tests_prop_uniform_expr.cpp12 #define SHADER_UNI_EXPR_OUTPUT(producer_stage, consumer_stage, slot, comp, type, bitsize, index0, i… argument
55 #define TEST_UNI_EXPR_PROP(producer_stage, consumer_stage, slot, comp, type, bitsize) \ argument
81 #define TEST_UNI_EXPR_PROP_XFB(producer_stage, consumer_stage, slot, comp, type, bitsize) \ argument
119 #define TEST_UNI_EXPR_KEPT_2VAL(producer_stage, consumer_stage, slot, comp, type, bitsize, index0, … argument
143 #define TEST_UNI_EXPR_KEPT(producer_stage, consumer_stage, slot, comp, type, bitsize) \ argument
146 #define TEST_UNI_EXPR_KEPT_DIFF(producer_stage, consumer_stage, slot, comp, type, bitsize) \ argument
Dopt_varyings_tests_prop_uniform.cpp12 #define SHADER_UNIFORM_OUTPUT(producer_stage, consumer_stage, slot, comp, type, bitsize, index0, in… argument
55 #define TEST_UNIFORM_PROP(producer_stage, consumer_stage, slot, comp, type, bitsize) \ argument
81 #define TEST_UNIFORM_PROP_XFB(producer_stage, consumer_stage, slot, comp, type, bitsize) \ argument
119 #define TEST_UNIFORM_KEPT_2VAL(producer_stage, consumer_stage, slot, comp, type, bitsize, index0, i… argument
144 #define TEST_UNIFORM_KEPT(producer_stage, consumer_stage, slot, comp, type, bitsize) \ argument
147 #define TEST_UNIFORM_KEPT_DIFF(producer_stage, consumer_stage, slot, comp, type, bitsize) \ argument
Dopt_varyings_tests_prop_ubo.cpp12 #define SHADER_UBO_OUTPUT(producer_stage, consumer_stage, slot, comp, type, bitsize, index0, index1… argument
55 #define TEST_UBO_PROP(producer_stage, consumer_stage, slot, comp, type, bitsize) \ argument
81 #define TEST_UBO_PROP_XFB(producer_stage, consumer_stage, slot, comp, type, bitsize) \ argument
119 #define TEST_UBO_KEPT_2VAL(producer_stage, consumer_stage, slot, comp, type, bitsize, index0, index… argument
144 #define TEST_UBO_KEPT(producer_stage, consumer_stage, slot, comp, type, bitsize) \ argument
147 #define TEST_UBO_KEPT_DIFF(producer_stage, consumer_stage, slot, comp, type, bitsize) \ argument
Dopt_varyings_tests_prop_const.cpp12 #define SHADER_CONST_OUTPUT(producer_stage, consumer_stage, slot, comp, type, bitsize, val0, val1) \ argument
55 #define TEST_CONST_PROP(producer_stage, consumer_stage, slot, comp, type, bitsize, value) \ argument
81 #define TEST_CONST_PROP_XFB(producer_stage, consumer_stage, slot, comp, type, bitsize, value) \ argument
119 #define TEST_CONST_KEPT_2VAL(producer_stage, consumer_stage, slot, comp, type, bitsize, val0, val1,… argument
144 #define TEST_CONST_KEPT(producer_stage, consumer_stage, slot, comp, type, bitsize, value) \ argument
147 #define TEST_CONST_KEPT_DIFF(producer_stage, consumer_stage, slot, comp, type, bitsize, value) \ argument
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/
Doptimize.c66 optimize_branches(gpir_compiler *comp) in optimize_branches()
117 optimize_not(gpir_compiler *comp) in optimize_not()
163 dead_code_eliminate(gpir_compiler *comp) in dead_code_eliminate()
205 gpir_optimize(gpir_compiler *comp) in gpir_optimize()
Dlower.c30 static bool gpir_lower_const(gpir_compiler *comp) in gpir_lower_const()
85 static bool gpir_lower_load(gpir_compiler *comp) in gpir_lower_load()
257 static bool gpir_lower_node_may_consume_two_slots(gpir_compiler *comp) in gpir_lower_node_may_consume_two_slots()
447 bool gpir_pre_rsched_lower_prog(gpir_compiler *comp) in gpir_pre_rsched_lower_prog()
Dnir.c33 gpir_reg *gpir_create_reg(gpir_compiler *comp) in gpir_create_reg()
337 static bool gpir_emit_function(gpir_compiler *comp, nir_function_impl *impl) in gpir_emit_function()
400 gpir_compiler *comp = rzalloc(prog, gpir_compiler); in gpir_compiler_create() local
421 static void gpir_print_shader_db(struct nir_shader *nir, gpir_compiler *comp, in gpir_print_shader_db()
446 gpir_compiler *comp = gpir_compiler_create(prog, func->ssa_alloc); in gpir_compile_nir() local
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
Dliveness.c30 ppir_liveness_propagate(ppir_compiler *comp, in ppir_liveness_propagate()
43 ppir_liveness_set_equal(ppir_compiler *comp, in ppir_liveness_set_equal()
61 ppir_liveness_instr_srcs(ppir_compiler *comp, ppir_instr *instr) in ppir_liveness_instr_srcs()
124 ppir_liveness_instr_dest(ppir_compiler *comp, ppir_instr *instr, ppir_instr *last) in ppir_liveness_instr_dest()
190 ppir_liveness_compute_live_sets(ppir_compiler *comp) in ppir_liveness_compute_live_sets()
293 ppir_liveness_analysis(ppir_compiler *comp) in ppir_liveness_analysis()
Dnir.c94 static void ppir_node_add_src(ppir_compiler *comp, ppir_node *node, in ppir_node_add_src()
230 static bool ppir_emit_discard_block(ppir_compiler *comp) in ppir_emit_discard_block()
253 ppir_compiler *comp = block->comp; in ppir_emit_discard_if() local
617 static ppir_block *ppir_get_block(ppir_compiler *comp, nir_block *nblock) in ppir_get_block()
627 ppir_compiler *comp = block->comp; in ppir_emit_jump() local
671 static ppir_block *ppir_block_create(ppir_compiler *comp) in ppir_block_create()
685 static bool ppir_emit_block(ppir_compiler *comp, nir_block *nblock) in ppir_emit_block()
704 static bool ppir_emit_if(ppir_compiler *comp, nir_if *if_stmt) in ppir_emit_if()
770 static bool ppir_emit_loop(ppir_compiler *comp, nir_loop *nloop) in ppir_emit_loop()
802 static bool ppir_emit_function(ppir_compiler *comp, nir_function_impl *nfunc) in ppir_emit_function()
[all …]
Dregalloc.c81 static void ppir_regalloc_update_reglist_ssa(ppir_compiler *comp) in ppir_regalloc_update_reglist_ssa()
104 static void ppir_regalloc_print_result(ppir_compiler *comp) in ppir_regalloc_print_result()
187 static bool ppir_update_spilled_src(ppir_compiler *comp, ppir_block *block, in ppir_update_spilled_src()
275 static bool ppir_update_spilled_dest_load(ppir_compiler *comp, ppir_block *block, in ppir_update_spilled_dest_load()
337 static bool ppir_update_spilled_dest(ppir_compiler *comp, ppir_block *block, in ppir_update_spilled_dest()
377 static bool ppir_regalloc_spill_reg(ppir_compiler *comp, ppir_reg *chosen) in ppir_regalloc_spill_reg()
412 static ppir_reg *ppir_regalloc_choose_spill_node(ppir_compiler *comp, in ppir_regalloc_choose_spill_node()
494 static void ppir_regalloc_reset_liveness_info(ppir_compiler *comp) in ppir_regalloc_reset_liveness_info()
521 static void ppir_all_interference(ppir_compiler *comp, struct ra_graph *g, in ppir_all_interference()
535 static bool ppir_regalloc_prog_try(ppir_compiler *comp, bool *spilled) in ppir_regalloc_prog_try()
[all …]
/third_party/typescript/tests/baselines/reference/
DemitCompoundExponentiationOperator1.js2 var comp: number; variable
24 var comp; variable
DemitCompoundExponentiationOperator2.js2 var comp: number; variable
28 var comp; variable
DoptionalChainingInLoop.js15 var _loop_1 = function (comp) { argument
23 var comp = list_1[_i]; variable
DnormalizedIntersectionTooComplex.js37 const comp = ctor({ common: "ok", ref: x => console.log(x) }); constant
44 var comp = ctor({ common: "ok", ref: function (x) { return console.log(x); } }); variable
DdeclarationEmitExportAssignedNamespaceNoTripleSlashTypesReference.js34 comp: getComp() property
56 comp: (0, get_comp_1.getComp)() property
/third_party/gn/src/base/containers/
Dflat_map.h245 flat_map<Key, Mapped, Compare>::flat_map(const Compare& comp) : tree(comp) {} in flat_map()
252 const Compare& comp) in flat_map()
258 const Compare& comp) in flat_map()
265 const Compare& comp) in flat_map()
/third_party/lwip/src/netif/ppp/
Dvj.c48 vj_compress_init(struct vjcompress *comp) in vj_compress_init()
160 vj_compress_tcp(struct vjcompress *comp, struct pbuf **pb) in vj_compress_tcp()
448 vj_uncompress_err(struct vjcompress *comp) in vj_uncompress_err()
459 vj_uncompress_uncomp(struct pbuf *nb, struct vjcompress *comp) in vj_uncompress_uncomp()
497 vj_uncompress_tcp(struct pbuf **nb, struct vjcompress *comp) in vj_uncompress_tcp()
/third_party/mesa3d/src/freedreno/ir3/
Dir3_ra_predicates.c72 unsigned comp) in try_avoid_comp()
82 unsigned comp) in reg_is_free()
108 unsigned comp) in assign_reg()
136 unsigned comp = reg_comp(def); in alloc_reg() local
142 unsigned comp = alloc_reg_comp(ctx, live); in alloc_reg() local
152 unsigned comp = reg_comp(reg); in free_reg() local
262 unsigned comp) in reload_into()
301 unsigned comp = alloc_reg_comp(ctx, live); in reload() local
322 unsigned comp = reg_comp(src); in ra_block() local
/third_party/rust/rust/tests/ui/span/
Dissue-23827.rs14 extern "rust-call" fn call(&self, (comp,): (C,)) -> Prototype { in call()
21 extern "rust-call" fn call_mut(&mut self, (comp,): (C,)) -> Prototype { in call_mut()
28 extern "rust-call" fn call_once(self, (comp,): (C,)) -> Prototype { in call_once()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_ra.cpp100 int comp = start_comp; in group_allocation() local
174 for (int comp = 0; comp < 4; ++comp) { in scalar_allocation() local
229 for (int comp = 0; comp < 4; ++comp) { in scalar_clause_local_allocation() local
299 auto& comp = lrm.component(i); in register_allocation() local
356 auto& comp = lrm.component(i); in register_allocation() local
/third_party/mesa3d/src/gallium/frontends/xa/
Dxa_composite.c225 xa_composite_check_accelerated(const struct xa_composite *comp) in xa_composite_check_accelerated()
254 const struct xa_composite *comp) in bind_composite_blend_state()
379 bind_shaders(struct xa_context *ctx, const struct xa_composite *comp) in bind_shaders()
447 const struct xa_composite *comp) in bind_samplers()
512 const struct xa_composite *comp) in xa_composite_prepare()
552 const struct xa_composite *comp = ctx->comp; in xa_composite_rect() local
/third_party/glslang/glslang/MachineIndependent/
DConstant.cpp1022 for (int comp = 0; comp < objectSize; comp++) { in fold() local
1218 for (int comp = 0; comp < numComps; ++comp) { in fold() local
1236 for (int comp = 0; comp < numComps; ++comp) { in fold() local
1247 for (int comp = 0; comp < numComps; ++comp) in fold() local
1262 for (int comp = 0; comp < numComps; ++comp) in fold() local
1265 for (int comp = 0; comp < numComps; ++comp) in fold() local
/third_party/mesa3d/src/nouveau/nil/
Dnil_format_table_gen.py166 def type(self, comp): argument
172 def src(self, comp): argument
/third_party/typescript/tests/cases/conformance/es7/exponentiationOperator/
DemitCompoundExponentiationOperator1.ts3 var comp: number; variable
DemitCompoundExponentiationOperator2.ts3 var comp: number; variable

12345678910>>...20