Searched refs:rawAddr (Results 1 – 1 of 1) sorted by relevance
/external/skia/tests/ |
D | BitmapCopyTest.cpp | 92 const void* rawAddr = bm.getAddr(x,y); in getPixel() local 96 memcpy(&val, rawAddr, sizeof(uint32_t)); in getPixel() 99 memcpy(&val16, rawAddr, sizeof(uint16_t)); in getPixel() 103 memcpy(&val8, rawAddr, sizeof(uint8_t)); in getPixel() 119 void* rawAddr = bm.getAddr(x,y); in setPixel() local 123 memcpy(rawAddr, &val, sizeof(uint32_t)); in setPixel() 127 memcpy(rawAddr, &val16, sizeof(uint16_t)); in setPixel() 131 memcpy(rawAddr, &val8, sizeof(uint8_t)); in setPixel()
|