Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/lbmp/
Dfx_bmp.cpp325 uint8_t* des_buf = nullptr; in bmp_decode_rgb() local
327 if (!bmp_read_data(bmp_ptr, &des_buf, bmp_ptr->src_row_bytes)) in bmp_decode_rgb()
334 *row_buf++ = des_buf[col >> 3] & (0x80 >> (col % 8)) ? 0x01 : 0x00; in bmp_decode_rgb()
339 *row_buf++ = (col & 0x01) ? (des_buf[col >> 1] & 0x0F) in bmp_decode_rgb()
340 : ((des_buf[col >> 1] & 0xF0) >> 4); in bmp_decode_rgb()
344 uint16_t* buf = (uint16_t*)des_buf; in bmp_decode_rgb()
376 FXSYS_memcpy(bmp_ptr->out_row_buffer, des_buf, bmp_ptr->src_row_bytes); in bmp_decode_rgb()
/external/pdfium/core/fxcodec/lgif/
Dfx_gif.cpp86 int32_t CGifLZWDecoder::Decode(uint8_t* des_buf, uint32_t& des_size) { in Decode() argument
93 FXSYS_memcpy(des_buf, &stack[GIF_MAX_LZW_CODE - stack_size], des_size); in Decode()
97 FXSYS_memcpy(des_buf, &stack[GIF_MAX_LZW_CODE - stack_size], stack_size); in Decode()
98 des_buf += stack_size; in Decode()
164 FXSYS_memcpy(des_buf, &stack[GIF_MAX_LZW_CODE - stack_size], in Decode()
169 FXSYS_memcpy(des_buf, &stack[GIF_MAX_LZW_CODE - stack_size], in Decode()
171 des_buf += stack_size; in Decode()
Dfx_gif.h129 int32_t Decode(uint8_t* des_buf, uint32_t& des_size);