| /arkcompiler/ets_runtime/ecmascript/interpreter/ |
| H A D | slow_runtime_stub.cpp | 545 JSTaggedValue SlowRuntimeStub::StOwnByIndex(JSThread *thread, JSTaggedValue obj, uint32_t idx, JSTaggedValue value) in StOwnByIndex() argument 551 JSHandle<JSTaggedValue> idxHandle(thread, JSTaggedValue(idx)); in StOwnByIndex() 788 JSTaggedValue SlowRuntimeStub::LdObjByIndex(JSThread *thread, JSTaggedValue obj, uint32_t idx, bool callGetter, in LdObjByIndex() argument 795 return RuntimeStubs::RuntimeLdObjByIndex(thread, objHandle, idx, callGetter, receiver); in LdObjByIndex() 798 JSTaggedValue SlowRuntimeStub::StObjByIndex(JSThread *thread, JSTaggedValue obj, uint32_t idx, JSTaggedValue value) in StObjByIndex() argument 805 return RuntimeStubs::RuntimeStObjByIndex(thread, objHandle, idx, valueHandle); in StObjByIndex()
|
| /third_party/backends/backend/ |
| H A D | plustek_pp.c | 1580 int idx = (optval - mode_list); in sane_control_option() local 1584 idx = optval - mode_9800x_list; in sane_control_option() 1589 if( mp[idx].scanmode != COLOR_HALFTONE ){ in sane_control_option() 1599 if( mp[idx].scanmode == COLOR_BW ) { in sane_control_option() 1612 if((mp[idx].scanmode == COLOR_256GRAY) || in sane_control_option() 1613 (mp[idx].scanmode == COLOR_GRAY16)) { in sane_control_option()
|
| /third_party/libcoap/tests/ |
| H A D | test_pdu.c | 317 size_t idx; in t_parse_pdu17() local 322 for (idx = 4; idx < sizeof(teststr) - 4; idx += 2) { in t_parse_pdu17() 323 teststr[idx] = 0xd0; /* 1 byte option delta follows */ in t_parse_pdu17() 324 teststr[idx + 1] = 0xff; /* option delta 268 */ in t_parse_pdu17()
|
| /third_party/mesa3d/src/gallium/drivers/zink/ |
| H A D | zink_bo.c | 338 for (unsigned idx = 0; idx < backing->num_chunks; ++idx) { in sparse_backing_alloc() 339 uint32_t cur_num_pages = backing->chunks[idx].end - backing->chunks[idx].begin; in sparse_backing_alloc() 343 best_idx = idx; in sparse_backing_alloc()
|
| H A D | zink_query.c | 75 bool has_draws; /* have_gs and have_xfb are valid for idx=curr_query */ 243 pipeline_statistic_convert(enum pipe_statistics_query_index idx) in pipeline_statistic_convert() argument 258 assert(idx < ARRAY_SIZE(map)); in pipeline_statistic_convert() 259 return map[idx]; in pipeline_statistic_convert() 545 int idx = 0; in check_query_results() local 547 unsigned i = idx * result_size; in check_query_results() 548 idx++; in check_query_results()
|
| /third_party/mesa3d/src/gallium/winsys/amdgpu/drm/ |
| H A D | amdgpu_bo.c | 909 for (unsigned idx = 0; idx < backing->num_chunks; ++idx) { in sparse_backing_alloc() 910 uint32_t cur_num_pages = backing->chunks[idx].end - backing->chunks[idx].begin; in sparse_backing_alloc() 914 best_idx = idx; in sparse_backing_alloc()
|
| /third_party/node/deps/openssl/openssl/crypto/ |
| H A D | provider_core.c | 614 int idx; in ossl_provider_add_to_store() local 628 idx = sk_OSSL_PROVIDER_find(store->providers, &tmpl); in ossl_provider_add_to_store() 629 if (idx == -1) in ossl_provider_add_to_store() 632 actualtmp = sk_OSSL_PROVIDER_value(store->providers, idx); in ossl_provider_add_to_store() 634 if (idx == -1) { in ossl_provider_add_to_store() 657 if (idx >= 0) { in ossl_provider_add_to_store()
|
| /third_party/rust/crates/libc/src/unix/linux_like/emscripten/ |
| H A D | mod.rs | 1701 let (idx, offset) = (cpu / size_in_bits, cpu % size_in_bits); in CPU_SET() 1702 cpuset.bits[idx] |= 1 << offset; in CPU_SET() 1709 let (idx, offset) = (cpu / size_in_bits, cpu % size_in_bits); in CPU_CLR() 1710 cpuset.bits[idx] &= !(1 << offset); in CPU_CLR() 1716 let (idx, offset) = (cpu / size_in_bits, cpu % size_in_bits); in CPU_ISSET() 1717 0 != (cpuset.bits[idx] & (1 << offset)) in CPU_ISSET()
|
| /third_party/rust/crates/clap/src/builder/ |
| H A D | command.rs | 287 let subcmd = if let Some(idx) = pos { in mut_subcommand() 288 self.subcommands.remove(idx) in mut_subcommand() 3547 for idx in 0..self.subcommands.len() { in get_subcommands_containing() 3548 if self.subcommands[idx] in get_subcommands_containing() 3553 vec.push(&self.subcommands[idx]); in get_subcommands_containing() 3554 vec.append(&mut self.subcommands[idx].get_subcommands_containing(arg)); in get_subcommands_containing() 4472 let idx = reqs.insert(group.id.clone()); 4474 reqs.insert_child(idx, a.clone());
|
| /third_party/openssl/crypto/ |
| H A D | provider_core.c | 614 int idx; in ossl_provider_add_to_store() local 628 idx = sk_OSSL_PROVIDER_find(store->providers, &tmpl); in ossl_provider_add_to_store() 629 if (idx == -1) in ossl_provider_add_to_store() 632 actualtmp = sk_OSSL_PROVIDER_value(store->providers, idx); in ossl_provider_add_to_store() 634 if (idx == -1) { in ossl_provider_add_to_store() 657 if (idx >= 0) { in ossl_provider_add_to_store()
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/protected_memory/ |
| H A D | vktProtectedMemWsiSwapchainTests.cpp | 740 for (size_t idx = 0; idx < properties.size(); ++idx) in executeSwapchainParameterCases() 742 vk::VkQueueFlags flags = properties[idx].queueFlags; in executeSwapchainParameterCases() 744 if ((flags & requiredFlags) == requiredFlags && idx != queueIdx) in executeSwapchainParameterCases() 746 additionalQueueIndex = static_cast<uint32_t>(idx); in executeSwapchainParameterCases()
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/ |
| H A D | vktRayTracingCallableShadersTests.cpp | 622 for (deUint32 idx = 0; idx < callableDataDefinition.size(); ++idx) in initPrograms() 628 << callableDataDefinition[idx] << in initPrograms() 631 << callableDataComputation[idx] << in initPrograms() 634 csname << "call_" << idx; in initPrograms() local
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
| H A D | vktRenderPassLoadStoreOpNoneTests.cpp | 105 deUint32 idx; member 173 if (ref.idx == attachmentIdx) in getFirstUsage() 283 refs.resolveAttachmentRefs.push_back({DE_NULL, ref.idx, layout, aspectMask}); in createRenderPass() 288 refs.colorAttachmentRefs.push_back({DE_NULL, ref.idx, layout, aspectMask}); in createRenderPass() 294 refs.depthStencilAttachmentRefs.push_back({DE_NULL, ref.idx, layout, depthStencilAspectMask}); in createRenderPass() 300 refs.inputAttachmentRefs.push_back({DE_NULL, ref.idx, layout, aspectMask}); in createRenderPass()
|
| /third_party/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/ |
| H A D | mod.rs | 1565 let (idx, offset) = ((cpu >> 6) & 3, cpu & 63); in CPU_SET() 1566 cpuset.ary[idx] |= 1 << offset; in CPU_SET() 1571 let (idx, offset) = ((cpu >> 6) & 3, cpu & 63); in CPU_CLR() 1572 cpuset.ary[idx] &= !(1 << offset); in CPU_CLR() 1577 let (idx, offset) = ((cpu >> 6) & 3, cpu & 63); in CPU_ISSET() 1578 0 != cpuset.ary[idx] & (1 << offset) in CPU_ISSET()
|
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
| H A D | vktRenderPassLoadStoreOpNoneTests.cpp | 105 deUint32 idx; member 173 if (ref.idx == attachmentIdx) in getFirstUsage() 283 refs.resolveAttachmentRefs.push_back({DE_NULL, ref.idx, layout, aspectMask}); in createRenderPass() 288 refs.colorAttachmentRefs.push_back({DE_NULL, ref.idx, layout, aspectMask}); in createRenderPass() 294 refs.depthStencilAttachmentRefs.push_back({DE_NULL, ref.idx, layout, depthStencilAspectMask}); in createRenderPass() 300 refs.inputAttachmentRefs.push_back({DE_NULL, ref.idx, layout, aspectMask}); in createRenderPass()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/ |
| H A D | eap_server.c | 1675 int idx = sm->user_eap_method_index; in eap_sm_Policy_getNextMethod() local 1688 } else if (sm->user && idx < EAP_MAX_METHODS && in eap_sm_Policy_getNextMethod() 1689 (sm->user->methods[idx].vendor != EAP_VENDOR_IETF || in eap_sm_Policy_getNextMethod() 1690 sm->user->methods[idx].method != EAP_TYPE_NONE)) { in eap_sm_Policy_getNextMethod() 1691 *vendor = sm->user->methods[idx].vendor; in eap_sm_Policy_getNextMethod() 1692 next = sm->user->methods[idx].method; in eap_sm_Policy_getNextMethod()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/ |
| H A D | x509v3.c | 2082 long unsigned idx; in x509_certificate_chain_validate() local 2093 for (cert = chain, idx = 0; cert; cert = cert->next, idx++) { in x509_certificate_chain_validate() 2096 wpa_printf(MSG_DEBUG, "X509: %lu: %s", idx, buf); in x509_certificate_chain_validate() 2137 idx > cert->next->path_len_constraint) { in x509_certificate_chain_validate() 2139 " not met (idx=%lu issuer " in x509_certificate_chain_validate() 2140 "pathLenConstraint=%lu)", idx, in x509_certificate_chain_validate()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
| H A D | ieee802_11_common.c | 2432 int center_idx_to_bw_6ghz(u8 idx) in center_idx_to_bw_6ghz() argument 2435 if (idx == 2) in center_idx_to_bw_6ghz() 2438 if ((idx & 0x3) == 0x1) in center_idx_to_bw_6ghz() 2441 if ((idx & 0x7) == 0x3) in center_idx_to_bw_6ghz() 2444 if ((idx & 0xf) == 0x7) in center_idx_to_bw_6ghz() 2447 if ((idx & 0x1f) == 0xf) in center_idx_to_bw_6ghz()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/ |
| H A D | eap_server.c | 1693 int idx = sm->user_eap_method_index; in eap_sm_Policy_getNextMethod() local 1706 } else if (sm->user && idx < EAP_MAX_METHODS && in eap_sm_Policy_getNextMethod() 1707 (sm->user->methods[idx].vendor != EAP_VENDOR_IETF || in eap_sm_Policy_getNextMethod() 1708 sm->user->methods[idx].method != EAP_TYPE_NONE)) { in eap_sm_Policy_getNextMethod() 1709 *vendor = sm->user->methods[idx].vendor; in eap_sm_Policy_getNextMethod() 1710 next = sm->user->methods[idx].method; in eap_sm_Policy_getNextMethod()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/ |
| H A D | x509v3.c | 2144 long unsigned idx; in x509_certificate_chain_validate() local 2155 for (cert = chain, idx = 0; cert; cert = cert->next, idx++) { in x509_certificate_chain_validate() 2158 wpa_printf(MSG_DEBUG, "X509: %lu: %s", idx, buf); in x509_certificate_chain_validate() 2199 idx > cert->next->path_len_constraint) { in x509_certificate_chain_validate() 2201 " not met (idx=%lu issuer " in x509_certificate_chain_validate() 2202 "pathLenConstraint=%lu)", idx, in x509_certificate_chain_validate()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| H A D | array_bounds_check_elimination.h | 124 void AddAccessIndexedInfo(GateLists &indices, GateRef gate, int idx, GateRef indexCheck);
|
| /arkcompiler/ets_frontend/es2panda/parser/module/ |
| H A D | sourceTextModuleRecord.h | 180 binder::Variable *CheckAndAssignIndex(binder::ModuleScope *moduleScope, util::StringView name, uint32_t *idx) const;
|
| /third_party/ffmpeg/libavcodec/ |
| H A D | nvdec_vp9.c | 55 .CurrPicIdx = cf->idx, in nvdec_vp9_start_frame()
|
| /third_party/ffmpeg/libavformat/ |
| H A D | internal.h | 498 * @param idx the global stream index 507 int ff_sdp_write_media(char *buff, int size, const AVStream *st, int idx,
|
| /third_party/alsa-lib/src/ucm/ |
| H A D | ucm_local.h | 335 const char *name, int idx);
|