Home
last modified time | relevance | path

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

12345678910>>...17

/third_party/mesa3d/src/gallium/frontends/omx/bellagio/
Dvid_enc.c78 OMX_ERRORTYPE vid_enc_LoaderComponent(stLoaderComponentType *comp) in vid_enc_LoaderComponent()
126 static OMX_ERRORTYPE vid_enc_Constructor(OMX_COMPONENTTYPE *comp, OMX_STRING name) in vid_enc_Constructor()
247 static OMX_ERRORTYPE vid_enc_Destructor(OMX_COMPONENTTYPE *comp) in vid_enc_Destructor()
291 OMX_COMPONENTTYPE* comp = port->standCompContainer; in enc_AllocateBackTexture() local
324 OMX_COMPONENTTYPE *comp = handle; in vid_enc_SetParameter() local
421 OMX_COMPONENTTYPE *comp = handle; in vid_enc_GetParameter() local
509 OMX_COMPONENTTYPE *comp = handle; in vid_enc_SetConfig() local
572 OMX_COMPONENTTYPE *comp = handle; in vid_enc_GetConfig() local
599 static OMX_ERRORTYPE vid_enc_MessageHandler(OMX_COMPONENTTYPE* comp, internalRequestMessageType *ms… in vid_enc_MessageHandler()
697 OMX_COMPONENTTYPE* comp = port->standCompContainer; in vid_enc_FreeInBuffer() local
[all …]
Dvid_dec.c70 OMX_ERRORTYPE vid_dec_LoaderComponent(stLoaderComponentType *comp) in vid_dec_LoaderComponent()
156 static OMX_ERRORTYPE vid_dec_Constructor(OMX_COMPONENTTYPE *comp, OMX_STRING name) in vid_dec_Constructor()
265 static OMX_ERRORTYPE vid_dec_Destructor(OMX_COMPONENTTYPE *comp) in vid_dec_Destructor()
296 OMX_COMPONENTTYPE *comp = handle; in vid_dec_SetParameter() local
374 OMX_COMPONENTTYPE *comp = handle; in vid_dec_GetParameter() local
432 static OMX_ERRORTYPE vid_dec_MessageHandler(OMX_COMPONENTTYPE* comp, internalRequestMessageType *ms… in vid_dec_MessageHandler()
465 OMX_COMPONENTTYPE* comp = port->standCompContainer; in vid_dec_DecodeBuffer() local
539 OMX_COMPONENTTYPE* comp = port->standCompContainer; in vid_dec_FreeDecBuffer() local
550 static void vid_dec_FrameDecoded(OMX_COMPONENTTYPE *comp, OMX_BUFFERHEADERTYPE* input, in vid_dec_FrameDecoded()
/third_party/node/deps/npm/node_modules/semver/classes/
Drange.js263 const replaceTildes = (comp, options) => { argument
271 const replaceTilde = (comp, options) => { argument
307 const replaceCarets = (comp, options) => { argument
315 const replaceCaret = (comp, options) => { argument
368 const replaceXRanges = (comp, options) => { argument
376 const replaceXRange = (comp, options) => { argument
453 const replaceStars = (comp, options) => { argument
461 const replaceGTE0 = (comp, options) => { argument
Dcomparator.js8 constructor (comp, options) { argument
34 parse (comp) { argument
77 intersects (comp, options) { argument
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
Dnir.c95 static void ppir_node_add_src(ppir_compiler *comp, ppir_node *node, in ppir_node_add_src()
210 static bool ppir_emit_discard_block(ppir_compiler *comp) in ppir_emit_discard_block()
233 ppir_compiler *comp = block->comp; in ppir_emit_discard_if() local
581 static ppir_block *ppir_get_block(ppir_compiler *comp, nir_block *nblock) in ppir_get_block()
591 ppir_compiler *comp = block->comp; in ppir_emit_jump() local
635 static ppir_block *ppir_block_create(ppir_compiler *comp) in ppir_block_create()
649 static bool ppir_emit_block(ppir_compiler *comp, nir_block *nblock) in ppir_emit_block()
668 static bool ppir_emit_if(ppir_compiler *comp, nir_if *if_stmt) in ppir_emit_if()
734 static bool ppir_emit_loop(ppir_compiler *comp, nir_loop *nloop) in ppir_emit_loop()
765 static bool ppir_emit_function(ppir_compiler *comp, nir_function_impl *nfunc) in ppir_emit_function()
[all …]
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()
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 …]
Dnode_to_instr.c324 static bool ppir_create_instr_from_node(ppir_compiler *comp) in ppir_create_instr_from_node()
338 static void ppir_build_instr_dependency(ppir_compiler *comp) in ppir_build_instr_dependency()
356 bool ppir_node_to_instr(ppir_compiler *comp) in ppir_node_to_instr()
/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()
Dnir.c33 gpir_reg *gpir_create_reg(gpir_compiler *comp) in gpir_create_reg()
41 static gpir_reg *reg_for_nir_reg(gpir_compiler *comp, nir_register *nir_reg) in reg_for_nir_reg()
340 static bool gpir_emit_function(gpir_compiler *comp, nir_function_impl *impl) in gpir_emit_function()
403 gpir_compiler *comp = rzalloc(prog, gpir_compiler); in gpir_compiler_create() local
426 static void gpir_print_shader_db(struct nir_shader *nir, gpir_compiler *comp, in gpir_print_shader_db()
451 gpir_compiler *comp = gpir_compiler_create(prog, func->reg_alloc, func->ssa_alloc); in gpir_compile_nir() local
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()
/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/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/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/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()
514 const struct xa_composite *comp) in xa_composite_prepare()
554 const struct xa_composite *comp = ctx->comp; in xa_composite_rect() local
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_ra.cpp113 int comp = start_comp; in group_allocation() local
185 for (int comp = 0; comp < 4; ++comp) { in scalar_allocation() local
233 auto& comp = lrm.component(i); in register_allocation() local
282 auto& comp = lrm.component(i); in register_allocation() 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/node/deps/npm/node_modules/semver/ranges/
Dsubset.js228 const comp = compare(a.semver, b.semver, options) constant
240 const comp = compare(a.semver, b.semver, options) constant
/third_party/ffmpeg/libavfilter/
Dboxblur.c88 #define EVAL_RADIUS_EXPR(comp) \ in ff_boxblur_eval_filter_params() argument
114 #define CHECK_RADIUS_VAL(w_, h_, comp) \ in ff_boxblur_eval_filter_params() argument
/third_party/python/Lib/test/
Dtest_compare.py251 def assert_total_order(self, a, b, comp, a_meth=None, b_meth=None): argument
279 def assert_eq_subtest(self, a, b, comp, a_meth, b_meth): argument
287 def assert_ne_subtest(self, a, b, comp, a_meth, b_meth): argument
295 def assert_lt_subtest(self, a, b, comp, a_meth, b_meth): argument
305 def assert_le_subtest(self, a, b, comp, a_meth, b_meth): argument
315 def assert_gt_subtest(self, a, b, comp, a_meth, b_meth): argument
325 def assert_ge_subtest(self, a, b, comp, a_meth, b_meth): argument
/third_party/typescript/tests/cases/conformance/es7/exponentiationOperator/
DemitCompoundExponentiationOperator1.ts3 var comp: number; variable

12345678910>>...17