Home | History | Annotate | Download | only in liblegacy

Lines Matching full:hash

27 /* hash map device mmap */
48 perror("oprofiled: couldn't mmap hash map");
96 * get_from_pool - retrieve string from hash map pool
106 * opg_get_hash_name - find a mapping name from a hash
107 * @param hash hash value for this name
109 static char const * opd_get_hash_name(int hash)
113 int orighash = hash;
115 if (hash_name[hash])
116 return hash_name[hash];
119 while (hash) {
120 char * name = get_from_pool(hashmap[hash].name);
132 hash = hashmap[hash].parent;
143 int hash;
153 hash = note->hash;
155 if (hash == -1) {
160 if (hash < 0 || hash >= OP_HASH_MAP_NR) {
161 fprintf(stderr, "hash value %u out of range.\n", hash);
165 name = opd_get_hash_name(hash);