HomeSort by relevance Sort by last modified time
    Searched defs:des_buf (Results 1 - 3 of 3) sorted by null

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpc/
rpc_des.h 68 #define des_buf UDES.UDES_buf /* otherwise, pointer to data */ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpc/
rpc_des.h 68 #define des_buf UDES.UDES_buf /* otherwise, pointer to data */ macro
  /external/pdfium/core/fxcodec/lbmp/
fx_bmp.cpp 325 uint8_t* des_buf = nullptr; local
327 if (!bmp_read_data(bmp_ptr, &des_buf, bmp_ptr->src_row_bytes))
334 *row_buf++ = des_buf[col >> 3] & (0x80 >> (col % 8)) ? 0x01 : 0x00;
339 *row_buf++ = (col & 0x01) ? (des_buf[col >> 1] & 0x0F)
340 : ((des_buf[col >> 1] & 0xF0) >> 4);
344 uint16_t* buf = (uint16_t*)des_buf;
376 FXSYS_memcpy(bmp_ptr->out_row_buffer, des_buf, bmp_ptr->src_row_bytes);
    [all...]

Completed in 103 milliseconds