Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindTable.cpp59 SectionSP sect = sl->FindSectionByType(eSectionTypeEHFrame, true); in Initialize() local
60 if (sect.get()) { in Initialize()
62 *object_file, sect, DWARFCallFrameInfo::EH); in Initialize()
65 sect = sl->FindSectionByType(eSectionTypeDWARFDebugFrame, true); in Initialize()
66 if (sect) { in Initialize()
68 *object_file, sect, DWARFCallFrameInfo::DWARF); in Initialize()
71 sect = sl->FindSectionByType(eSectionTypeCompactUnwind, true); in Initialize()
72 if (sect) { in Initialize()
74 std::make_unique<CompactUnwindInfo>(*object_file, sect); in Initialize()
77 sect = sl->FindSectionByType(eSectionTypeARMexidx, true); in Initialize()
[all …]
/freebsd/crypto/openssh/
H A Dkrl.c580 struct sshbuf *sect; in revoked_certs_generate() local
583 if ((sect = sshbuf_new()) == NULL) in revoked_certs_generate()
627 if ((r = put_bitmap(sect, bitmap)) != 0) in revoked_certs_generate()
634 (r = sshbuf_put_stringb(buf, sect)) != 0) in revoked_certs_generate()
636 sshbuf_reset(sect); in revoked_certs_generate()
644 sshbuf_reset(sect); in revoked_certs_generate()
655 if ((r = sshbuf_put_u64(sect, in revoked_certs_generate()
666 if ((r = sshbuf_put_u64(sect, rs->lo + i)) != 0) in revoked_certs_generate()
671 if ((r = sshbuf_put_u64(sect, rs->lo)) != 0 || in revoked_certs_generate()
672 (r = sshbuf_put_u64(sect, rs->hi)) != 0) in revoked_certs_generate()
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_i18n.cpp152 char const *expected = __kmp_i18n_default_table.sect[section].str[number]; in __kmp_i18n_do_catopen()
194 if (1 <= number && number <= __kmp_i18n_default_table.sect[section].size) { in __kmp_i18n_catgets()
200 __kmp_i18n_default_table.sect[section].str[number]); in __kmp_i18n_catgets()
203 message = __kmp_i18n_default_table.sect[section].str[number]; in __kmp_i18n_catgets()
266 for (m = 0; m < table->sect[s].size; ++m) { in kmp_i18n_table_free()
268 KMP_INTERNAL_FREE((void *)table->sect[s].str[m]); in kmp_i18n_table_free()
269 table->sect[s].str[m] = NULL; in kmp_i18n_table_free()
271 table->sect[s].size = 0; in kmp_i18n_table_free()
273 KMP_INTERNAL_FREE((void *)table->sect[s].str); in kmp_i18n_table_free()
274 table->sect[s].str = NULL; in kmp_i18n_table_free()
[all …]
/freebsd/usr.sbin/manctl/
H A Dmanctl.sh58 local sect
74 sect=$1
92 mv $pname $fname.$sect
193 local sect
207 sect=$1
210 case "$sect" in
247 local sect
261 sect=$1
264 case "$sect" in
/freebsd/usr.sbin/fstyp/
H A Dexfat.c137 read_sectn(FILE *fp, off_t sect, unsigned count, unsigned bytespersec) in read_sectn() argument
139 return (read_buf(fp, sect * bytespersec, bytespersec * count)); in read_sectn()
143 read_sect(FILE *fp, off_t sect, unsigned bytespersec) in read_sect() argument
145 return (read_sectn(fp, sect, 1, bytespersec)); in read_sect()
159 unsigned n, sect; in exfat_compute_boot_chksum() local
163 for (sect = 0; sect < 11; sect++) { in exfat_compute_boot_chksum()
164 sector = read_sect(fp, region + sect, bytespersec); in exfat_compute_boot_chksum()
168 if (sect == 0) { in exfat_compute_boot_chksum()
/freebsd/lib/libc/resolv/
H A Dres_findzonecut.c277 ns_sect sect; in get_soa() local
309 sect = ns_s_max, n = 0; in get_soa()
315 sect = ns_s_an, n = ancount; in get_soa()
317 sect = ns_s_ns, n = nscount; in get_soa()
319 sect = ns_s_max, n = 0; in get_soa()
326 if (ns_parserr(&msg, sect, i, &rr) < 0) { in get_soa()
328 p_section(sect, ns_o_query), i)); in get_soa()
338 switch (sect) { in get_soa()
518 save_ns(res_state statp, ns_msg *msg, ns_sect sect, in save_ns() argument
524 for (i = 0; i < ns_msg_count(*msg, sect); i++) { in save_ns()
[all …]
/freebsd/crypto/openssl/demos/bio/
H A 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()
H A 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()
/freebsd/contrib/llvm-project/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c184 struct section_64 sect; in scan_macho_load_commands() local
185 memset(&sect, 0, sizeof(struct section_64)); in scan_macho_load_commands()
186 memcpy(&sect, offset, sizeof(struct section_64)); in scan_macho_load_commands()
188 baton->mach_header_start + sect.offset; in scan_macho_load_commands()
190 struct section sect; in scan_macho_load_commands() local
191 memset(&sect, 0, sizeof(struct section)); in scan_macho_load_commands()
192 memcpy(&sect, offset, sizeof(struct section)); in scan_macho_load_commands()
194 baton->mach_header_start + sect.offset; in scan_macho_load_commands()
199 struct section_64 sect; in scan_macho_load_commands() local
200 memset(&sect, 0, sizeof(struct section_64)); in scan_macho_load_commands()
[all …]
/freebsd/crypto/openssl/crypto/conf/
H A 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()
/freebsd/sys/dev/ice/
H A Dice_vlan_mode.c44 struct ice_meta_init_section *sect; in ice_pkg_get_supported_vlan_mode() local
53 meta_init_size, (void **)&sect); in ice_pkg_get_supported_vlan_mode()
58 sect->count = CPU_TO_LE16(1); in ice_pkg_get_supported_vlan_mode()
59 sect->offset = CPU_TO_LE16(ICE_META_VLAN_MODE_ENTRY); in ice_pkg_get_supported_vlan_mode()
71 arr[i] = LE32_TO_CPU(sect->entry[0].bm[i]); in ice_pkg_get_supported_vlan_mode()
/freebsd/crypto/openssl/test/
H A 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()
/freebsd/crypto/openssl/crypto/x509/
H A 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()
H A 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()
/freebsd/contrib/mandoc/
H A Ddbm.c51 int32_t sect; member
155 res.sect = dbm_get(pages[ip].sect); in dbm_page_get()
156 if (res.sect == NULL) in dbm_page_get()
157 res.sect = "(NULL)\0"; in dbm_page_get()
253 cp = dbm_get(pages[0].sect); in page_bytitle()
/freebsd/lib/libc/nameser/
H A Dns_parse.c37 static void setsection(ns_msg *msg, ns_sect sect);
262 setsection(ns_msg *msg, ns_sect sect) { in setsection() argument
263 msg->_sect = sect; in setsection()
264 if (sect == ns_s_max) { in setsection()
269 msg->_msg_ptr = msg->_sections[(int)sect]; in setsection()
/freebsd/crypto/openssl/crypto/
H A 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()
/freebsd/usr.bin/man/
H A Dman.sh502 local found_page locpath p path sect
527 for sect in $MANSECT; do
528 decho "Searching section $sect" 2
535 if find_file $p $sect $MACHINE "$1"; then
549 if find_file $p $sect $MACHINE_ARCH "$1"; then
562 if find_file $p $sect '' "$1"; then
1037 for sect in $MANSECT; do
1038 if [ "$sect" = "$1" ]; then
/freebsd/contrib/openpam/misc/
H A Dgendoc.pl226 my ($page, $sect) = ($1, $2 ? int($2) : 3);
227 ++$xref{$sect}->{$page};
419 foreach my $sect (sort(keys(%{$xref}))) {
420 foreach my $page (sort(dictionary_order keys(%{$xref->{$sect}}))) {
421 push(@refs, "$page $sect");
/freebsd/lib/geom/virstor/
H A Dgeom_virstor.c153 unsigned char *sect; in virstor_label() local
421 sect = calloc(ssize, sizeof(unsigned char)); in virstor_label()
422 if (sect == NULL) in virstor_label()
424 virstor_metadata_encode(&md, sect); in virstor_label()
425 error = g_metadata_store(name, sect, ssize); in virstor_label()
426 free(sect); in virstor_label()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h1223 inline void swapStruct(section_64 &sect) {
1224 sys::swapByteOrder(sect.addr); in swapStruct() argument
1225 sys::swapByteOrder(sect.size); in swapStruct()
1226 sys::swapByteOrder(sect.offset); in swapStruct()
1227 sys::swapByteOrder(sect.align); in swapStruct()
1228 sys::swapByteOrder(sect.reloff); in swapStruct()
1229 sys::swapByteOrder(sect.nreloc); in swapStruct()
1230 sys::swapByteOrder(sect.flags); in swapStruct()
1231 sys::swapByteOrder(sect.reserved1); in swapStruct()
1232 sys::swapByteOrder(sect in swapStruct()
1236 swapStruct(section & sect) swapStruct() argument
[all...]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp494 size_t SectionList::FindSectionIndex(const Section *sect) { in FindSectionIndex() argument
499 if (sect_iter->get() == sect) { in FindSectionIndex()
618 Section *sect = sect_iter->get(); in FindSectionContainingFileAddress() local
619 if (sect->ContainsFileAddress(vm_addr)) { in FindSectionContainingFileAddress()
624 sect_sp = sect->GetChildren().FindSectionContainingFileAddress( in FindSectionContainingFileAddress()
627 if (sect_sp.get() == nullptr && !sect->IsFake()) in FindSectionContainingFileAddress()
/freebsd/crypto/openssh/regress/unittests/sshkey/
H A Dtest_sshkey.c44 struct sshbuf *sect; in put_opt() local
46 sect = sshbuf_new(); in put_opt()
47 ASSERT_PTR_NE(sect, NULL); in put_opt()
50 ASSERT_INT_EQ(sshbuf_put_cstring(sect, value), 0); in put_opt()
51 ASSERT_INT_EQ(sshbuf_put_stringb(b, sect), 0); in put_opt()
52 sshbuf_free(sect); in put_opt()
/freebsd/crypto/openssl/crypto/asn1/
H A 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()
/freebsd/contrib/ntp/sntp/ag-tpl/0-old/
H A Dagmdoc-cmd.tpl35 "\n.Dt " UP-PROG-NAME " " man-sect " " section-name
45 (get "prog-name") "." man-sect)) :+][+:

12