/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/ |
gim_hash_table.h | 211 inline GUINT _find_cell(GUINT hashkey) 214 GUINT start_index = (hashkey%m_table_size)*m_node_size; 222 if(nodesptr[value].m_key == hashkey) return start_index; 229 //! Find the avaliable cell for the hashkey, and return an existing cell if it has the same hash key 230 inline GUINT _find_avaliable_cell(GUINT hashkey) 234 GUINT start_index = (hashkey%m_table_size)*m_node_size; 247 else if(nodesptr[value].m_key == hashkey) 344 inline GUINT _assign_hash_table_cell(GUINT hashkey) 346 GUINT cell_index = _find_avaliable_cell(hashkey); 352 GUINT cell_index = _find_avaliable_cell(hashkey); 470 GUINT hashkey = m_nodes[lastindex].m_key; local [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb2/ |
fields.py | 64 class HashKey(BaseSchemaField): 71 >>> HashKey('username') 72 >>> HashKey('date_joined', data_type=NUMBER) 85 >>> HashKey('username') 86 >>> HashKey('date_joined', data_type=NUMBER) 168 ... HashKey('username'), 183 ... HashKey('username'), 198 ... HashKey('username'), 275 ... HashKey('username'), 294 ... HashKey('username') [all...] |
/prebuilts/go/darwin-x86/src/runtime/ |
hash32.go | 27 h := uint32(seed + s*hashkey[0]) 55 v2 := uint32(hashkey[1]) 56 v3 := uint32(hashkey[2]) 57 v4 := uint32(hashkey[3])
|
hash64.go | 27 h := uint64(seed + s*hashkey[0]) 56 v2 := uint64(hashkey[1]) 57 v3 := uint64(hashkey[2]) 58 v4 := uint64(hashkey[3])
|
alg.go | 320 var hashkey [4]uintptr 337 getRandomData((*[len(hashkey) * ptrSize]byte)(unsafe.Pointer(&hashkey))[:]) 338 hashkey[0] |= 1 // make sure this number is odd
|
/prebuilts/go/linux-x86/src/runtime/ |
hash32.go | 27 h := uint32(seed + s*hashkey[0]) 55 v2 := uint32(hashkey[1]) 56 v3 := uint32(hashkey[2]) 57 v4 := uint32(hashkey[3])
|
hash64.go | 27 h := uint64(seed + s*hashkey[0]) 56 v2 := uint64(hashkey[1]) 57 v3 := uint64(hashkey[2]) 58 v4 := uint64(hashkey[3])
|
alg.go | 320 var hashkey [4]uintptr 337 getRandomData((*[len(hashkey) * ptrSize]byte)(unsafe.Pointer(&hashkey))[:]) 338 hashkey[0] |= 1 // make sure this number is odd
|
/system/core/libcutils/ |
hashmap.c | 83 static inline int hashKey(Hashmap* map, void* key) { 197 int hash = hashKey(map, key); 229 int hash = hashKey(map, key); 244 int hash = hashKey(map, key); 260 int hash = hashKey(map, key); 292 int hash = hashKey(map, key);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb/ |
batch.py | 34 table has both a HashKey and a RangeKey, each element in the 36 the schema for the table contains only a HashKey, each element 96 table has both a HashKey and a RangeKey, each element in the 98 the schema for the table contains only a HashKey, each element 152 table has both a HashKey and a RangeKey, each element in the 154 the schema for the table contains only a HashKey, each element 241 for the table has both a HashKey and a RangeKey, each 244 contains only a HashKey, each element in the list should
|
item.py | 31 :ivar hash_key: The HashKey of this item. 34 :ivar hash_key_name: The name of the HashKey associated with this item.
|
table.py | 261 :param hash_key: The HashKey of the requested item. The 299 :param hash_key: The HashKey of the requested item. The 361 :param hash_key: The HashKey of the new item. The 386 :param hash_key: The HashKey of the requested item. The 529 table has both a HashKey and a RangeKey, each element in the 531 the schema for the table contains only a HashKey, each element
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/dynamodb2/ |
test_highlevel.py | 31 from boto.dynamodb2.fields import (HashKey, RangeKey, KeysOnlyIndex, 50 HashKey('username'), 57 HashKey('username'), 327 HashKey('username') 335 # A single query term should fail on a table with *ONLY* a HashKey. 375 HashKey('user_id'), 401 HashKey('user_id'), 408 HashKey('user_id') 440 HashKey('user_id') 447 HashKey('username') [all...] |
/toolchain/binutils/binutils-2.25/gold/ |
stringpool.cc | 123 const Hashkey& h1, 124 const Hashkey& h2) const 256 std::pair<Hashkey, Hashval> element(Hashkey(s, length), k); 283 Hashkey hk(s, length); 298 std::pair<Hashkey, Hashval> element(hk, k); 313 Hashkey hk(s); 341 const Hashkey& h1(sort_info1->first); 342 const Hashkey& h2(sort_info2->first); 462 Hashkey hk(s, length) [all...] |
stringpool.h | 334 struct Hashkey 343 Hashkey() 349 explicit Hashkey(const Stringpool_char* s) 353 Hashkey(const Stringpool_char* s, size_t len) 363 operator()(const Hashkey& hk) const 371 operator()(const Hashkey&, const Hashkey&) const; 378 typedef Unordered_map<Hashkey, Hashval, Stringpool_hash,
|
/external/jsoncpp/src/lib_json/ |
json_internalmap.inl | 207 HashKey hashedKey = hash(key); 228 HashKey hashedKey = hash(key); 249 HashKey hashedKey = hash(key); 328 ValueInternalMap::unsafeAdd(const char* key, bool isStatic, HashKey hashedKey) { 350 ValueInternalMap::HashKey ValueInternalMap::hash(const char* key) const { 351 HashKey hash = 0;
|
/external/curl/lib/ |
conncache.c | 132 static char *hashkey(struct connectdata *conn) function 153 char *key = hashkey(conn); 213 key = hashkey(conn);
|
/external/pdfium/core/src/fxcrt/ |
fx_basic_maps.cpp | 38 FX_DWORD CFX_MapPtrToPtr::HashKey(void* key) const { 56 for (FX_DWORD nBucket = (HashKey(pAssocRet->key) % m_nHashTableSize) + 1; 100 nHash = HashKey(key) % m_nHashTableSize; 146 ppAssocPrev = &m_pHashTable[HashKey(key) % m_nHashTableSize];
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/dynamodb2/ |
test_table.py | 3 from boto.dynamodb2.fields import (HashKey, RangeKey, 22 hash_key = HashKey('hello') 52 alt_key = HashKey('alt', data_type=NUMBER) 70 HashKey('username'), 103 HashKey('username'), 136 HashKey('username'), 176 HashKey('username'), 217 HashKey('username'), 259 HashKey('username'), 303 HashKey('username') [all...] |
/external/icu/icu4c/source/tools/ctestfw/ |
datamap.cpp | 106 UnicodeString hashKey(key, -1, US_INV); 107 const ResourceBundle *r = (ResourceBundle *)fData->get(hashKey);
|
/external/iproute2/man/man8/ |
tc-u32.8 | 14 .B hashkey 15 .IR HASHKEY " ] [ " 42 .IR HASHKEY " := [ " 190 .BR hashkey . 286 .BI hashkey " HASHKEY" 327 .B hashkey 573 link 1: hashkey mask 0x0000ff00 at 12 \\ 581 .BR link " and " hashkey
|
/external/jetty/src/java/org/eclipse/jetty/websocket/ |
WebSocketServletConnectionD06.java | 45 response.addHeader("Sec-WebSocket-Accept",hashKey(key));
|
WebSocketServletConnectionD08.java | 46 response.addHeader("Sec-WebSocket-Accept",hashKey(key));
|
WebSocketServletConnectionRFC6455.java | 46 response.addHeader("Sec-WebSocket-Accept",hashKey(key));
|
/external/iproute2/ |
README.iproute2+tc | 118 hashkey mask 0x00ff0000 at 8 \
|