Home
last modified time | relevance | path

Searched refs:hash_table_size (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/mesa/main/
Dget_hash_generator.py44 hash_table_size = 1024 variable
49 print "typedef const unsigned short table_t[%d];\n" % (hash_table_size)
84 dense_table = [0] * hash_table_size
89 for i in range(0, hash_table_size, row_size):
129 index = hash_val & (hash_table_size - 1)
/external/v8/src/objects/
Dordered-hash-table.h339 int hash_table_size = capacity / kLoadFactor; in SizeFor() local
341 int total_size = kDataTableStartOffset + data_table_size + hash_table_size + in SizeFor()
431 int hash_table_size = nof_buckets; in GetChainTableOffset() local
432 return kDataTableStartOffset + data_table_size + hash_table_size; in GetChainTableOffset()
/external/v8/src/
Dcode-stub-assembler.cc3487 TNode<Int32T> hash_table_size = in AllocateSmallOrderedHashTable() local
3495 IntPtrAdd(ChangeInt32ToIntPtr(hash_table_size), capacity); in AllocateSmallOrderedHashTable()
3518 Word32And(Int32Constant(0xFF), hash_table_size)); in AllocateSmallOrderedHashTable()