/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_large_constants.c | 178 unsigned num_locals = nir_function_impl_index_vars(impl); in nir_opt_large_constants() local 180 if (num_locals == 0) { in nir_opt_large_constants() 185 struct var_info *var_infos = ralloc_array(NULL, struct var_info, num_locals); in nir_opt_large_constants() 296 qsort(var_infos, num_locals, sizeof(struct var_info), var_info_cmp); in nir_opt_large_constants() 297 for (int i = 0; i < num_locals; i++) { in nir_opt_large_constants() 333 for (int i = 0; i < num_locals; i++) { in nir_opt_large_constants() 397 for (int i = 0; i < num_locals; i++) { in nir_opt_large_constants()
|
H A D | nir_lower_const_arrays_to_uniforms.c | 238 unsigned num_locals = nir_function_impl_index_vars(impl); in nir_lower_const_arrays_to_uniforms() local 239 if (num_locals == 0) { in nir_lower_const_arrays_to_uniforms() 249 struct var_info *var_infos = ralloc_array(NULL, struct var_info, num_locals); in nir_lower_const_arrays_to_uniforms() 353 for (int i = 0; i < num_locals; i++) { in nir_lower_const_arrays_to_uniforms()
|
/third_party/skia/third_party/externals/spirv-tools/test/val/ |
H A D | val_limits_test.cpp | 482 int num_locals = 5000; in TEST_F() local 493 for (int i = 0; i < num_locals; ++i) { in TEST_F() 505 options_, spv_validator_limit_max_local_variables, num_locals); in TEST_F() 512 int num_locals = 5001; in TEST_F() local 523 for (int i = 0; i < num_locals; ++i) { in TEST_F() 543 int num_locals = 100; in TEST_F() local 554 for (int i = 0; i < num_locals; ++i) { in TEST_F() 571 int num_locals = 101; in TEST_F() local 582 for (int i = 0; i < num_locals; ++i) { in TEST_F()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/ |
H A D | val_limits_test.cpp | 482 int num_locals = 5000; in TEST_F() local 493 for (int i = 0; i < num_locals; ++i) { in TEST_F() 505 options_, spv_validator_limit_max_local_variables, num_locals); in TEST_F() 512 int num_locals = 5001; in TEST_F() local 523 for (int i = 0; i < num_locals; ++i) { in TEST_F() 543 int num_locals = 100; in TEST_F() local 554 for (int i = 0; i < num_locals; ++i) { in TEST_F() 571 int num_locals = 101; in TEST_F() local 582 for (int i = 0; i < num_locals; ++i) { in TEST_F()
|
/third_party/spirv-tools/test/val/ |
H A D | val_limits_test.cpp | 481 int num_locals = 5000; in TEST_F() local 492 for (int i = 0; i < num_locals; ++i) { in TEST_F() 504 options_, spv_validator_limit_max_local_variables, num_locals); in TEST_F() 511 int num_locals = 5001; in TEST_F() local 522 for (int i = 0; i < num_locals; ++i) { in TEST_F() 542 int num_locals = 100; in TEST_F() local 553 for (int i = 0; i < num_locals; ++i) { in TEST_F() 570 int num_locals = 101; in TEST_F() local 581 for (int i = 0; i < num_locals; ++i) { in TEST_F()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-debug.h | 118 explicit DebugSideTable(int num_locals, std::vector<Entry> entries) in DebugSideTable() argument 119 : num_locals_(num_locals), entries_(std::move(entries)) { in DebugSideTable() 151 int num_locals() const { return num_locals_; } in num_locals() function in v8::internal::wasm::DebugSideTable
|
H A D | graph-builder-interface.cc | 139 uint32_t num_locals = decoder->num_locals(); in StartFunction() local 141 decoder->zone(), SsaEnv::kReached, effect(), control(), num_locals); in StartFunction() 150 while (index < num_locals) { in StartFunction() 163 while (index < num_locals && decoder->local_type(index) == type) { in StartFunction() 236 decoder, decoder->pc(), decoder->num_locals(), decoder->zone()); in Loop() 238 int instance_cache_index = decoder->num_locals(); in Loop() 248 for (int i = decoder->num_locals() - 1; i >= 0; i--) { in Loop() 1527 DCHECK_EQ(ssa_env_->locals.size(), decoder->num_locals()); in Goto() 1553 DCHECK_EQ(ssa_env_->locals.size(), decoder->num_locals()); in Goto() [all...] |
H A D | wasm-debug.cc | 126 return scope.debug_side_table->num_locals(); in GetNumLocals() 139 int num_locals = scope.debug_side_table->num_locals(); in GetStackDepth() local 141 return stack_height - num_locals; in GetStackDepth() 147 int num_locals = scope.debug_side_table->num_locals(); in GetStackValue() local 149 if (num_locals + index >= value_count) return {}; in GetStackValue() 151 num_locals + index, fp, debug_break_fp, isolate); in GetStackValue()
|
H A D | function-body-decoder.cc | 319 BitVector* AnalyzeLoopAssignmentForTesting(Zone* zone, uint32_t num_locals, 325 &decoder, start, num_locals, zone);
|
H A D | function-body-decoder.h | 78 Zone* zone, uint32_t num_locals, const byte* start, const byte* end);
|
H A D | function-body-decoder-impl.h | 1092 uint32_t num_locals() const { in num_locals() function in v8::internal::wasm::WasmDecoder 1527 if (!VALIDATE(imm.index < num_locals())) { in ValidateLocal() 2235 DCHECK_EQ(this->num_locals(), 0); in Decode() 2239 uint32_t params_count = static_cast<uint32_t>(this->num_locals()); in Decode() 2245 for (uint32_t index = params_count; index < this->num_locals(); index++) { in Decode()
|
/third_party/node/deps/v8/src/wasm/baseline/ |
H A D | liftoff-assembler.cc | 448 uint32_t num_locals, in InitMerge() 452 // <-- num_locals --> <-- stack_depth -->^stack_base <-- arity --> in InitMerge() 462 uint32_t stack_base = stack_depth + num_locals; in InitMerge() 477 for (auto& src : base::VectorOf(source_begin, num_locals)) { in InitMerge() 512 InitMergeRegion(this, source_begin, target_begin, num_locals, kKeepStackSlots, in InitMerge() 522 InitMergeRegion(this, source_begin + num_locals, target_begin + num_locals, in InitMerge() 721 base::VectorOf(stack_base, num_locals())}) { in MaterializeMergedConstants() 1357 void LiftoffAssembler::set_num_locals(uint32_t num_locals) { in set_num_locals() argument 1359 num_locals_ = num_locals; in set_num_locals() 447 InitMerge(const CacheState& source, uint32_t num_locals, uint32_t arity, uint32_t stack_depth) InitMerge() argument [all...] |
H A D | liftoff-compiler.cc | 233 void SetNumLocals(int num_locals) { in SetNumLocals() argument 235 DCHECK_LE(0, num_locals); in SetNumLocals() 236 num_locals_ = num_locals; in SetNumLocals() 630 int num_locals = decoder->num_locals(); in StartFunction() local 631 __ set_num_locals(num_locals); in StartFunction() 632 for (int i = 0; i < num_locals; ++i) { in StartFunction() 766 int actual_locals = __ num_locals() - num_params; in SpillLocalsInitially() 775 for (uint32_t param_idx = num_params; param_idx < __ num_locals(); in SpillLocalsInitially() 800 for (uint32_t i = 0; i < __ num_locals(); in StartFunctionBody() [all...] |
H A D | liftoff-assembler.h | 432 void InitMerge(const CacheState& source, uint32_t num_locals, 1508 uint32_t num_locals() const { return num_locals_; } in num_locals() function 1509 void set_num_locals(uint32_t num_locals);
|
/third_party/skia/third_party/externals/freetype/include/freetype/internal/ |
H A D | psaux.h | 652 FT_UInt num_locals; member 1189 FT_UInt num_locals; member
|
/third_party/skia/third_party/externals/freetype/src/psaux/ |
H A D | cffdecode.c | 2160 if ( idx >= decoder->num_locals ) in FT_LOCAL_DEF() 2407 decoder->num_locals = sub->local_subrs_index.count; in FT_LOCAL_DEF() 2411 decoder->num_locals ); in FT_LOCAL_DEF()
|
H A D | psobjs.c | 2445 ps_decoder->num_locals = (FT_UInt)t1_decoder->num_subrs; in ps_decoder_init() 2471 ps_decoder->num_locals = cff_decoder->num_locals; in ps_decoder_init()
|
H A D | psft.c | 810 if ( idx >= decoder->num_locals ) in FT_LOCAL_DEF()
|