OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fHash
(Results
1 - 5
of
5
) 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
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 178 milliseconds