HomeSort by relevance Sort by last modified time
    Searched refs:dst_buf (Results 1 - 25 of 27) sorted by null

1 2

  /external/pdfium/core/fxcodec/lbmp/
fx_bmp.cpp 661 static void WriteFileHeader(BmpFileHeaderPtr head_ptr, uint8_t* dst_buf) {
664 SetWord_LSBFirst(&dst_buf[offset], head_ptr->bfType);
666 SetDWord_LSBFirst(&dst_buf[offset], head_ptr->bfSize);
668 SetWord_LSBFirst(&dst_buf[offset], head_ptr->bfReserved1);
670 SetWord_LSBFirst(&dst_buf[offset], head_ptr->bfReserved2);
672 SetDWord_LSBFirst(&dst_buf[offset], head_ptr->bfOffBits);
675 static void WriteInfoHeader(BmpInfoHeaderPtr info_head_ptr, uint8_t* dst_buf) {
678 SetDWord_LSBFirst(&dst_buf[offset], info_head_ptr->biSize);
680 SetDWord_LSBFirst(&dst_buf[offset], info_head_ptr->biWidth);
682 SetDWord_LSBFirst(&dst_buf[offset], info_head_ptr->biHeight)
    [all...]
fx_bmp.h 149 uint8_t*& dst_buf,
  /external/pdfium/core/fxcodec/lgif/
fx_gif.cpp 183 static bool gif_grow_buf(uint8_t*& dst_buf, uint32_t& dst_len, uint32_t size) {
186 while (dst_buf && dst_len < size) {
189 dst_buf = FX_Realloc(uint8_t, dst_buf, dst_len);
191 if (!dst_buf) {
193 dst_buf = FX_Realloc(uint8_t, dst_buf, dst_len);
195 FXSYS_memset(dst_buf + len_org, 0, dst_len - len_org);
196 return !!dst_buf;
246 uint8_t*& dst_buf,
    [all...]
fx_gif.h 170 uint8_t*& dst_buf,
174 uint8_t*& dst_buf,
177 void Finish(uint8_t*& dst_buf, uint32_t& dst_len, uint32_t& offset);
183 uint8_t*& dst_buf,
186 void WriteBlock(uint8_t*& dst_buf, uint32_t& dst_len, uint32_t& offset);
310 uint8_t*& dst_buf,
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
x11_screen.h 113 int src_buf, int dst_buf);
121 int src_buf, int dst_buf)
124 x11_drawable_copy_buffers_region(xscr, drawable, 1, rect, src_buf, dst_buf);
x11_screen.c 354 int src_buf, int dst_buf)
367 DRI2CopyRegion(xscr->dpy, drawable, region, dst_buf, src_buf);
  /external/libvpx/libvpx/
y4minput.h 52 unsigned char *dst_buf; member in struct:y4m_input
y4minput.c     [all...]
  /external/libvpx/libvpx/test/
y4m_video_source.h 92 std::swap(other->y4m_.dst_buf, y4m_.dst_buf);
  /external/curl/tests/server/
getpart.c 128 * address of a pointer to the destination buffer 'dst_buf', the length of data
149 static int appenddata(char **dst_buf, /* dest buffer */
174 char *newptr = realloc(*dst_buf, newsize);
179 *dst_buf = newptr;
183 memcpy(*dst_buf + *dst_len, src_buf, src_len);
185 *(*dst_buf + *dst_len) = '\0';
  /libcore/luni/src/test/native/
libcore_io_Memory_test.cpp 38 T dst_buf[NUM_ELEMENTS]; local
40 init_func(&src_buf[i], &dst_buf[i], i);
51 ASSERT_EQ(0, memcmp(dst_buf, dst_aligned, sizeof(T) * NUM_ELEMENTS))
  /external/webp/src/dec/
buffer_dec.c 260 WebPDecBuffer* const dst_buf) {
261 assert(src_buf != NULL && dst_buf != NULL);
262 assert(src_buf->colorspace == dst_buf->colorspace);
264 dst_buf->width = src_buf->width;
265 dst_buf->height = src_buf->height;
266 if (CheckDecBuffer(dst_buf) != VP8_STATUS_OK) {
271 const WebPRGBABuffer* const dst = &dst_buf->u.RGBA;
277 const WebPYUVABuffer* const dst = &dst_buf->u.YUVA;
  /external/libmpeg2/common/
impeg2_inter_pred.h 62 yuv_buf_t *dst_buf,
  /external/libvpx/libvpx/vpx/src/
vpx_encoder.c 259 char *const dst_buf = (char *)priv->enc.cx_data_dst_buf.buf; local
261 if (dst_buf && pkt->data.raw.buf != dst_buf &&
267 memcpy(dst_buf + priv->enc.cx_data_pad_before, pkt->data.raw.buf,
270 modified_pkt->data.raw.buf = dst_buf;
276 if (dst_buf == pkt->data.raw.buf) {
277 priv->enc.cx_data_dst_buf.buf = dst_buf + pkt->data.raw.sz;
  /external/libvpx/libvpx/vp9/common/
vp9_reconinter.c 138 struct buf_2d *const dst_buf = &pd->dst; local
139 uint8_t *const dst = dst_buf->buf + dst_buf->stride * y + x;
194 CONVERT_TO_SHORTPTR(dst), dst_buf->stride,
198 inter_predictor(pre, pre_buf->stride, dst, dst_buf->stride, subpel_x,
202 inter_predictor(pre, pre_buf->stride, dst, dst_buf->stride, subpel_x,
  /external/strace/
socketutils.c 161 char dst_buf[text_size]; local
164 dst_buf, text_size))
169 dst_buf, ntohs(diag_msg->id.idiag_dport)) < 0)
  /external/libmpeg2/common/x86/
impeg2_inter_pred_sse42_intr.c 63 * dst_buf : Destination Buffer
70 yuv_buf_t *dst_buf,
82 dst = dst_buf->pu1_y;
140 dst = dst_buf->pu1_u;
171 dst = dst_buf->pu1_v;
    [all...]
  /hardware/intel/img/psb_video/src/
psb_cmdbuf.h 173 psb_buffer_p dst_buf,
  /external/openssh/
umac.c 194 UINT8 *dst_buf = (UINT8 *)bufp; local
203 memcpy(dst_buf,out_buf,AES_BLOCK_LEN);
206 dst_buf += AES_BLOCK_LEN;
210 memcpy(dst_buf,out_buf,nbytes);
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c 496 struct buf_2d *dst_buf, const MV *mv, RefCntBuffer *ref_frame_buf,
499 uint8_t *const dst = dst_buf->buf + dst_buf->stride * y + x;
612 frame_height, border_offset, dst, dst_buf->stride,
632 CONVERT_TO_SHORTPTR(dst), dst_buf->stride, subpel_x,
635 inter_predictor(buf_ptr, buf_stride, dst, dst_buf->stride, subpel_x,
639 inter_predictor(buf_ptr, buf_stride, dst, dst_buf->stride, subpel_x, subpel_y,
679 struct buf_2d *const dst_buf = &pd->dst; local
691 pre_buf, dst_buf, &mv, ref_frame_buf,
700 struct buf_2d *const dst_buf = &pd->dst local
    [all...]
  /art/runtime/
jni_internal_test.cc     [all...]
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/venc/src/
omx_swvenc_mpeg4.cpp 2985 OMX_U8* src_buf = buffer->pBuffer, *dst_buf = buffer->pBuffer; local
    [all...]
  /external/opencv/cv/src/
cvfilter.cpp     [all...]
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/src/
video_encoder_device_v4l2.cpp 2625 OMX_U8* src_buf = buffer->pBuffer, *dst_buf = buffer->pBuffer; local
    [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
video_encoder_device_v4l2.cpp 3314 OMX_U8* src_buf = buffer->pBuffer, *dst_buf = buffer->pBuffer; local
    [all...]

Completed in 857 milliseconds

1 2