Home | History | Annotate | Download | only in gpu

Lines Matching refs:key

63     int compare(const GrBinHashKey<Entry, KeySize>& key) const {
64 GrAssert(fIsValid && key.fIsValid);
65 return memcmp(fData, key.fData, KeySize);
69 EQ(const Entry& entry, const GrBinHashKey<Entry, KeySize>& key) {
70 GrAssert(key.fIsValid);
71 return 0 == entry.compare(key);
75 LT(const Entry& entry, const GrBinHashKey<Entry, KeySize>& key) {
76 GrAssert(key.fIsValid);
77 return entry.compare(key) < 0;
87 uint8_t fData[KeySize]; //Buffer for key storage