Lines Matching defs:Key
25 * Descriptor struct which we'll use as a hash table key
75 // Key to indicate an atlas row without any meaningful data stored in it
115 * Searches the key table for a key and returns the index if found; if not found, it returns
116 * the bitwise not of the index at which we could insert the key to maintain a sorted list.
118 int searchByKey(uint32_t key);
121 * Compare two atlas rows by key, so we can sort/search by key
141 class Key : public GrMurmur3HashKey<sizeof(GrTextureStripAtlas::Desc)> {};
142 static const Key& GetKey(const AtlasEntry& entry) { return entry.fKey; }
143 static uint32_t Hash(const Key& key) { return key.getHash(); }
148 Key fKey;
183 // A list of pointers to AtlasRows that currently contain cached images, sorted by key