Home
last modified time | relevance | path

Searched refs:sect (Results 1 – 25 of 75) sorted by relevance

123

/third_party/openssl/demos/bio/
Dclient-conf.c24 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()
Dserver-conf.c32 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/
Dff.c924 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/
DPathOpsCubicLineIntersectionTest.cpp167 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/
Dconf_ssl.c87 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/
Dconf_ssl.c87 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/
Dares_dns_record.c304 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 …]
Dares_qcache.c238 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.py185 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/
Dconfdump.c19 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/
Dv3_pci.c259 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/
Dv3_pci.c259 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()
Dv3_crld.c47 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/
Dbinding-model.txt30 …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/
Dprovider_conf.c78 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/
DMachO.h1054 inline void swapStruct(section_64 &sect) { 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/
Dprovider_conf.c86 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/
DMachO.h1085 inline void swapStruct(section_64 &sect) { 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/
Drun-dwfl-addr-sect.sh22 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/
Dares_dns_record.h649 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/
DSkArithmeticImageFilter.cpp175 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/
Dasn1_gen.c406 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/
Dasn1_gen.c406 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/
Dfdperf.c823 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/
Dbinding-model.txt30 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 …]

123