HomeSort by relevance Sort by last modified time
    Searched refs:fHash (Results 1 - 7 of 7) sorted by null

  /external/skia/gpu/include/
GrKey.h 27 explicit GrKey(Hash hash) : fHash(hash) {}
29 intptr_t getHash() const { return fHash; }
32 return fHash < rh.fHash || (fHash == rh.fHash && this->lt(rh));
35 return fHash == rh.fHash && this->eq(rh);
43 const Hash fHash;
GrTHashCache.h 34 GrTHashTable() { Gr_bzero(fHash, sizeof(fHash)); }
72 mutable T* fHash[kHashCount];
120 T* elem = fHash[hashIndex];
130 fHash[hashIndex] = elem;
146 fHash[hash2Index(key.getHash())] = elem;
153 if (fHash[index] == elem) {
154 fHash[index] = NULL;
173 if (fHash[hashIndex] == fSorted[elemIndex]) {
174 fHash[hashIndex] = NULL
    [all...]
  /external/icu4c/i18n/
uspoof_conf.h 74 UHashtable *fHash; // Key: UnicodeString Value: SPUString
uspoof_conf.cpp 73 SPUStringPool::SPUStringPool(UErrorCode &status) : fVec(NULL), fHash(NULL) {
75 fHash = uhash_open(uhash_hashUnicodeString, // key hash function
89 uhash_close(fHash);
130 SPUString *hashedString = static_cast<SPUString *>(uhash_get(fHash, src));
135 uhash_put(fHash, src, hashedString, &status);
zstrfmt.cpp     [all...]
zstrfmt.h 113 UHashtable *fHash;
  /external/skia/src/core/
SkGlyphCache.cpp 422 SkGlyphCache* fHash[HASH_COUNT];
438 memset(rec->fHash, 0, sizeof(rec->fHash));
487 SkGlyphCache** hash = globals.fHash;
560 SkASSERT(globals.fHash[index] != cache);
561 globals.fHash[index] = cache;
636 if (cache == globals->fHash[index]) {
637 globals->fHash[index] = NULL;

Completed in 1019 milliseconds