Searched refs:des_buf (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/core/src/fxcodec/lbmp/ |
D | fx_bmp.cpp | 342 uint8_t* des_buf = NULL; in _bmp_decode_rgb() local 344 if (_bmp_read_data(bmp_ptr, &des_buf, bmp_ptr->src_row_bytes) == NULL) { in _bmp_decode_rgb() 351 *row_buf++ = des_buf[col >> 3] & (0x80 >> (col % 8)) ? 0x01 : 0x00; in _bmp_decode_rgb() 356 *row_buf++ = (col & 0x01) ? (des_buf[col >> 1] & 0x0F) in _bmp_decode_rgb() 357 : ((des_buf[col >> 1] & 0xF0) >> 4); in _bmp_decode_rgb() 362 FX_WORD* buf = (FX_WORD*)des_buf; in _bmp_decode_rgb() 393 FXSYS_memcpy(bmp_ptr->out_row_buffer, des_buf, bmp_ptr->src_row_bytes); in _bmp_decode_rgb()
|
/external/pdfium/core/src/fxcodec/lgif/ |
D | fx_gif.cpp | 62 int32_t CGifLZWDecoder::Decode(uint8_t* des_buf, FX_DWORD& des_size) { in Decode() argument 69 FXSYS_memcpy(des_buf, &stack[GIF_MAX_LZW_CODE - stack_size], des_size); in Decode() 73 FXSYS_memcpy(des_buf, &stack[GIF_MAX_LZW_CODE - stack_size], stack_size); in Decode() 74 des_buf += stack_size; in Decode() 125 FXSYS_memcpy(des_buf, &stack[GIF_MAX_LZW_CODE - stack_size], in Decode() 130 FXSYS_memcpy(des_buf, &stack[GIF_MAX_LZW_CODE - stack_size], in Decode() 132 des_buf += stack_size; in Decode()
|
D | fx_gif.h | 132 int32_t Decode(uint8_t* des_buf, FX_DWORD& des_size);
|