/third_party/openssl/demos/bio/ |
D | client-conf.c | 24 STACK_OF(CONF_VALUE) *sect = NULL; in main() 39 sect = NCONF_get_section(conf, "default"); in main() 41 if (sect == NULL) { in main() 51 for (i = 0; i < sk_CONF_VALUE_num(sect); i++) { in main() 52 cnf = sk_CONF_VALUE_value(sect, i); in main()
|
D | server-conf.c | 32 STACK_OF(CONF_VALUE) *sect = NULL; in main() 50 sect = NCONF_get_section(conf, "default"); in main() 52 if (sect == NULL) { in main() 62 for (i = 0; i < sk_CONF_VALUE_num(sect); i++) { in main() 64 cnf = sk_CONF_VALUE_value(sect, i); in main()
|
/third_party/FatFs/source/ |
D | ff.c | 924 LBA_t sect /* Sector LBA to make appearance in the fs->win[] */ in move_window() argument 934 if (sect != fs->winsect) { /* Window offset changed? */ in move_window() 939 if (disk_read(fs->pdrv, fs->win, sect, 1) != RES_OK) { in move_window() 940 sect = (LBA_t)0 - 1; /* Invalidate window if read data is not valid */ in move_window() 943 fs->winsect = sect; in move_window() 952 LBA_t sect /* Sector number to make appearance in the fs->win[] */ in move_window_readdir() argument 962 if (sect != fs->winsect) { /* Window offset changed? */ in move_window_readdir() 967 if (disk_read_readdir(fs->pdrv, fs->win, sect, 1) != RES_OK) { in move_window_readdir() 968 sect = 0xFFFFFFFF; /* Invalidate window if read data is not valid */ in move_window_readdir() 971 fs->winsect = sect; in move_window_readdir() [all …]
|
/third_party/skia/tests/ |
D | PathOpsCubicLineIntersectionTest.cpp | 167 SkDPoint sect = cubic.ptAtT(cubicT); in testOne() local 168 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", prev.fX, prev.fY, sect.fX, sect.fY); in testOne() 169 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", sect.fX, sect.fY, cubic[3].fX, cubic[3].fY); in testOne() 175 sect.distance(i.pt(0)), cubic[3].distance(prevL)); in testOne()
|
/third_party/node/deps/openssl/openssl/crypto/conf/ |
D | conf_ssl.c | 87 CONF_VALUE *sect = sk_CONF_VALUE_value(cmd_lists, (int)i); in ssl_module_init() local 88 STACK_OF(CONF_VALUE) *cmds = NCONF_get_section(cnf, sect->value); in ssl_module_init() 97 "name=%s, value=%s", sect->name, sect->value); in ssl_module_init() 100 ssl_name->name = OPENSSL_strdup(sect->name); in ssl_module_init()
|
/third_party/openssl/crypto/conf/ |
D | conf_ssl.c | 87 CONF_VALUE *sect = sk_CONF_VALUE_value(cmd_lists, (int)i); in ssl_module_init() local 88 STACK_OF(CONF_VALUE) *cmds = NCONF_get_section(cnf, sect->value); in ssl_module_init() 97 "name=%s, value=%s", sect->name, sect->value); in ssl_module_init() 100 ssl_name->name = OPENSSL_strdup(sect->name); in ssl_module_init()
|
/third_party/node/deps/cares/src/lib/ |
D | ares_dns_record.c | 304 ares_dns_section_t sect) in ares_dns_record_rr_cnt() argument 306 if (dnsrec == NULL || !ares_dns_section_isvalid(sect)) { in ares_dns_record_rr_cnt() 310 switch (sect) { in ares_dns_record_rr_cnt() 323 ares_dns_section_t sect, size_t cnt) in ares_dns_record_rr_prealloc() argument 329 if (dnsrec == NULL || cnt == 0 || !ares_dns_section_isvalid(sect)) { in ares_dns_record_rr_prealloc() 333 switch (sect) { in ares_dns_record_rr_prealloc() 369 ares_dns_section_t sect, const char *name, in ares_dns_record_rr_add() argument 380 !ares_dns_section_isvalid(sect) || in ares_dns_record_rr_add() 388 switch (sect) { in ares_dns_record_rr_add() 403 status = ares_dns_record_rr_prealloc(dnsrec, sect, *rr_len + 1); in ares_dns_record_rr_add() [all …]
|
D | ares_qcache.c | 238 size_t sect; in ares__qcache_calc_minttl() local 240 for (sect = ARES_SECTION_ANSWER; sect <= ARES_SECTION_ADDITIONAL; sect++) { in ares__qcache_calc_minttl() 242 for (i = 0; i < ares_dns_record_rr_cnt(dnsrec, (ares_dns_section_t)sect); in ares__qcache_calc_minttl() 245 ares_dns_record_rr_get(dnsrec, (ares_dns_section_t)sect, i); in ares__qcache_calc_minttl()
|
/third_party/node/deps/v8/third_party/test262-harness/src/ |
D | _packager.py | 185 sect = {} variable 186 sect["name"] = "Chapter - " + chapterName 263 sect["numTests"] = str(len(sourceFiles)-excluded) 264 sect["tests"] = tests 267 testsList["testsCollection"] = sect 276 CHAPTER_TEST_CASES_JSON["numTests"] = int(sect["numTests"]) 294 TOTAL_TEST_COUNT += int(sect["numTests"])
|
/third_party/openssl/test/ |
D | confdump.c | 19 STACK_OF(CONF_VALUE) *sect = NCONF_get_section(cnf, name); in dump_section() 23 for (i = 0; i < sk_CONF_VALUE_num(sect); i++) { in dump_section() 24 CONF_VALUE *cv = sk_CONF_VALUE_value(sect, i); in dump_section()
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
D | v3_pci.c | 259 STACK_OF(CONF_VALUE) *sect; in r2i_pci() 262 sect = X509V3_get_section(ctx, cnf->name + 1); in r2i_pci() 263 if (!sect) { in r2i_pci() 268 for (j = 0; success_p && j < sk_CONF_VALUE_num(sect); j++) { in r2i_pci() 270 process_pci_value(sk_CONF_VALUE_value(sect, j), in r2i_pci() 273 X509V3_section_free(ctx, sect); in r2i_pci()
|
/third_party/openssl/crypto/x509/ |
D | v3_pci.c | 259 STACK_OF(CONF_VALUE) *sect; in r2i_pci() 262 sect = X509V3_get_section(ctx, cnf->name + 1); in r2i_pci() 263 if (!sect) { in r2i_pci() 268 for (j = 0; success_p && j < sk_CONF_VALUE_num(sect); j++) { in r2i_pci() 270 process_pci_value(sk_CONF_VALUE_value(sect, j), in r2i_pci() 273 X509V3_section_free(ctx, sect); in r2i_pci()
|
D | v3_crld.c | 47 char *sect) in STACK_OF() 51 if (*sect == '@') in STACK_OF() 52 gnsect = X509V3_get_section(ctx, sect + 1); in STACK_OF() 54 gnsect = X509V3_parse_list(sect); in STACK_OF() 60 if (*sect == '@') in STACK_OF()
|
/third_party/vk-gl-cts/android/cts/main/vk-master-2021-03-01/ |
D | binding-model.txt | 30 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.1 31 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.2 32 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.3 33 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.4 34 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.5 35 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.6 36 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.7 37 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.8 38 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.9 84 …orset_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.uab.sect.noia.1 [all …]
|
/third_party/openssl/crypto/ |
D | provider_conf.c | 78 STACK_OF(CONF_VALUE) *sect; in provider_conf_params() 81 sect = NCONF_get_section(cnf, value); in provider_conf_params() 82 if (sect != NULL) { in provider_conf_params() 95 for (i = 0; i < sk_CONF_VALUE_num(sect); i++) { in provider_conf_params() 96 CONF_VALUE *sectconf = sk_CONF_VALUE_value(sect, i); in provider_conf_params()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | MachO.h | 1054 inline void swapStruct(section_64 §) { in swapStruct() argument 1055 sys::swapByteOrder(sect.addr); in swapStruct() 1056 sys::swapByteOrder(sect.size); in swapStruct() 1057 sys::swapByteOrder(sect.offset); in swapStruct() 1058 sys::swapByteOrder(sect.align); in swapStruct() 1059 sys::swapByteOrder(sect.reloff); in swapStruct() 1060 sys::swapByteOrder(sect.nreloc); in swapStruct() 1061 sys::swapByteOrder(sect.flags); in swapStruct() 1062 sys::swapByteOrder(sect.reserved1); in swapStruct() 1063 sys::swapByteOrder(sect.reserved2); in swapStruct() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/ |
D | provider_conf.c | 86 STACK_OF(CONF_VALUE) *sect; in provider_conf_params_internal() 90 sect = NCONF_get_section(cnf, value); in provider_conf_params_internal() 91 if (sect != NULL) { in provider_conf_params_internal() 123 for (i = 0; i < sk_CONF_VALUE_num(sect); i++) { in provider_conf_params_internal() 124 CONF_VALUE *sectconf = sk_CONF_VALUE_value(sect, i); in provider_conf_params_internal()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | MachO.h | 1085 inline void swapStruct(section_64 §) { in swapStruct() argument 1086 sys::swapByteOrder(sect.addr); in swapStruct() 1087 sys::swapByteOrder(sect.size); in swapStruct() 1088 sys::swapByteOrder(sect.offset); in swapStruct() 1089 sys::swapByteOrder(sect.align); in swapStruct() 1090 sys::swapByteOrder(sect.reloff); in swapStruct() 1091 sys::swapByteOrder(sect.nreloc); in swapStruct() 1092 sys::swapByteOrder(sect.flags); in swapStruct() 1093 sys::swapByteOrder(sect.reserved1); in swapStruct() 1094 sys::swapByteOrder(sect.reserved2); in swapStruct() [all …]
|
/third_party/elfutils/tests/ |
D | run-dwfl-addr-sect.sh | 22 testrun_compare ${abs_builddir}/dwfl-addr-sect -e testfile43 0x64 0x8 0x98 <<\EOF 28 testrun_compare ${abs_builddir}/dwfl-addr-sect -e testfile50 0x1 <<\EOF
|
/third_party/node/deps/cares/include/ |
D | ares_dns_record.h | 649 ares_dns_section_t sect); 666 ares_dns_rr_t **rr_out, ares_dns_record_t *dnsrec, ares_dns_section_t sect, 678 ares_dns_section_t sect, 690 ares_dns_section_t sect,
|
/third_party/skia/src/effects/imagefilters/ |
D | SkArithmeticImageFilter.cpp | 175 SkIRect sect; in intersect() local 176 if (!sect.intersect(dstR, srcR)) { in intersect() 179 *dst = SkPixmap(dst->info().makeDimensions(sect.size()), in intersect() 180 dst->addr(sect.fLeft, sect.fTop), in intersect() 182 *src = SkPixmap(src->info().makeDimensions(sect.size()), in intersect()
|
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
D | asn1_gen.c | 406 STACK_OF(CONF_VALUE) *sect = NULL; in asn1_multi() 416 sect = X509V3_get_section(cnf, (char *)section); in asn1_multi() 417 if (!sect) in asn1_multi() 419 for (i = 0; i < sk_CONF_VALUE_num(sect); i++) { in asn1_multi() 421 generate_v3(sk_CONF_VALUE_value(sect, i)->value, cnf, in asn1_multi() 457 X509V3_section_free(cnf, sect); in asn1_multi()
|
/third_party/openssl/crypto/asn1/ |
D | asn1_gen.c | 406 STACK_OF(CONF_VALUE) *sect = NULL; in asn1_multi() 416 sect = X509V3_get_section(cnf, (char *)section); in asn1_multi() 417 if (!sect) in asn1_multi() 419 for (i = 0; i < sk_CONF_VALUE_num(sect); i++) { in asn1_multi() 421 generate_v3(sk_CONF_VALUE_value(sect, i)->value, cnf, in asn1_multi() 457 X509V3_section_free(cnf, sect); in asn1_multi()
|
/third_party/mesa3d/src/freedreno/perfcntrs/ |
D | fdperf.c | 823 config_setting_t *sect = in config_save() local 829 config_setting_t *s = config_setting_lookup(sect, name); in config_save() 866 config_setting_t *sect = in config_restore() local 869 if (!sect) { in config_restore() 870 sect = in config_restore() 877 config_setting_t *s = config_setting_lookup(sect, name); in config_restore() 879 config_setting_add(sect, name, CONFIG_TYPE_INT); in config_restore()
|
/third_party/vk-gl-cts/android/cts/master/vk-master-2021-03-01/ |
D | binding-model.txt | 30 dEQP-VK.binding_model.descriptor_update.acceleration_structure.ray_query.regular.sect 42 dEQP-VK.binding_model.descriptor_update.acceleration_structure.ray_query.with_template.sect 54 dEQP-VK.binding_model.descriptor_update.acceleration_structure.ray_query.with_push.sect 66 dEQP-VK.binding_model.descriptor_update.acceleration_structure.ray_query.with_push_template.sect 107 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.1 108 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.2 109 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.3 110 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.4 111 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.5 112 …set_random.sets4.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgtexlow.noiub.nouab.sect.noia.6 [all …]
|