Home
last modified time | relevance | path

Searched refs:keyB (Results 1 – 3 of 3) sorted by relevance

/external/skia/gpu/src/
Dgr_unittests.cpp117 KeyType keyB; in test_binHashKey() local
118 while (keyB.doPass()){ in test_binHashKey()
119 keyB.keyData(reinterpret_cast<const uint32_t*>(testStringB), kDataLenUsedForKey); in test_binHashKey()
121 GrAssert(keyA.compare(keyB) < 0); in test_binHashKey()
125 keyB.copyAndTakeOwnership(keyA); in test_binHashKey()
127 GrAssert(keyB.fIsValid); in test_binHashKey()
128 GrAssert(keyB.getHash() == keyA2.getHash()); in test_binHashKey()
129 GrAssert(keyB.compare(keyA2) == 0); in test_binHashKey()
130 keyA.deepCopyFrom(keyB); in test_binHashKey()
132 GrAssert(keyB.fIsValid); in test_binHashKey()
/external/qemu/distrib/sdl-1.2.12/src/video/
DSDL_surface.c875 Uint8 keyR, keyG, keyB; in SDL_ConvertSurface() local
877 SDL_GetRGB(colorkey,surface->format,&keyR,&keyG,&keyB); in SDL_ConvertSurface()
879 SDL_MapRGB(convert->format, keyR, keyG, keyB)); in SDL_ConvertSurface()
/external/webkit/Source/WebCore/storage/
DIDBLevelDBBackingStore.cpp418 static int compareEncodedIDBKeys(const Vector<char>& keyA, const Vector<char>& keyB) in compareEncodedIDBKeys() argument
421 ASSERT(keyB.size() >= 1); in compareEncodedIDBKeys()
425 const char* q = keyB.data(); in compareEncodedIDBKeys()
426 const char* limitB = q + keyB.size(); in compareEncodedIDBKeys()
1306 KeyType keyB; in decodeAndCompare() local
1310 const char* ptrB = KeyType::decode(b.begin(), b.end(), &keyB); in decodeAndCompare()
1313 return keyA.compare(keyB); in decodeAndCompare()