Home
last modified time | relevance | path

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

/third_party/mesa3d/src/mesa/main/
Dget_hash_generator.py43 hash_table_size = 1024 variable
48 print("typedef const unsigned short table_t[%d];\n" % (hash_table_size))
83 dense_table = [0] * hash_table_size
88 for i in range(0, hash_table_size, row_size):
128 index = hash_val & (hash_table_size - 1)
/third_party/boost/libs/locale/src/util/
Dcodecvt_converter.cpp85 static const int hash_table_size = 1024; member in boost::locale::util::simple_converter_impl
108 for(int i=0;i<hash_table_size;i++) in simple_converter_impl()
112 unsigned pos = to_unicode_tbl_[i] % hash_table_size; in simple_converter_impl()
114 pos = (pos + 1) % hash_table_size; in simple_converter_impl()
135 unsigned pos = u % hash_table_size; in from_unicode()
138 pos = (pos + 1) % hash_table_size; in from_unicode()
146 unsigned char from_unicode_tbl_[hash_table_size];
/third_party/mindspore/mindspore/ccsrc/ps/ps_cache/
Dps_cache_manager.cc1098 auto hash_table_size = hash_info.device_address.size; in SyncDeviceEmbeddingTable() local
1100 … hash_table_addr, hash_table_size)); in SyncDeviceEmbeddingTable()