/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_clone.c | 215 nreg->index = reg->index; in clone_register() 327 nderef->strct.index = deref->strct.index; in clone_deref_instr() 333 &nderef->arr.index, &deref->arr.index); in clone_deref_instr()
|
H A D | nir_instr_set.c | 165 hash = HASH(hash, instr->strct.index); in hash_deref() 170 hash = hash_src(hash, &instr->arr.index); in hash_deref() 619 if (deref1->strct.index != deref2->strct.index) in nir_instrs_equal() 625 if (!nir_srcs_equal(deref1->arr.index, deref2->arr.index)) in nir_instrs_equal()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | ir_constant_expression.cpp | 499 const int index = index_c->type->base_type == GLSL_TYPE_INT ? in constant_referenced() local 515 store = substore->get_array_element(index); in constant_referenced() 519 offset = index * vt->vector_elements; in constant_referenced() 522 offset = suboffset + index; in constant_referenced() 1007 const unsigned index = idx->value.u[0]; in constant_expression_value() local 1008 return array->get_array_element(index)->clone(mem_ctx, NULL); in constant_expression_value()
|
/third_party/node/lib/internal/modules/esm/ |
H A D | resolve.js | 137 }.\nDefault "index" lookups for the main are deprecated for ES modules.`, 168 * 3. TRY(M/index.js, M/index.json, M/index.node) 169 * 4. TRY(pkg_url/index.js, pkg_url/index.json, pkg_url/index.node) 188 } else if (fileExists(guess = new URL(`./${packageConfig.main}/index.js`, packageJSONUrl))) { 190 } else if (fileExists(guess = new URL(`./${packageConfig.main}/index.json`, packageJSONUrl))) { 192 } else if (fileExists(guess = new URL(`./${packageConfig.main}/index [all...] |
/third_party/node/deps/v8/tools/v8windbg/src/ |
H A D | object-inspection.cc | 337 // Creates an IModelObject representing the data in an array at the given index. 342 size_t index, IModelObject** object) { in GetModelForCustomArrayElement() 353 if (index >= prop->length) { in GetModelForCustomArrayElement() 360 ULONG64 address = prop->addr_value + index * prop->item_size; in GetModelForCustomArrayElement() 401 ULONG64 index; variable 402 RETURN_IF_FAIL(UnboxULong64(indexers[0], &index, /*convert=*/true)); 404 return GetModelForCustomArrayElement(context_object, index, object); 448 // increment the index. 341 GetModelForCustomArrayElement(IModelObject* context_object, size_t index, IModelObject** object) GetModelForCustomArrayElement() argument
|
/third_party/node/src/ |
H A D | node_options.cc | 1313 for (std::string::size_type index = 0; index < node_options.size(); ++index) { in ParseNodeOptionsEnvVar() 1314 char c = node_options.at(index); in ParseNodeOptionsEnvVar() 1318 if (index + 1 == node_options.size()) { in ParseNodeOptionsEnvVar() 1323 c = node_options.at(++index); in ParseNodeOptionsEnvVar()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_perfcounter.c | 629 int si_get_perfcounter_info(struct si_screen *screen, unsigned index, in si_get_perfcounter_info() argument 649 block = ac_lookup_counter(&pc->base, index, &base_gid, &sub); in si_get_perfcounter_info() 658 info->query_type = SI_QUERY_FIRST_PERFCOUNTER + index; in si_get_perfcounter_info() 669 int si_get_perfcounter_group_info(struct si_screen *screen, unsigned index, in si_get_perfcounter_group_info() argument 681 block = ac_lookup_group(&pc->base, &index); in si_get_perfcounter_group_info() 689 info->name = block->group_names + index * block->group_name_stride; in si_get_perfcounter_group_info()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_instr_mem.cpp | 79 return m_src.ready(block_id(), index()) && in do_ready() 80 (!m_uav_id || m_uav_id->ready(block_id(), index())); in do_ready() 323 const RegisterVec4& data, const RegisterVec4& index, in RatInstr() 329 m_index(index), in RatInstr() 372 return m_data.ready(block_id(), index()) && in do_ready() 373 m_index.ready(block_id(), index()); in do_ready() 322 RatInstr(ECFOpCode cf_opcode, ERatOp rat_op, const RegisterVec4& data, const RegisterVec4& index, int rat_id, PRegister rat_id_offset, int burst_count, int comp_mask, int element_size) RatInstr() argument
|
/third_party/pulseaudio/src/modules/ |
H A D | module-filter-apply.c | 82 return (unsigned) (f->sink_master->index + pa_idxset_string_hash_func(f->name)); in filter_hash() 84 return (unsigned) ((f->source_master->index << 16) + pa_idxset_string_hash_func(f->name)); in filter_hash() 86 return (unsigned) (f->sink_master->index + (f->source_master->index << 16) + pa_idxset_string_hash_func(f->name)); in filter_hash() 465 fltr->module_index = m->index; in find_filters_for_module() 478 fltr->module_index = m->index; in find_filters_for_module()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | OutputGLSLBase.cpp | 176 if (type.getQualifier() == EvqFragmentOut && layoutQualifier.index >= 0) in getCommonLayoutQualifiers() 178 out << listItemPrefix << "index = " << layoutQualifier.index; in getCommonLayoutQualifiers() 634 // actually stored as an index into TStructure::fields. in visitBinary() 637 const TIntermConstantUnion *index = node->getRight()->getAsConstantUnion(); in visitBinary() local 638 const TField *field = structure->fields()[index->getIConst(0)]; in visitBinary() 650 const TIntermConstantUnion *index = node->getRight()->getAsConstantUnion(); in visitBinary() local 651 const TField *field = interfaceBlock->fields()[index->getIConst(0)]; in visitBinary()
|
/third_party/skia/src/gpu/ |
H A D | GrDistanceFieldGenFromVector.cpp | 80 double operator[](int index) const { in operator []() 81 SkASSERT((unsigned)index < 6); in operator []() 82 return fMat[index]; in operator []() 85 double& operator[](int index) { in operator []() argument 86 SkASSERT((unsigned)index < 6); in operator []() 87 return fMat[index]; in operator []()
|
/third_party/skia/src/codec/ |
H A D | SkCodec.cpp | 308 const int index = options.fFrameIndex; in handleFrameIndex() local 309 if (0 == index) { in handleFrameIndex() 314 if (index < 0) { in handleFrameIndex() 324 if (index >= this->onGetFrameCount()) { in handleFrameIndex() 331 const auto* frame = frameHolder->getFrame(index); in handleFrameIndex() 359 if (options.fPriorFrame < requiredFrame || options.fPriorFrame >= index) { in handleFrameIndex()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | ir_context.cpp | 272 before, [&predicate, &uses_to_update](Instruction* user, uint32_t index) { in ReplaceAllUsesWithPredicate() 274 uses_to_update.emplace_back(user, index); in ReplaceAllUsesWithPredicate() 281 uint32_t index = p.second; in ReplaceAllUsesWithPredicate() local 289 if (index < type_result_id_count) { in ReplaceAllUsesWithPredicate() 292 if (user->type_id() != 0 && index == 0) { in ReplaceAllUsesWithPredicate() 305 uint32_t in_operand_pos = index - type_result_id_count; in ReplaceAllUsesWithPredicate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | ir_context.cpp | 272 before, [&predicate, &uses_to_update](Instruction* user, uint32_t index) { in ReplaceAllUsesWithPredicate() 274 uses_to_update.emplace_back(user, index); in ReplaceAllUsesWithPredicate() 281 uint32_t index = p.second; in ReplaceAllUsesWithPredicate() local 289 if (index < type_result_id_count) { in ReplaceAllUsesWithPredicate() 292 if (user->type_id() != 0 && index == 0) { in ReplaceAllUsesWithPredicate() 305 uint32_t in_operand_pos = index - type_result_id_count; in ReplaceAllUsesWithPredicate()
|
/third_party/skia/src/sksl/codegen/ |
H A D | SkSLPipelineStageCodeGenerator.cpp | 150 int index = 0; in writeChildCall() local 159 ++index; in writeChildCall() 179 sampleOutput = fCallbacks->sampleShader(index, exprBuffer.fBuffer.str()); in writeChildCall() 186 sampleOutput = fCallbacks->sampleColorFilter(index, exprBuffer.fBuffer.str()); in writeChildCall() 199 sampleOutput = fCallbacks->sampleBlender(index, exprBuffer.fBuffer.str(), in writeChildCall() 531 this->writeExpression(*expr.index(), Precedence::kTopLevel); in writeIndexExpression()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-repacker.hh | 492 * been performed for a given index, then it will be skipped. 506 * Creates a copy of node_idx and returns it's new index. 687 void move_to_new_space (unsigned index) in move_to_new_space() 689 auto& node = vertices_[index]; in move_to_new_space() 695 unsigned space_for (unsigned index, unsigned* root = nullptr) const in space_for() 697 const auto& node = vertices_[index]; in space_for() 701 *root = index; in space_for() 708 *root = index; in space_for()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | CodedOutputStreamWriter.java | 645 int index = 0; in writeDeterministicIntegerMap() 647 keys[index++] = k; in writeDeterministicIntegerMap() 662 int index = 0; in writeDeterministicLongMap() 664 keys[index++] = k; in writeDeterministicLongMap() 679 int index = 0; in writeDeterministicStringMap() 681 keys[index++] = k; in writeDeterministicStringMap()
|
/third_party/pulseaudio/src/modules/raop/ |
H A D | raop-sink.c | 446 size_t index; in thread_func() local 581 offset = u->memchunk.index; in thread_func() 586 index = u->memchunk.index; in thread_func() 615 u->write_count += (uint64_t) u->memchunk.index - (uint64_t) index; in thread_func()
|
/kernel/linux/linux-5.10/arch/x86/kvm/ |
H A D | x86.c | 939 static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr) in __kvm_set_xcr() argument 946 if (index != XCR_XFEATURE_ENABLED_MASK) in __kvm_set_xcr() 979 int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr) in kvm_set_xcr() argument 982 __kvm_set_xcr(vcpu, index, xcr)) { in kvm_set_xcr() 1460 switch (msr->index) { in kvm_get_msr_feature() 1465 rdmsrl_safe(msr->index, &msr->data); in kvm_get_msr_feature() 1473 static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data) in do_get_msr_feature() argument 1478 msr.index = index; in do_get_msr_feature() 1484 if (kvm_msr_ignored_check(vcpu, index, in do_get_msr_feature() 1563 kvm_msr_allowed(struct kvm_vcpu *vcpu, u32 index, u32 type) kvm_msr_allowed() argument 1615 __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data, bool host_initiated) __kvm_set_msr() argument 1656 kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu, u32 index, u64 data, bool host_initiated) kvm_set_msr_ignored_check() argument 1674 __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data, bool host_initiated) __kvm_get_msr() argument 1692 kvm_get_msr_ignored_check(struct kvm_vcpu *vcpu, u32 index, u64 *data, bool host_initiated) kvm_get_msr_ignored_check() argument 1707 kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data) kvm_get_msr() argument 1713 kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data) kvm_set_msr() argument 1754 kvm_msr_user_space(struct kvm_vcpu *vcpu, u32 index, u32 exit_reason, u64 data, int (*completion)(struct kvm_vcpu *vcpu), int r) kvm_msr_user_space() argument 1776 kvm_get_msr_user_space(struct kvm_vcpu *vcpu, u32 index, int r) kvm_get_msr_user_space() argument 1782 kvm_set_msr_user_space(struct kvm_vcpu *vcpu, u32 index, u64 data, int r) kvm_set_msr_user_space() argument 1925 do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data) do_get_msr() argument 1930 do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data) do_set_msr() argument 3748 __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs, struct kvm_msr_entry *entries, int (*do_msr)(struct kvm_vcpu *vcpu, unsigned index, u64 *data)) __msr_io() argument 3767 msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs, int (*do_msr)(struct kvm_vcpu *vcpu, unsigned index, u64 *data), int writeback) msr_io() argument 7093 emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr) emulator_set_xcr() argument [all...] |
/kernel/linux/linux-6.6/drivers/scsi/lpfc/ |
H A D | lpfc_init.c | 1782 * 2 - DMA ring index out of range 2378 int index = 0; in lpfc_parse_vpd() local 2388 while (!finished && (index < (len - 4))) { in lpfc_parse_vpd() 2389 switch (vpd[index]) { in lpfc_parse_vpd() 2392 index += 1; in lpfc_parse_vpd() 2393 lenlo = vpd[index]; in lpfc_parse_vpd() 2394 index += 1; in lpfc_parse_vpd() 2395 lenhi = vpd[index]; in lpfc_parse_vpd() 2396 index += 1; in lpfc_parse_vpd() 2398 index in lpfc_parse_vpd() 5683 uint32_t i, index; lpfc_cmf_stats_timer() local 12997 int vectors, rc, index; lpfc_sli4_enable_msix() local 13153 int rc, index; lpfc_sli4_enable_msi() local 13293 int index; lpfc_sli4_disable_intr() local [all...] |
/base/usb/usb_manager/interfaces/kits/js/napi/src/ |
H A D | usb_info.cpp | 234 int32_t index; member 249 int32_t index = 0; in ParsePipeControlParam() local 250 NapiUtil::JsObjectToInt(env, jsObj, "index", index); in ParsePipeControlParam() 265 controlParam.index = index; in ParsePipeControlParam() 275 int32_t index; member 289 int32_t index = 0; in ParseUsbPipeControlParam() local 290 NapiUtil::JsObjectToInt(env, jsObj, "wIndex", index); in ParseUsbPipeControlParam() 306 controlParam.index in ParseUsbPipeControlParam() [all...] |
/drivers/peripheral/wlan/wpa/interfaces/hdi_service/service_common/ |
H A D | wpa_p2p_cmd.c | 1499 int index = 0;
in WpaInterfaceP2pListNetworks() local 1501 if (index >= infoList->infoNum) {
in WpaInterfaceP2pListNetworks() 1504 infoList->infos[index].ssid = (uint8_t *)OsalMemCalloc(sizeof(uint8_t) * WIFI_SSID_LENGTH);
in WpaInterfaceP2pListNetworks() 1505 if (infoList->infos[index].ssid == NULL) {
in WpaInterfaceP2pListNetworks() 1507 HdiP2pNetworkInfoFree(&(infoList->infos[index]), true);
in WpaInterfaceP2pListNetworks() 1510 infoList->infos[index].ssidLen = WIFI_SSID_LENGTH;
in WpaInterfaceP2pListNetworks() 1511 infoList->infos[index].bssid = (uint8_t *)OsalMemCalloc(sizeof(uint8_t) * (ETH_ADDR_LEN + 1));
in WpaInterfaceP2pListNetworks() 1512 if (infoList->infos[index].bssid == NULL) {
in WpaInterfaceP2pListNetworks() 1514 HdiP2pNetworkInfoFree(&(infoList->infos[index]), true);
in WpaInterfaceP2pListNetworks() 1517 infoList->infos[index] in WpaInterfaceP2pListNetworks() [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8723be/ |
H A D | hw.c | 512 u8 index = 0; in rtl8723be_set_hw_reg() local 522 for (index = 0; index < 4; index++) { in rtl8723be_set_hw_reg() 523 if ((p_regtoset[index] & 0xf0) > in rtl8723be_set_hw_reg() 525 p_regtoset[index] = in rtl8723be_set_hw_reg() 526 (p_regtoset[index] & 0x0f) | in rtl8723be_set_hw_reg() 529 if ((p_regtoset[index] & 0x0f) > factor_toset) in rtl8723be_set_hw_reg() 530 p_regtoset[index] = in rtl8723be_set_hw_reg() 531 (p_regtoset[index] in rtl8723be_set_hw_reg() 1952 u8 rf_path, index; _rtl8723be_read_txpower_info_from_hwpg() local [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ |
H A D | hw.c | 477 u8 index = 0; in rtl88ee_set_hw_reg() local 487 for (index = 0; index < 4; index++) { in rtl88ee_set_hw_reg() 488 if ((p_regtoset[index] & 0xf0) > in rtl88ee_set_hw_reg() 490 p_regtoset[index] = in rtl88ee_set_hw_reg() 491 (p_regtoset[index] & 0x0f) | in rtl88ee_set_hw_reg() 494 if ((p_regtoset[index] & 0x0f) > in rtl88ee_set_hw_reg() 496 p_regtoset[index] = in rtl88ee_set_hw_reg() 497 (p_regtoset[index] in rtl88ee_set_hw_reg() 1755 u8 rf_path, index; _rtl88ee_read_txpower_info_from_hwpg() local [all...] |
/kernel/linux/linux-5.10/drivers/pci/hotplug/ |
H A D | cpqphp_ctrl.c | 1063 * @index: is %0 for first function found, %1 for the second... 1067 struct pci_func *cpqhp_slot_find(u8 bus, u8 device, u8 index) in cpqhp_slot_find() argument 1074 if ((func == NULL) || ((func->device == device) && (index == 0))) in cpqhp_slot_find() 1086 if (found == index) in cpqhp_slot_find() 1410 int index; in board_added() local 1567 index = 0; in board_added() 1569 new_slot = cpqhp_slot_find(ctrl->bus, func->device, index++); in board_added() 1612 int index; in remove_board() local 1638 index = 0; in remove_board() 1639 temp_func = cpqhp_slot_find(func->bus, func->device, index in remove_board() 2040 u8 index = 0; cpqhp_process_SS() local 2229 int index; configure_new_device() local [all...] |