Searched refs:get_byte (Results 1 – 9 of 9) sorted by relevance
/external/skqp/src/codec/ |
D | SkBmpStandardCodec.cpp | 98 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor); in createColorTable() 99 uint8_t green = get_byte(cBuffer.get(), i*fBytesPerColor + 1); in createColorTable() 100 uint8_t red = get_byte(cBuffer.get(), i*fBytesPerColor + 2); in createColorTable() 105 alpha = get_byte(cBuffer.get(), i*fBytesPerColor + 3); in createColorTable()
|
D | SkBmpRLECodec.cpp | 88 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor); in createColorTable() 89 uint8_t green = get_byte(cBuffer.get(), i*fBytesPerColor + 1); in createColorTable() 90 uint8_t red = get_byte(cBuffer.get(), i*fBytesPerColor + 2); in createColorTable()
|
D | SkCodecPriv.h | 144 static inline uint8_t get_byte(uint8_t* buffer, uint32_t i) { in get_byte() function
|
/external/skia/src/codec/ |
D | SkBmpStandardCodec.cpp | 98 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor); in createColorTable() 99 uint8_t green = get_byte(cBuffer.get(), i*fBytesPerColor + 1); in createColorTable() 100 uint8_t red = get_byte(cBuffer.get(), i*fBytesPerColor + 2); in createColorTable() 105 alpha = get_byte(cBuffer.get(), i*fBytesPerColor + 3); in createColorTable()
|
D | SkBmpRLECodec.cpp | 88 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor); in createColorTable() 89 uint8_t green = get_byte(cBuffer.get(), i*fBytesPerColor + 1); in createColorTable() 90 uint8_t red = get_byte(cBuffer.get(), i*fBytesPerColor + 2); in createColorTable()
|
D | SkCodecPriv.h | 144 static inline uint8_t get_byte(uint8_t* buffer, uint32_t i) { in get_byte() function
|
/external/libjpeg-turbo/ |
D | jdarith.c | 74 get_byte(j_decompress_ptr cinfo) in get_byte() function 129 data = get_byte(cinfo); /* read next input byte */ in arith_decode() 131 do data = get_byte(cinfo); in arith_decode()
|
/external/iproute2/include/ |
D | utils.h | 95 #define get_byte get_u8 macro
|
/external/brotli/c/dec/ |
D | decode.c | 640 BROTLI_BOOL get_byte = BROTLI_FALSE; in SafeReadSymbolCodeLengths() local 647 if (get_byte && !BrotliPullByte(br)) return BROTLI_DECODER_NEEDS_MORE_INPUT; in SafeReadSymbolCodeLengths() 648 get_byte = BROTLI_FALSE; in SafeReadSymbolCodeLengths() 656 get_byte = BROTLI_TRUE; in SafeReadSymbolCodeLengths() 670 get_byte = BROTLI_TRUE; in SafeReadSymbolCodeLengths()
|