Searched refs:HashNode (Results 1 – 5 of 5) sorted by relevance
/third_party/flutter/skia/src/gpu/ccpr/ |
D | GrCCPathCache.h | 128 class HashNode : SkNoncopyable { 130 static const Key& GetKey(const HashNode&); 135 HashNode() = default; 136 HashNode(GrCCPathCache*, sk_sp<Key>, const MaskTransform&, const GrShape&); 137 HashNode(HashNode&& node) in HashNode() function 142 ~HashNode(); 144 void operator=(HashNode&& node); 169 SkTHashTable<HashNode, const Key&> fHashTable; 187 const SkTHashTable<HashNode, const Key&>& testingOnly_getHashTable() const; 339 inline GrCCPathCache::HashNode::HashNode(GrCCPathCache* pathCache, sk_sp<Key> key, in HashNode() function [all …]
|
D | GrCCPathCache.cpp | 179 if (HashNode* node = fHashTable.find(*fScratchKey)) { in find() 201 SkDEBUGCODE(HashNode* node = fHashTable.find(*fLRU.tail()->fCacheKey)); in find() 211 entry = fHashTable.set(HashNode(this, std::move(permanentKey), m, shape))->entry(); in find() 218 SkDEBUGCODE(HashNode* node = fHashTable.find(*fScratchKey)); in find() 253 HashNode* node = fHashTable.find(key); in evict()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | LzcompCompress.java | 53 private HashNode[] hashTable; 55 private static class HashNode { class in LzcompCompress 57 HashNode next; 123 hashTable = new HashNode[0x10000]; in initializeModel() 211 HashNode prevNode = null; in findMatch() 213 for (HashNode hNode = hashTable[pos]; hNode != null; prevNode = hNode, hNode = hNode.next) { in findMatch() 398 HashNode hNode = new HashNode(); in updateModel()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | LzcompCompress.java | 53 private HashNode[] hashTable; 55 private static class HashNode { class in LzcompCompress 57 HashNode next; 123 hashTable = new HashNode[0x10000]; in initializeModel() 211 HashNode prevNode = null; in findMatch() 213 for (HashNode hNode = hashTable[pos]; hNode != null; prevNode = hNode, hNode = hNode.next) { in findMatch() 398 HashNode hNode = new HashNode(); in updateModel()
|
/third_party/flutter/skia/tools/gpu/ |
D | GrTest.cpp | 133 const SkTHashTable<GrCCPathCache::HashNode, const GrCCPathCache::Key&>&
|