| /openbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | cp-abi.c | 30 static struct cp_abi_ops *find_cp_abi (const char *short_name); 100 switch_to_cp_abi (const char *short_name) in switch_to_cp_abi() argument 104 abi = find_cp_abi (short_name); in switch_to_cp_abi() 129 set_cp_abi_as_auto_default (const char *short_name) in set_cp_abi_as_auto_default() argument 132 struct cp_abi_ops *abi = find_cp_abi (short_name); in set_cp_abi_as_auto_default() 137 short_name); in set_cp_abi_as_auto_default() 167 find_cp_abi (const char *short_name) in find_cp_abi() argument 172 if (strcmp (cp_abis[i]->shortname, short_name) == 0) in find_cp_abi()
|
| D | cp-abi.h | 169 extern void set_cp_abi_as_auto_default (const char *short_name);
|
| /openbsd/src/gnu/usr.sbin/mkhybrid/src/ |
| D | tree.c | 1024 char *, short_name, argument 1030 char *, short_name) 1057 if(this_dir == root && strcmp(short_name, ".") == 0) 1061 if(this_dir == root && strcmp(short_name, "..") == 0) 1113 if( strcmp(short_name, ".") 1114 && strcmp(short_name, "..") ) 1153 && strcmp(short_name, ".") 1154 && strcmp(short_name, "..") 1179 && strcmp(short_name, ".") 1180 && strcmp(short_name, "..") ) [all …]
|
| D | mkisofs.c | 1356 char * short_name; in FDECL2() local 1389 short_name = NULL; in FDECL2() 1424 short_name = xpnt; in FDECL2() 1472 if( short_name == NULL ) in FDECL2() 1474 short_name = strrchr(node, PATH_SEPARATOR); in FDECL2() 1475 if( short_name == NULL || short_name < node ) in FDECL2() 1477 short_name = node; in FDECL2() 1481 short_name++; in FDECL2() 1485 if( !insert_file_entry(graft_dir, node, short_name, 0) ) in FDECL2() 1487 if( !insert_file_entry(graft_dir, node, short_name) ) in FDECL2()
|
| /openbsd/src/usr.sbin/nsd/ |
| D | tsig.h | 40 const char* short_name; member 52 const char *short_name; member
|
| D | tsig.c | 246 if (tsig_strlowercmp(name, algorithm_entry->algorithm->short_name) == 0) in tsig_get_algorithm_by_name() 250 …ac-", algorithm_entry->algorithm->short_name, 5) == 0 && tsig_strlowercmp(name, algorithm_entry->a… in tsig_get_algorithm_by_name()
|
| D | tsig-openssl.c | 106 algorithm->short_name = name; in tsig_openssl_init_algorithm()
|
| D | options.c | 2189 if(tsig_strlowercmp(q->tsig.algorithm->short_name, in acl_key_matches() 2191 strncmp("hmac-", q->tsig.algorithm->short_name, 5) != 0 || in acl_key_matches() 2192 tsig_strlowercmp(q->tsig.algorithm->short_name+5, in acl_key_matches()
|
| /openbsd/src/gnu/usr.bin/perl/regen/ |
| D | mk_invlists.pl | 417 my $short_name = (prop_aliases($prop_name))[0] // $prop_name; 650 $short_name = uc($short_name) if length($short_name) < 3 651 || substr($short_name, 0, 1) =~ /[[:lower:]]/; 652 $name_prefix = "${short_name}_"; 853 if (lc $short_name eq 'scx') { 3192 my ($short_name) = prop_aliases($property); 3193 $short_name = lc $short_name; 3194 $short_name =~ s/[ _-]//g; 3197 foreach my $value (prop_values($short_name)) { 3200 foreach my $alias (prop_value_aliases($short_name, $value)) { [all …]
|
| /openbsd/src/gnu/usr.bin/perl/lib/Unicode/ |
| D | UCD.t | 936 my $short_name; 968 $short_name = $alias; 974 if ($alias ne $short_name) { 976 …l, \@names_via_short, "prop_aliases() returns the same list for both '$short_name' and '$mod_name'… 980 is(prop_aliases($short_name), $alias, 981 "prop_aliases: '$alias' is the long name for '$short_name'"); 984 …s, \@names_via_short, "prop_aliases() returns the same list for both '$short_name' and '$mod_name'… 1147 my $short_name; 1215 $short_name = $value; 1221 if ($value ne $short_name) { [all …]
|
| /openbsd/src/gnu/usr.bin/perl/lib/unicore/ |
| D | mktables | 5252 my %short_name; 5254 main::set_access('short_name', \%short_name); 5658 undef $short_name{pack 'J', refaddr $self}; 5662 sub short_name($self, $nominal_length_ptr=undef) { 5682 if (defined $short_name{$addr}) { 5686 return $short_name{$addr}; 5705 if ( ! defined $short_name{$addr} 5709 && length($name) < length($short_name{$addr}))) 5712 ($short_name{$addr} = $name) =~ s/ (?<= . ) _ (?= . ) //xg; 5722 && ( ! defined $short_name{$addr} [all …]
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/ |
| D | lldb-private-types.h | 83 const char *short_name; member
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
| D | RegisterContextDummy.cpp | 41 m_reg_set0.short_name = "GPR"; in RegisterContextDummy()
|
| D | RegisterContextHistory.cpp | 42 m_reg_set0.short_name = "GPR"; in RegisterContextHistory()
|
| /openbsd/src/gnu/usr.bin/texinfo/util/ |
| D | texindex.c | 245 char *short_name; member 284 if (texindex_options[i].short_name) in usage() 285 fprintf (f, "%s, ", texindex_options[i].short_name); in usage()
|
| /openbsd/src/gnu/llvm/lldb/source/API/ |
| D | SBFrame.cpp | 642 llvm::StringRef(reg_set->short_name) in FindValue()
|