Home
last modified time | relevance | path

Searched refs:HashValue (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/lib/libcurses/
H A Dtic.h185 typedef short HashValue; typedef
196 HashValue nte_index; /* index of associated variable in its array */
197 HashValue nte_link; /* index in table of next hash, or -1 */
205 const HashValue *table_data;
206 HashValue (*hash_of)(const char *);
230 HashValue ute_index; /* index of associated variable in its array */
231 HashValue ute_link; /* index in table of next hash, or -1 */
357 (const char *, const HashValue *);
358 extern NCURSES_EXPORT(const HashValue *) _nc_get_hash_table (bool);
H A Dreport_hashing.c44 const HashValue *hash_table = _nc_get_hash_table(termcap); in check_names()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp38 Uniques.push_back(E.second.HashValue); in computeBucketCount()
75 uint32_t Bucket = E.second.HashValue % BucketCount; in finalize()
84 return LHS->HashValue < RHS->HashValue; in finalize()
250 uint32_t HashValue = Hash->HashValue; in emitHashes() local
251 if (SkipIdenticalHashes && PrevHash == HashValue) in emitHashes()
254 Asm->emitInt32(HashValue); in emitHashes()
255 PrevHash = HashValue; in emitHashes()
266 uint32_t HashValue = Hash->HashValue; in emitOffsets() local
267 if (SkipIdenticalHashes && PrevHash == HashValue) in emitOffsets()
269 PrevHash = HashValue; in emitOffsets()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/ubsan/
H A Dubsan_type_hash.h19 typedef uptr HashValue; typedef
51 bool checkDynamicType(void *Object, void *Type, HashValue Hash);
65 HashValue __ubsan_vptr_type_cache[VptrTypeCacheSize];
H A Dubsan_type_hash_itanium.cpp109 static __ubsan::HashValue *getTypeCacheHashTableBucket(__ubsan::HashValue V) { in getTypeCacheHashTableBucket()
111 static __ubsan::HashValue __ubsan_vptr_hash_set[HashTableSize]; in getTypeCacheHashTableBucket()
223 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) { in checkDynamicType()
228 HashValue *Bucket = getTypeCacheHashTableBucket(Hash); in checkDynamicType()
H A Dubsan_type_hash.cpp25 __ubsan::HashValue
H A Dubsan_type_hash_win.cpp40 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) { in checkDynamicType()
/openbsd-src/lib/libcurses/tinfo/
H A DMKcaptab.sh157 NCURSES_EXPORT(const HashValue *)
169 static HashValue
181 return (HashValue) (sum % HASHTABSIZE);
186 static HashValue
H A Dmake_hash.c115 HashValue * hash_table, in _nc_make_hash_table()
134 hash_table[hashvalue] = (HashValue) i; in _nc_make_hash_table()
252 HashValue *hash_table = typeCalloc(HashValue, HASHTABSIZE); in main()
H A DMKuserdefs.sh103 static HashValue
115 return (HashValue) (sum % HASHTABSIZE);
H A Dcomp_hash.c58 const HashValue * hash_table) in NCURSES_EXPORT()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DAccelTable.h141 uint32_t HashValue; member
146 : Name(Name), HashValue(Hash(Name.getString())) {} in HashData()
H A DSelectionDAG.h105 unsigned HashValue;
110 HashValue = ID.ComputeHash();
128 if (X.HashValue != IDHash)
134 return X.HashValue;
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp334 unsigned HashValue = djbHash(Key); in equal_range() local
335 unsigned Bucket = HashValue % Hdr.BucketCount; in equal_range()