/ndk/sources/host-tools/make-3.81/ |
D | strcache.c | 98 str_hash_1 (const void *key) in str_hash_1() argument 100 return_ISTRING_HASH_1 ((const char *) key); in str_hash_1() 104 str_hash_2 (const void *key) in str_hash_2() argument 106 return_ISTRING_HASH_2 ((const char *) key); in str_hash_2() 122 const char *key = *slot; in add_hash() local 124 if (!HASH_VACANT (key)) in add_hash() 125 return key; in add_hash() 128 key = add_string (str, len); in add_hash() 129 hash_insert_at (&strings, key, slot); in add_hash() 130 return key; in add_hash() [all …]
|
D | dir.c | 246 struct directory_contents const *key = (struct directory_contents const *) key_0; in directory_contents_hash_1() local 251 ISTRING_HASH_1 (key->path_key, hash); in directory_contents_hash_1() 252 hash ^= ((unsigned int) key->dev << 4) ^ (unsigned int) key->ctime; in directory_contents_hash_1() 255 hash = (((unsigned int) key->dev << 4) in directory_contents_hash_1() 256 ^ ((unsigned int) key->ino[0] in directory_contents_hash_1() 257 + (unsigned int) key->ino[1] in directory_contents_hash_1() 258 + (unsigned int) key->ino[2])); in directory_contents_hash_1() 260 hash = ((unsigned int) key->dev << 4) ^ (unsigned int) key->ino; in directory_contents_hash_1() 269 struct directory_contents const *key = (struct directory_contents const *) key_0; in directory_contents_hash_2() local 274 ISTRING_HASH_2 (key->path_key, hash); in directory_contents_hash_2() [all …]
|
D | hash.c | 86 hash_find_slot (struct hash_table *ht, const void *key) in hash_find_slot() argument 91 unsigned int hash_1 = (*ht->ht_hash_1) (key); in hash_find_slot() 108 if (key == *slot) in hash_find_slot() 110 if ((*ht->ht_compare) (key, *slot) == 0) in hash_find_slot() 115 hash_2 = (*ht->ht_hash_2) (key) | 1; in hash_find_slot() 121 hash_find_item (struct hash_table *ht, const void *key) in hash_find_item() argument 123 void **slot = hash_find_slot (ht, key); in hash_find_item()
|
D | hash.h | 38 typedef unsigned long (*hash_func_t) __P((void const *key)); 64 void **hash_find_slot __P((struct hash_table *ht, void const *key)); 65 void *hash_find_item __P((struct hash_table *ht, void const *key));
|
D | ansi2knr.c | 511 char **key = words; local 515 while ( (kp = *key) != 0 ) 518 key++;
|
D | function.c | 45 struct function_table_entry const *key = (struct function_table_entry const *) keyv; in function_table_entry_hash_1() local 46 return_STRING_N_HASH_1 (key->name, key->len); in function_table_entry_hash_1() 52 struct function_table_entry const *key = (struct function_table_entry const *) keyv; in function_table_entry_hash_2() local 53 return_STRING_N_HASH_2 (key->name, key->len); in function_table_entry_hash_2() 889 a_word_hash_1 (const void *key) in a_word_hash_1() argument 891 return_STRING_HASH_1 (((struct a_word const *) key)->str); in a_word_hash_1() 895 a_word_hash_2 (const void *key) in a_word_hash_2() argument 897 return_STRING_HASH_2 (((struct a_word const *) key)->str); in a_word_hash_2()
|
D | variable.c | 108 struct variable const *key = (struct variable const *) keyv; in variable_hash_1() local 109 return_STRING_N_HASH_1 (key->name, key->length); in variable_hash_1() 115 struct variable const *key = (struct variable const *) keyv; in variable_hash_2() local 116 return_STRING_N_HASH_2 (key->name, key->length); in variable_hash_2()
|
D | file.c | 44 file_hash_1 (const void *key) in file_hash_1() argument 46 return_ISTRING_HASH_1 (((struct file const *) key)->hname); in file_hash_1() 50 file_hash_2 (const void *key) in file_hash_2() argument 52 return_ISTRING_HASH_2 (((struct file const *) key)->hname); in file_hash_2()
|
D | read.c | 1689 dep_hash_1 (const void *key) in dep_hash_1() argument 1691 return_STRING_HASH_1 (dep_name ((struct dep const *) key)); in dep_hash_1() 1695 dep_hash_2 (const void *key) in dep_hash_2() argument 1697 return_STRING_HASH_2 (dep_name ((struct dep const *) key)); in dep_hash_2()
|
D | configure | 10223 for (key in S) S_is_set[key] = 1 10233 key = field[i] 10234 keylen = length(key) 10235 if (S_is_set[key]) { 10236 value = S[key] 10244 key = field[2] 10245 if (F[key] != "" && line ~ /^[ ]*@.*@[ ]*$/) { 10353 for (key in D) D_is_set[key] = 1
|
/ndk/sources/host-tools/sed-4.2.1/build-aux/ |
D | help2man | 121 my $key; 129 $key = uc $1; 130 $key =~ s/^\s+//; 131 $key =~ s/\s+$//; 133 push @include, $key unless $include{$key}; 143 eval { $key = qr($pat) }; 157 unless ($key) 169 $hash->{$key} ||= ''; 170 $hash->{$key} .= $_; 176 unless $key;
|
/ndk/sources/cxx-stl/stlport/src/ |
D | messages.cpp | 29 void _Catalog_locale_map::insert(nl_catd_type key, const locale& L) { in insert() argument 46 M->insert(map_type::value_type(key, L)); in insert() 54 void _Catalog_locale_map::erase(nl_catd_type key) { in erase() argument 56 M->erase(key); in erase() 59 locale _Catalog_locale_map::lookup(nl_catd_type key) const { in lookup() 61 map_type::const_iterator i = M->find(key); in lookup()
|
D | message_facets.h | 39 void insert(nl_catd_type key, const locale& L); 40 locale lookup(nl_catd_type key) const; 41 void erase(nl_catd_type key);
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | hash_test.cpp | 268 int key = (id % 3 == 0 ? 3 : id); in hmmap2() local 271 h.insert(make_pair(key, id)); in hmmap2() 272 m.insert(make_pair(key, id)); in hmmap2()
|
D | unordered_test.cpp | 528 size_t operator () (Key key) const in operator ()() 529 { return (size_t)key.m_data; } in operator ()() 549 size_t operator () (Key const volatile *key) const in operator ()() 550 { return (size_t)key->m_data; } in operator ()()
|
/ndk/tests/device/test-stlport/unit/ |
D | hash_test.cpp | 268 int key = (id % 3 == 0 ? 3 : id); in hmmap2() local 271 h.insert(make_pair(key, id)); in hmmap2() 272 m.insert(make_pair(key, id)); in hmmap2()
|
D | unordered_test.cpp | 528 size_t operator () (Key key) const in operator ()() 529 { return (size_t)key.m_data; } in operator ()() 549 size_t operator () (Key const volatile *key) const in operator ()() 550 { return (size_t)key->m_data; } in operator ()()
|
/ndk/build/gmsl/ |
D | __gmsl | 745 # 2: The key value to associate 746 # 3: The value associated with the key 754 # 2: The key to retrieve 755 # Returns: The value stored in the array for that key 771 # 2: The key to test 772 # Returns: Returns true if the key is defined (i.e. not empty)
|
/ndk/sources/host-tools/make-3.81/po/ |
D | ja.po | 134 msgid "# %s (key %s, mtime %d): could not be opened.\n" 135 msgstr "# %s (key %s, mtime %d): �����ޤ���Ǥ���.\n" 149 msgid "# %s (key %s, mtime %d): " 150 msgstr "# %s (key %s, mtime %d): "
|
D | he.po | 136 msgid "# %s (key %s, mtime %d): could not be opened.\n" 137 msgstr "# %s (key %s, mtime %d): could not be opened.\n" 151 msgid "# %s (key %s, mtime %d): " 152 msgstr "# %s (key %s, mtime %d): "
|
D | id.po | 133 msgid "# %s (key %s, mtime %d): could not be opened.\n" 134 msgstr "# %s (key %s, mtime %d): tidak dapat dibuka.\n" 148 msgid "# %s (key %s, mtime %d): " 149 msgstr "# %s (key %s, mtime %d): "
|
D | de.po | 148 msgid "# %s (key %s, mtime %d): could not be opened.\n" 150 "# %s ( Schl�ssel (key) %s, letzte �nderung (mtime) %d): \n" 169 msgid "# %s (key %s, mtime %d): " 170 msgstr "# %s (Schl�ssel (key) %s, letzte �nderung (mtime) %d): "
|
D | tr.po | 133 msgid "# %s (key %s, mtime %d): could not be opened.\n" 134 msgstr "# %s (anahtar (key) %s, değişiklik tarihi (mtime) %d): açılamadı.\n" 148 msgid "# %s (key %s, mtime %d): " 149 msgstr "# %s (anahtar (key) %s, değişiklik tarihi (mtime) %d):"
|
D | make.pot | 132 msgid "# %s (key %s, mtime %d): could not be opened.\n" 147 msgid "# %s (key %s, mtime %d): "
|
D | be.po | 133 msgid "# %s (key %s, mtime %d): could not be opened.\n" 148 msgid "# %s (key %s, mtime %d): "
|