| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| H A D | bytecodes.cpp | 544 size_t idx = 0; in GetVRegCount() local 546 while (inst.HasVReg(format, idx)) { in GetVRegCount() 547 idx++; in GetVRegCount() 549 return idx; in GetVRegCount() 1358 uint32_t idx = READ_INST_16_1(); in InitBytecodeInfo() local 1359 info.inputs.emplace_back(Immediate(idx)); in InitBytecodeInfo() 1363 uint32_t idx = READ_INST_16_2(); in InitBytecodeInfo() local 1364 info.inputs.emplace_back(Immediate(idx)); in InitBytecodeInfo() 1368 uint32_t idx = READ_INST_32_1(); in InitBytecodeInfo() local 1369 info.inputs.emplace_back(Immediate(idx)); in InitBytecodeInfo() [all...] |
| /third_party/node/deps/openssl/openssl/ssl/ |
| H A D | ssl_local.h | 2416 /* Returns true if certificate and private key for 'idx' are present */ 2417 static ossl_inline int ssl_has_cert(const SSL *s, int idx) in ssl_has_cert() argument 2419 if (idx < 0 || idx >= SSL_PKEY_NUM) in ssl_has_cert() 2421 return s->cert->pkeys[idx].x509 != NULL in ssl_has_cert() 2422 && s->cert->pkeys[idx].privatekey != NULL; in ssl_has_cert() 2473 __owur int ssl_cert_is_disabled(SSL_CTX *ctx, size_t idx); 2499 __owur const SSL_CERT_LOOKUP *ssl_cert_lookup_by_idx(size_t idx); 2748 int idx); 2782 __owur const EVP_MD *ssl_md(SSL_CTX *ctx, int idx); [all...] |
| /third_party/node/deps/openssl/openssl/apps/lib/ |
| H A D | apps.c | 1224 int idx = X509_get_ext_by_OBJ(x, obj, -1); in copy_extensions() local 1227 if (idx != -1) { in copy_extensions() 1233 X509_EXTENSION_free(X509_delete_ext(x, idx)); in copy_extensions() 1234 idx = X509_get_ext_by_OBJ(x, obj, -1); in copy_extensions() 1235 } while (idx != -1); in copy_extensions() 2248 int idx, rv = 0; in adapt_keyid_ext() local 2253 idx = X509v3_get_ext_by_OBJ(exts, X509_EXTENSION_get_object(new_ext), -1); in adapt_keyid_ext() 2254 if (idx >= 0) { in adapt_keyid_ext() 2255 X509_EXTENSION *found_ext = X509v3_get_ext(exts, idx); in adapt_keyid_ext() 2260 X509_delete_ext(cert, idx); in adapt_keyid_ext() [all...] |
| /third_party/openssl/apps/lib/ |
| H A D | apps.c | 1222 int idx = X509_get_ext_by_OBJ(x, obj, -1); in copy_extensions() local 1225 if (idx != -1) { in copy_extensions() 1231 X509_EXTENSION_free(X509_delete_ext(x, idx)); in copy_extensions() 1232 idx = X509_get_ext_by_OBJ(x, obj, -1); in copy_extensions() 1233 } while (idx != -1); in copy_extensions() 2241 int idx, rv = 0; in adapt_keyid_ext() local 2246 idx = X509v3_get_ext_by_OBJ(exts, X509_EXTENSION_get_object(new_ext), -1); in adapt_keyid_ext() 2247 if (idx >= 0) { in adapt_keyid_ext() 2248 X509_EXTENSION *found_ext = X509v3_get_ext(exts, idx); in adapt_keyid_ext() 2253 X509_delete_ext(cert, idx); in adapt_keyid_ext() [all...] |
| /third_party/openssl/ssl/ |
| H A D | ssl_local.h | 2360 /* Returns true if certificate and private key for 'idx' are present */ 2361 static ossl_inline int ssl_has_cert(const SSL *s, int idx) in ssl_has_cert() argument 2363 if (idx < 0 || idx >= SSL_PKEY_NUM) in ssl_has_cert() 2365 return s->cert->pkeys[idx].x509 != NULL in ssl_has_cert() 2366 && s->cert->pkeys[idx].privatekey != NULL; in ssl_has_cert() 2417 __owur int ssl_cert_is_disabled(SSL_CTX *ctx, size_t idx); 2443 __owur const SSL_CERT_LOOKUP *ssl_cert_lookup_by_idx(size_t idx); 2692 int idx); 2726 __owur const EVP_MD *ssl_md(SSL_CTX *ctx, int idx); [all...] |
| /third_party/python/Lib/test/ |
| H A D | test_httplib.py | 475 for idx, line in enumerate(lines): 477 if empty_lines and idx % 2: 479 if idx < len(lines) - 1: 1575 idx = read.find(b'\n') 1576 if idx != -1: 1579 idx = limit - datalen - 1 1584 idx = 0 #eof condition 1586 idx += 1 1587 data.append(read[:idx]) 1588 self.remainder = read[idx [all...] |
| /arkcompiler/ets_runtime/ecmascript/module/ |
| H A D | js_module_manager.cpp | 728 for (size_t idx = 0; idx < exportEntriesLen; idx++) { in GetExportObjectIndex() 729 ee.Update(localExportEntries->Get(idx)); in GetExportObjectIndex() 731 ASSERT(idx <= static_cast<size_t>(INT_MAX)); in GetExportObjectIndex()
|
| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| H A D | graph_cloner.cpp | 919 auto idx {phi->CastToPhi()->GetPredBlockIndex(pre_header)}; in GetPhiResolver() 920 if (phi->GetInput(idx).GetInst() == init_input && phi->GetInput(1 - idx).GetInst() == update_input) { in GetPhiResolver() 955 auto idx = phi_clone->CastToPhi()->GetPredBlockIndex(pre_loop_clone); in BuildLoopCloneDataFlow() local 956 phi_clone->SetInput(idx, phi); in BuildLoopCloneDataFlow()
|
| /arkcompiler/ets_runtime/tools/circuit_viewer/src/ir/ |
| H A D | IrViewer.js | 149 let idx = -1; 151 idx = this.hideNodeIds_.indexOf(id1); 155 idx = this.hideNodeIds_.indexOf(id2); 158 if (idx >= 0) { 159 this.hideNodeIds_.splice(idx, 1);
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
| H A D | graph_cloner.cpp | 945 auto idx {phi->CastToPhi()->GetPredBlockIndex(preHeader)}; in GetPhiResolver() 946 if (phi->GetInput(idx).GetInst() == initInput && phi->GetInput(1 - idx).GetInst() == updateInput) { in GetPhiResolver() 987 auto idx = phiClone->CastToPhi()->GetPredBlockIndex(preLoopClone); in BuildLoopCloneDataFlow() local 988 phiClone->SetInput(idx, phi); in BuildLoopCloneDataFlow()
|
| /device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/ |
| H A D | mali_kbase_hwcnt_backend_csf.c | 420 u32 idx; in kbasep_hwcnt_backend_csf_zero_all_prfcnt_en_header() local 427 for (idx = 0; idx < backend_csf->info->ring_buf_cnt; idx++) { in kbasep_hwcnt_backend_csf_zero_all_prfcnt_en_header() 428 sample = (u32 *)&cpu_dump_base[idx * dump_bytes]; in kbasep_hwcnt_backend_csf_zero_all_prfcnt_en_header()
|
| /foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
| H A D | js_view.cpp | 872 for (int32_t idx = PARAM_VIEW_OBJ; idx < PARAM_SIZE; ++idx) { in ParseRecycleParams() 873 params[idx] = info[idx]; in ParseRecycleParams()
|
| /third_party/ffmpeg/libavcodec/ |
| H A D | aacps_fixed_tablegen.h | 145 int idx; in ps_tableinit() local 306 idx = 0; in ps_tableinit() 336 alpha_int = alpha_tab[idx]; in ps_tableinit() 337 gamma_int = gamma_tab[idx]; in ps_tableinit() 352 idx++; in ps_tableinit()
|
| H A D | opus_pvq.c | 260 int i, idx = 0, sum = 0; in celt_icwrsi() local 263 idx += CELT_PVQ_U(N - i, sum) + (y[i] < 0)*i_s; in celt_icwrsi() 266 return idx; in celt_icwrsi() 360 const uint32_t idx = ff_opus_rc_dec_uint(rc, CELT_PVQ_V(N, K)); in celt_decode_pulses() local 361 return celt_cwrsi(N, K, idx, y); in celt_decode_pulses()
|
| /third_party/eudev/src/shared/ |
| H A D | util.c | 1557 size_t l, u, idx; in xbsearch_r() local 1564 idx = (l + u) / 2; in xbsearch_r() 1565 p = (void *)(((const char *) base) + (idx * size)); in xbsearch_r() 1568 u = idx; in xbsearch_r() 1570 l = idx + 1; in xbsearch_r()
|
| /third_party/ffmpeg/fftools/ |
| H A D | opt_common.c | 239 int idx = locate_option(argc, argv, options, "version"); in show_banner() local 240 if (hide_banner || idx) in show_banner() 1016 int idx = av_channel_layout_index_from_channel(ch_layout, i); in show_layouts() local 1017 if (idx >= 0) { in show_layouts() 1019 printf("%s%s", idx ? "+" : "", buf2); in show_layouts()
|
| /third_party/backends/backend/ |
| H A D | plustek-usbcal.c | 1196 u_short dpi, idx, idx_end; in cano_DoCalibration() local 1302 for( idx = 1; idx < idx_end; idx++ ) { in cano_DoCalibration() 1306 dpi = usb_get_res( scaps->OpticDpi.x, idx ); in cano_DoCalibration()
|
| H A D | hpljm1005.c | 151 int idx; /* Index in the usbid array */ member 377 dev->idx = cur_idx; in attach() 487 devlist[i]->vendor = usbid[iter->idx].vendor_s; in sane_get_devices() 488 devlist[i]->model = usbid[iter->idx].model_s; in sane_get_devices() 489 devlist[i]->type = usbid[iter->idx].type_s; in sane_get_devices()
|
| /third_party/alsa-lib/src/pcm/ |
| H A D | pcm_file.c | 258 int idx, len; in snd_pcm_file_open_output_file() local 263 for (idx = 1; idx < 10000; idx++) { in snd_pcm_file_open_output_file() 266 idx); in snd_pcm_file_open_output_file()
|
| /third_party/mesa3d/src/freedreno/vulkan/ |
| H A D | tu_drm.c | 212 uint32_t idx = dev->bo_count++; in tu_bo_init() local 215 if (idx >= dev->bo_list_size) { in tu_bo_init() 216 uint32_t new_len = idx + 64; in tu_bo_init() 227 dev->bo_list[idx] = (struct drm_msm_gem_submit_bo) { in tu_bo_init() 239 .bo_list_idx = idx, in tu_bo_init()
|
| /third_party/mesa3d/src/gallium/frontends/lavapipe/ |
| H A D | lvp_pipeline.c | 304 int idx = nir_tex_instr_src_index(tex_instr, nir_tex_src_texture_offset); in fixup_tex_instr() local 305 if (idx == -1) in fixup_tex_instr() 308 if (!nir_src_is_const(tex_instr->src[idx].src)) in fixup_tex_instr() 310 offset = nir_src_comp_as_uint(tex_instr->src[idx].src, 0); in fixup_tex_instr() 312 nir_tex_instr_remove_src(tex_instr, idx); in fixup_tex_instr()
|
| /third_party/mesa3d/src/panfrost/vulkan/ |
| H A D | panvk_vX_pipeline.c | 946 subpass->zs_attachment.idx != VK_ATTACHMENT_UNUSED; in panvk_pipeline_builder_init_graphics() 951 uint32_t idx = subpass->color_attachments[i].idx; in panvk_pipeline_builder_init_graphics() local 952 if (idx == VK_ATTACHMENT_UNUSED) in panvk_pipeline_builder_init_graphics() 956 builder->color_attachment_formats[i] = pass->attachments[idx].format; in panvk_pipeline_builder_init_graphics()
|
| /third_party/lwip/src/apps/http/makefsdata/ |
| H A D | makefsdata.c | 1240 int idx = 0; in s_put_ascii() local 1243 sprintf(&buf[idx], "0x%02x,", cur); in s_put_ascii() 1244 idx += 5; in s_put_ascii() 1246 sprintf(&buf[idx], NEWLINE); in s_put_ascii() 1247 idx += NEWLINE_LEN; in s_put_ascii()
|
| /third_party/node/deps/openssl/openssl/apps/ |
| H A D | cms.c | 58 int idx; member 648 if (key_param == NULL || key_param->idx != keyidx) { in cms_main() 655 nparam->idx = keyidx; in cms_main() 968 if (kparam->idx == i) { in cms_main() 1084 if (kparam->idx == i) { in cms_main()
|
| /third_party/node/deps/openssl/openssl/crypto/cmp/ |
| H A D | cmp_msg.c | 133 int idx = X509v3_get_ext_by_OBJ(*target, obj, -1); in STACK_OF() local 136 if (idx != -1) { in STACK_OF() 139 X509_EXTENSION_free(sk_X509_EXTENSION_delete(*target, idx)); in STACK_OF() 140 idx = X509v3_get_ext_by_OBJ(*target, obj, -1); in STACK_OF() 141 } while (idx != -1); in STACK_OF()
|