Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/ncurses/include/
H A Dtic.h184 typedef short HashValue; typedef
195 HashValue nte_index; /* index of associated variable in its array */
196 HashValue nte_link; /* index in table of next hash, or -1 */
204 const HashValue *table_data;
205 HashValue (*hash_of)(const char *);
229 HashValue ute_index; /* index of associated variable in its array */
230 HashValue ute_link; /* index in table of next hash, or -1 */
377 (const char *, const HashValue *) NCURSES_TACK_1_08;
378 extern NCURSES_EXPORT(const HashValue *) _nc_get_hash_table (bool) NCURSES_TACK_1_08;
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp39 Uniques.push_back(E.second.HashValue); in computeBucketCount()
85 return LHS->HashValue < RHS->HashValue; in finalize()
251 uint32_t HashValue = Hash->HashValue; in emitHashes() local
255 Asm->emitInt32(HashValue); in emitHashes()
256 PrevHash = HashValue; in emitHashes()
267 uint32_t HashValue = Hash->HashValue; in emitOffsets() local
270 PrevHash = HashValue; in emitOffsets()
319 uint32_t HashValue = HD->HashValue; in emitBuckets() local
320 if (PrevHash != HashValue) in emitBuckets()
322 PrevHash = HashValue; in emitBuckets()
[all …]
/freebsd-13.1/contrib/llvm-project/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.cpp97 static __ubsan::HashValue *getTypeCacheHashTableBucket(__ubsan::HashValue V) { in getTypeCacheHashTableBucket()
99 static __ubsan::HashValue __ubsan_vptr_hash_set[HashTableSize]; in getTypeCacheHashTableBucket()
211 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) { in checkDynamicType()
216 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()
/freebsd-13.1/contrib/ncurses/ncurses/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.c57 const HashValue * hash_table) in NCURSES_EXPORT()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAccelTable.h143 uint32_t HashValue; member
148 : Name(Name), HashValue(Hash(Name.getString())) {} in HashData()
H A DSelectionDAG.h100 unsigned HashValue;
105 HashValue = ID.ComputeHash();
123 if (X.HashValue != IDHash)
129 return X.HashValue;
/freebsd-13.1/contrib/ncurses/ncurses/
H A Dllib-ltinfo119 const HashValue *_nc_get_hash_table(
121 { return(*(const HashValue **)0); }
184 const HashValue *hash_table)
H A Dllib-ltinfot124 const HashValue *_nc_get_hash_table(
126 { return(*(const HashValue **)0); }
189 const HashValue *hash_table)
H A Dllib-ltinfow131 const HashValue *_nc_get_hash_table(
133 { return(*(const HashValue **)0); }
196 const HashValue *hash_table)
H A Dllib-ltinfotw136 const HashValue *_nc_get_hash_table(
138 { return(*(const HashValue **)0); }
201 const HashValue *hash_table)
H A Dllib-lncurses2848 const HashValue *_nc_get_hash_table(
2850 { return(*(const HashValue **)0); }
2913 const HashValue *hash_table)
H A Dllib-lncursest2862 const HashValue *_nc_get_hash_table(
2864 { return(*(const HashValue **)0); }
2927 const HashValue *hash_table)
H A Dllib-lncursestw3801 const HashValue *_nc_get_hash_table(
3803 { return(*(const HashValue **)0); }
3866 const HashValue *hash_table)
H A Dllib-lncursesw3787 const HashValue *_nc_get_hash_table(
3789 { return(*(const HashValue **)0); }
3852 const HashValue *hash_table)
/freebsd-13.1/contrib/llvm-project/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()