HomeSort by relevance Sort by last modified time
    Searched full:hashedkey (Results 1 - 6 of 6) sorted by null

  /art/compiler/utils/
dedupe_set-inl.h 65 for (const HashedKey<StoreKey>& key : keys_) {
73 HashedKey<InKey> hashed_in_key(hash, &in_key);
80 keys_.Insert(HashedKey<StoreKey> { hash, store_key });
94 for (const HashedKey<StoreKey>& key : keys_) {
114 class HashedKey {
116 HashedKey() : hash_(0u), key_(nullptr) { }
117 HashedKey(size_t hash, const T* key) : hash_(hash), key_(key) { }
142 bool IsEmpty(const HashedKey<StoreKey>& key) const {
146 void MakeEmpty(HashedKey<StoreKey>& key) {
153 size_t operator()(const HashedKey<T>& key) const
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
trie_map.cpp 251 int TrieMap::getTerminalEntryIndex(const uint32_t key, const uint32_t hashedKey,
253 const int label = getLabel(hashedKey, level);
261 return getTerminalEntryIndex(key, hashedKey, entry, level + 1);
277 * @param hashedKey the hashed key.
283 const TrieMap::Result TrieMap::getInternal(const uint32_t key, const uint32_t hashedKey,
285 const int terminalEntryIndex = getTerminalEntryIndex(key, hashedKey,
305 * @param hashedKey the hashed key.
311 bool TrieMap::putInternal(const uint32_t key, const uint64_t value, const uint32_t hashedKey,
313 const int label = getLabel(hashedKey, level);
324 return putInternal(key, value, hashedKey, entryIndex, entry, level + 1)
    [all...]
trie_map.h 304 int getTerminalEntryIndex(const uint32_t key, const uint32_t hashedKey,
306 const Result getInternal(const uint32_t key, const uint32_t hashedKey,
308 bool putInternal(const uint32_t key, const uint64_t value, const uint32_t hashedKey,
311 const uint32_t hashedKey, const Entry &conflictedEntry, const int conflictedEntryIndex,
347 AK_FORCE_INLINE int getLabel(const uint32_t hashedKey, const int level) const {
348 return (hashedKey >> (level * NUM_OF_BITS_USED_FOR_ONE_LEVEL)) & LABEL_MASK;
  /external/jsoncpp/src/lib_json/
json_internalmap.inl 207 HashKey hashedKey = hash(key);
208 BucketIndex bucketIndex = hashedKey % bucketsSize_;
228 HashKey hashedKey = hash(key);
230 BucketIndex bucketIndex = hashedKey % bucketsSize_;
245 return unsafeAdd(key, isStatic, hashedKey);
249 HashKey hashedKey = hash(key);
252 BucketIndex bucketIndex = hashedKey % bucketsSize_;
328 ValueInternalMap::unsafeAdd(const char* key, bool isStatic, HashKey hashedKey) {
331 BucketIndex bucketIndex = hashedKey % bucketsSize_;
  /frameworks/base/services/core/java/com/android/server/
StorageManagerService.java     [all...]
  /external/jsoncpp/include/json/
value.h 718 Value& unsafeAdd(const char* key, bool isStatic, HashKey hashedKey);

Completed in 1850 milliseconds