HomeSort by: relevance | last modified time | path
    Searched refs:name_map (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/gpl3/gdb/dist/sim/igen/
misc.h 101 name_map; typedef in typeref:struct:_name_map
103 extern int name2i (const char *name, const name_map * map);
105 extern const char *i2name (const int i, const name_map * map);
misc.c 211 name2i (const char *names, const name_map * map)
213 const name_map *curr;
254 i2name (const int i, const name_map * map)
ld-decode.c 35 static const name_map decode_type_map[] = {
41 static const name_map decode_gen_map[] = {
49 static const name_map decode_reserved_map[] = {
54 static const name_map decode_duplicates_map[] = {
59 static const name_map decode_combine_map[] = {
65 static const name_map decode_search_map[] = {
ld-cache.c 44 static const name_map cache_type_map[] = {
ld-insn.c 492 static const name_map insn_type_map[] = {
622 static const name_map option_map[] = {
  /src/external/gpl3/gdb.old/dist/sim/igen/
misc.h 101 name_map; typedef in typeref:struct:_name_map
103 extern int name2i (const char *name, const name_map * map);
105 extern const char *i2name (const int i, const name_map * map);
misc.c 211 name2i (const char *names, const name_map * map)
213 const name_map *curr;
254 i2name (const int i, const name_map * map)
ld-decode.c 35 static const name_map decode_type_map[] = {
41 static const name_map decode_gen_map[] = {
49 static const name_map decode_reserved_map[] = {
54 static const name_map decode_duplicates_map[] = {
59 static const name_map decode_combine_map[] = {
65 static const name_map decode_search_map[] = {
ld-cache.c 44 static const name_map cache_type_map[] = {
ld-insn.c 492 static const name_map insn_type_map[] = {
622 static const name_map option_map[] = {
  /src/crypto/external/bsd/heimdal/dist/lib/wind/
stringprep.py 48 name_map = ['B.1', 'B.2'] variable
71 _merge_table(d, dict(map(lambda x: [x, ['name']], name_map)))
  /src/external/gpl3/gdb/dist/sim/ppc/
ld-decode.c 42 static const name_map decode_type_map[] = {
49 static const name_map decode_gen_map[] = {
57 static const name_map decode_slash_map[] = {
ld-cache.c 37 static const name_map cache_type_map[] = {
  /src/external/gpl3/gdb.old/dist/sim/ppc/
ld-decode.c 42 static const name_map decode_type_map[] = {
49 static const name_map decode_gen_map[] = {
57 static const name_map decode_slash_map[] = {
ld-cache.c 37 static const name_map cache_type_map[] = {
  /src/crypto/external/apache2/openssl/dist/util/
find-doc-nits 875 my %name_map = ();
942 my %names = map { $_ => 1 } (keys %name_map, keys %state, keys %missing);
946 next if ( $name_map{$_} // '') eq '' || $_ =~ /$ignored/;
960 if ( $declared_public && $name_map{$_} =~ /\/internal\// );
962 if ( $declared_internal && $name_map{$_} !~ /\/internal\// );
983 next if defined $name_map{$macro}
1008 next if defined $name_map{$func}
1038 if ( !defined $name_map{$name_sec} ) {
1039 $name_map{$name_sec} = $filename;
1052 } elsif ( $filename eq $name_map{$name_sec} )
    [all...]
  /src/crypto/external/bsd/openssl/dist/util/
find-doc-nits 832 my %name_map = ();
891 my %names = map { $_ => 1 } (keys %name_map, keys %state, keys %missing);
895 next if ( $name_map{$_} // '') eq '' || $_ =~ /$ignored/;
909 if ( $declared_public && $name_map{$_} =~ /\/internal\// );
911 if ( $declared_internal && $name_map{$_} !~ /\/internal\// );
932 next if defined $name_map{$macro}
955 next if defined $name_map{$func}
985 if ( !defined $name_map{$name_sec} ) {
986 $name_map{$name_sec} = $filename;
990 } elsif ( $filename eq $name_map{$name_sec} )
    [all...]
  /src/external/gpl3/gcc/dist/libcpp/
files.cc 1724 quote->name_map = NULL;
1796 dir->name_map = XNEWVEC (const char *, room);
1813 dir->name_map = XRESIZEVEC (const char *, dir->name_map, room);
1816 dir->name_map[count] = read_filename_string (ch, f);
1822 dir->name_map[count + 1] = to;
1825 dir->name_map[count + 1] = append_file_to_dir (to, dir);
1839 dir->name_map[count] = NULL;
1858 if (!dir->name_map)
1861 for (index = 0; dir->name_map[index]; index += 2
    [all...]
  /src/external/gpl3/gcc.old/dist/libcpp/
files.cc 1702 quote->name_map = NULL;
1774 dir->name_map = XNEWVEC (const char *, room);
1791 dir->name_map = XRESIZEVEC (const char *, dir->name_map, room);
1794 dir->name_map[count] = read_filename_string (ch, f);
1800 dir->name_map[count + 1] = to;
1803 dir->name_map[count + 1] = append_file_to_dir (to, dir);
1817 dir->name_map[count] = NULL;
1836 if (!dir->name_map)
1839 for (index = 0; dir->name_map[index]; index += 2
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gcov.cc 497 class name_map class
500 name_map () function in class:name_map
504 name_map (char *_name, unsigned _src): name (_name), src (_src) function in class:name_map
508 bool operator== (const name_map &rhs) const
517 bool operator< (const name_map &rhs) const
540 static vector<name_map> names;
1615 name_map needle;
1617 vector<name_map>::iterator it
1819 name_map needle;
1822 vector<name_map>::iterator it = std::find (names.begin (), names.end ()
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gcov.cc 459 class name_map class
462 name_map () function in class:name_map
466 name_map (char *_name, unsigned _src): name (_name), src (_src) function in class:name_map
470 bool operator== (const name_map &rhs) const
479 bool operator< (const name_map &rhs) const
502 static vector<name_map> names;
1515 name_map needle;
1517 vector<name_map>::iterator it
1719 name_map needle;
1722 vector<name_map>::iterator it = std::find (names.begin (), names.end ()
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
message.c 1013 isc_ht_t *name_map = NULL; local
1016 isc_ht_init(&name_map, msg->mctx, 1, ISC_HT_CASE_INSENSITIVE);
1039 if (name_map == NULL) {
1050 result = name_hash_add(name_map, name, &name2);
1193 if (name_map != NULL) {
1194 isc_ht_destroy(&name_map);
1289 isc_ht_t *name_map = NULL; local
1292 isc_ht_init(&name_map, msg->mctx, 1, ISC_HT_CASE_INSENSITIVE);
1539 if (name_map == NULL) {
1550 result = name_hash_add(name_map, name, &name2)
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
message.c 1000 isc_hashmap_t *name_map = NULL; local
1003 isc_hashmap_create(msg->mctx, 1, &name_map);
1023 if (name_map == NULL) {
1034 result = isc_hashmap_add(name_map, dns_name_hash(name),
1173 if (name_map != NULL) {
1174 isc_hashmap_destroy(&name_map);
1213 isc_hashmap_t *name_map = NULL; local
1216 isc_hashmap_create(msg->mctx, 1, &name_map);
1462 if (name_map == NULL) {
1473 result = isc_hashmap_add(name_map, dns_name_hash(name)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/aarch64/
aarch64-sve-builtins.cc 1532 auto &name_map = overload_names[m_function_nulls]; local
1533 if (!name_map)
1534 name_map = hash_map<tree, registered_function *>::create_ggc ();
1538 if (registered_function **map_value = name_map->get (id))
1547 name_map->put (id, &rfn);
  /src/external/gpl3/gcc/dist/libcpp/include/
cpplib.h 839 const char **name_map; member in struct:cpp_dir

Completed in 70 milliseconds

1 2