Home
last modified time | relevance | path

Searched refs:has_index (Results 1 – 16 of 16) sorted by relevance

/third_party/node/deps/v8/src/wasm/
Dwasm-subtyping.cc233 if (!type1.has_index()) return type1 == type2; in EquivalentTypes()
236 DCHECK(type1.has_index() && type2.has_index() && in EquivalentTypes()
239 DCHECK(type1.has_index() && module1->has_type(type1.ref_index()) && in EquivalentTypes()
240 type2.has_index() && module2->has_type(type2.ref_index())); in EquivalentTypes()
Dwasm-opcodes.cc42 (type.has_index() && !module->has_signature(type.ref_index()))) { in IsJSCompatibleSignature()
Dvalue-type.h350 constexpr bool has_index() const { in has_index() function
383 DCHECK(has_index()); in ref_index()
545 return has_index() && CanonicalRelativeField::decode(bit_field_); in is_canonical_relative()
Dcanonical-types.cc63 if (!type.has_index()) return type; in CanonicalizeValueType()
Dc-api.cc2008 if ((table->type() == i::wasm::kWasmFuncRef || table->type().has_index()) && in set()
2027 if ((table->type() == i::wasm::kWasmFuncRef || table->type().has_index()) && in grow()
Dfunction-body-decoder-impl.h3378 if (!VALIDATE(func_type.is_object_reference() && func_type.has_index() &&
3404 if (!VALIDATE(func_type.is_object_reference() && func_type.has_index() &&
4038 return obj.type.has_index() &&
Dwasm-js.cc2013 receiver->type() == i::wasm::kWasmFuncRef || receiver->type().has_index(); in WebAssemblyTableGrow()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_interfaces.cpp237 bool has_index = false; in GetLocationsForVariable() local
262 if (has_index && dec.params()[0] != index) { in GetLocationsForVariable()
266 has_index = true; in GetLocationsForVariable()
370 if (has_index && index == 1) locs = output_index1_locations; in GetLocationsForVariable()
/third_party/skia/third_party/externals/spirv-tools/source/val/
Dvalidate_interfaces.cpp237 bool has_index = false; in GetLocationsForVariable() local
262 if (has_index && dec.params()[0] != index) { in GetLocationsForVariable()
266 has_index = true; in GetLocationsForVariable()
370 if (has_index && index == 1) locs = output_index1_locations; in GetLocationsForVariable()
/third_party/spirv-tools/source/val/
Dvalidate_interfaces.cpp237 bool has_index = false; in GetLocationsForVariable() local
262 if (has_index && dec.params()[0] != index) { in GetLocationsForVariable()
266 has_index = true; in GetLocationsForVariable()
383 if (has_index && index == 1) locs = output_index1_locations; in GetLocationsForVariable()
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
Dobjectivec_field.cc228 void FieldGenerator::SetRuntimeHasBit(int has_index) { in SetRuntimeHasBit() argument
229 variables_["has_index"] = StrCat(has_index); in SetRuntimeHasBit()
Dobjectivec_field.h78 void SetRuntimeHasBit(int has_index);
/third_party/mesa3d/src/broadcom/compiler/
Dnir_to_vir.c413 bool has_index, in emit_tmu_general_atomic_writes() argument
418 struct qreg data = ntq_get_src(c, instr->src[1 + has_index], 0); in emit_tmu_general_atomic_writes()
425 data = ntq_get_src(c, instr->src[2 + has_index], 0); in emit_tmu_general_atomic_writes()
537 bool has_index = !is_shared_or_scratch && !is_global; in ntq_emit_tmu_general() local
548 offset_src = 0 + has_index; in ntq_emit_tmu_general()
550 offset_src = 1 + has_index; in ntq_emit_tmu_general()
552 offset_src = 0 + has_index; in ntq_emit_tmu_general()
630 tmu_op, has_index, in ntq_emit_tmu_general()
/third_party/node/deps/v8/src/torque/
Dimplementation-visitor.cc1402 bool has_index = field.index.has_value(); in VisitInitializerResults() local
1404 if (!has_index) { in VisitInitializerResults()
1411 } else if (has_index) { in VisitInitializerResults()
/third_party/elfutils/libelf/
DChangeLog1335 * libelfP.h (struct Elf): Remove unused ar.has_index field.
/third_party/node/deps/v8/src/compiler/
Dwasm-compiler.cc6468 DCHECK(type.has_index()); in ToJS()