/external/oprofile/daemon/liblegacy/ |
opd_mapping.c | 28 static struct op_hash_index * hashmap; variable in typeref:struct:op_hash_index 46 hashmap = mmap(0, OP_HASH_MAP_SIZE, PROT_READ, MAP_SHARED, hashmapdevfd, 0); 47 if ((long)hashmap == -1) { 101 return ((char *)(hashmap + OP_HASH_MAP_NR) + ind); 120 char * name = get_from_pool(hashmap[hash].name); 132 hash = hashmap[hash].parent;
|
/external/srec/srec/Semproc/src/ |
SymbolTable.c | 43 CHKLOG(rc, HashMapCreate(&(*ptr)->hashmap)); 68 if (self->hashmap) 69 CHKLOG(rc, HashMapDestroy(self->hashmap)); 92 rc = HashMapGet(self->hashmap, key, (void**) & buf); 102 CHKLOG(rc, HashMapPut(self->hashmap, symbol->key, symbol->value)); 121 ESR_ReturnCode ST_Copy(SymbolTable* self, HashMap* dst) 131 HashMapGetSize(self->hashmap, &size); 134 HashMapGetKeyAtIndex(self->hashmap, i, &pkey); 135 HashMapGet(self->hashmap, pkey, (void **)&pvalue); 161 rc = HashMapGet(self->hashmap, key, (void**)value) [all...] |
ExpressionParser.c | 102 HashMap** hashmap) 152 CHKLOG(rc, ST_Copy(symtable, *hashmap)); 154 *hashmap = NULL; /* don't give access to hashtable if something went wrong */
|
/external/srec/srec/Semproc/include/ |
SR_ExpressionParser.h | 132 HashMap *pfunctions; 188 * @param hashmap pointer to a hashmap used to store the results of processing 192 HashMap** hashmap);
|
SR_SymbolTable.h | 30 #include "HashMap.h" 60 * Keep track of symbols using a hashmap of pointers 62 HashMap* hashmap; member in struct:SymbolTable_t 105 * Copies the symbols to a new hashmap (creates values dynamically) 107 * @param dst destination hashmap 109 ESR_ReturnCode ST_Copy(SymbolTable* self, HashMap* dst);
|
/external/srec/tools/grxmlcompile/ |
Android.mk | 20 hashmap.cpp \
|
/system/core/libcutils/ |
Android.mk | 28 hashmap.c \ 160 LOCAL_SRC_FILES := str_parms.c hashmap.c memory.c
|
str_parms.c | 27 #include <cutils/hashmap.h> 34 Hashmap *map;
|
hashmap.c | 17 #include <cutils/hashmap.h> 34 struct Hashmap { 43 Hashmap* hashmapCreate(size_t initialCapacity, 48 Hashmap* map = malloc(sizeof(Hashmap)); 80 static inline int hashKey(Hashmap* map, void* key) { 93 size_t hashmapSize(Hashmap* map) { 101 static void expandIfNecessary(Hashmap* map) { 132 void hashmapLock(Hashmap* map) { 136 void hashmapUnlock(Hashmap* map) [all...] |
mq.c | 33 #include <cutils/hashmap.h> 138 Hashmap* peerProxies; 198 Hashmap* connections; [all...] |
/libcore/luni/src/test/java/tests/api/java/util/ |
HashMapTest.java | 45 HashMap hm; 54 * java.util.HashMap#HashMap() 57 // Test for method java.util.HashMap() 58 new Support_MapTest2(new HashMap()).runTest(); 60 HashMap hm2 = new HashMap(); 61 assertEquals("Created incorrect HashMap", 0, hm2.size()); 65 * java.util.HashMap#HashMap(int 170 HashMap hashmap = new HashMap(); local [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
HashMapTest.java | 27 import java.util.HashMap; 96 HashMap hm; 113 * @tests java.util.HashMap#HashMap() 116 // Test for method java.util.HashMap() 117 new Support_MapTest2(new HashMap()).runTest(); 119 HashMap hm2 = new HashMap(); 120 assertEquals("Created incorrect HashMap", 0, hm2.size()); 124 * @tests java.util.HashMap#HashMap(int 250 HashMap hashmap = new HashMap(); local [all...] |