Searched refs:dst_buf (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/x11/
H A Dx11_screen.h113 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);
119 x11_drawable_copy_buffers(struct x11_screen *xscr, Drawable drawable, int x, int y, int width, int height, int src_buf, int dst_buf) argument
H A Dx11_screen.c354 int src_buf, int dst_buf)
367 DRI2CopyRegion(xscr->dpy, drawable, region, dst_buf, src_buf);
352 x11_drawable_copy_buffers_region(struct x11_screen *xscr, Drawable drawable, int num_rects, const int *rects, int src_buf, int dst_buf) argument
/external/mesa3d/src/gallium/state_trackers/egl/x11/
H A Dx11_screen.h113 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);
119 x11_drawable_copy_buffers(struct x11_screen *xscr, Drawable drawable, int x, int y, int width, int height, int src_buf, int dst_buf) argument
H A Dx11_screen.c354 int src_buf, int dst_buf)
367 DRI2CopyRegion(xscr->dpy, drawable, region, dst_buf, src_buf);
352 x11_drawable_copy_buffers_region(struct x11_screen *xscr, Drawable drawable, int num_rects, const int *rects, int src_buf, int dst_buf) argument
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dy4minput.h58 unsigned char *dst_buf; member in struct:y4m_input
H A Dy4minput.c978 _y4m->dst_buf = (unsigned char *)malloc(_y4m->dst_buf_sz);
980 _y4m->dst_buf = (unsigned char *)malloc(2 * _y4m->dst_buf_sz);
988 free(_y4m->dst_buf);
1015 if (!file_read(_y4m->dst_buf, _y4m->dst_buf_read_sz, _fin)) {
1025 (*_y4m->convert)(_y4m, _y4m->dst_buf, _y4m->aux_buf);
1047 _img->planes[VPX_PLANE_Y] = _y4m->dst_buf;
1048 _img->planes[VPX_PLANE_U] = _y4m->dst_buf + pic_sz;
1049 _img->planes[VPX_PLANE_V] = _y4m->dst_buf + pic_sz + c_sz;
1050 _img->planes[VPX_PLANE_ALPHA] = _y4m->dst_buf + pic_sz + 2 * c_sz;
/external/libvpx/libvpx/
H A Dy4minput.h58 unsigned char *dst_buf; member in struct:y4m_input
H A Dy4minput.c874 _y4m->dst_buf = (unsigned char *)malloc(_y4m->dst_buf_sz);
880 free(_y4m->dst_buf);
906 if (!file_read(_y4m->dst_buf, _y4m->dst_buf_read_sz, _fin)) {
916 (*_y4m->convert)(_y4m, _y4m->dst_buf, _y4m->aux_buf);
936 _img->planes[PLANE_Y] = _y4m->dst_buf;
937 _img->planes[PLANE_U] = _y4m->dst_buf + pic_sz;
938 _img->planes[PLANE_V] = _y4m->dst_buf + pic_sz + c_sz;
939 _img->planes[PLANE_ALPHA] = _y4m->dst_buf + pic_sz + 2 * c_sz;
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/src/
H A Dvpx_encoder.c274 char *const dst_buf = (char *)priv->enc.cx_data_dst_buf.buf; local
276 if (dst_buf &&
277 pkt->data.raw.buf != dst_buf &&
282 memcpy(dst_buf + priv->enc.cx_data_pad_before, pkt->data.raw.buf,
285 modified_pkt->data.raw.buf = dst_buf;
291 if (dst_buf == pkt->data.raw.buf) {
292 priv->enc.cx_data_dst_buf.buf = dst_buf + pkt->data.raw.sz;
/external/libvpx/libvpx/vpx/src/
H A Dvpx_encoder.c278 char *const dst_buf = (char *)priv->enc.cx_data_dst_buf.buf; local
280 if (dst_buf &&
281 pkt->data.raw.buf != dst_buf &&
286 memcpy(dst_buf + priv->enc.cx_data_pad_before, pkt->data.raw.buf,
289 modified_pkt->data.raw.buf = dst_buf;
295 if (dst_buf == pkt->data.raw.buf) {
296 priv->enc.cx_data_dst_buf.buf = dst_buf + pkt->data.raw.sz;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconinter.c155 struct buf_2d *const dst_buf = &pd->dst; local
156 uint8_t *const dst = dst_buf->buf + dst_buf->stride * y + x;
196 inter_predictor(pre, pre_buf->stride, dst, dst_buf->stride,
259 struct buf_2d *const dst_buf = &pd->dst; local
260 uint8_t *const dst = dst_buf->buf + dst_buf->stride * y + x;
380 inter_predictor(buf_ptr, buf_stride, dst, dst_buf->stride, subpel_x,
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_reconinter.c273 struct buf_2d *const dst_buf = &pd->dst; local
274 uint8_t *const dst = dst_buf->buf + dst_buf->stride * y + x;
310 high_inter_predictor(pre, pre_buf->stride, dst, dst_buf->stride,
314 inter_predictor(pre, pre_buf->stride, dst, dst_buf->stride,
318 inter_predictor(pre, pre_buf->stride, dst, dst_buf->stride,
382 struct buf_2d *const dst_buf = &pd->dst; local
383 uint8_t *const dst = dst_buf->buf + dst_buf->stride * y + x;
538 high_inter_predictor(buf_ptr, buf_stride, dst, dst_buf
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/
H A Djs_fs_node.cc249 void* dst_buf = buffer_iface_->Map(buf_var); local
250 if (dst_buf == NULL) {
255 memcpy(dst_buf, buf, count);
/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_image.cpp282 FX_LPBYTE dst_buf = pNewBitmap->GetBuffer(); local
288 dst_buf[src_offset] = (FX_BYTE)(src_buf[src_offset] * alpha);
289 dst_buf[src_offset + 1] = (FX_BYTE)(src_buf[src_offset + 1] * alpha);
290 dst_buf[src_offset + 2] = (FX_BYTE)(src_buf[src_offset + 2] * alpha);
291 dst_buf[src_offset + 3] = (FX_BYTE)(src_buf[src_offset + 3]);
/external/lldb/source/Target/
H A DMemory.cpp125 uint8_t *dst_buf = (uint8_t *)dst; local
147 memcpy (dst_buf + dst_len - bytes_left, pos->second->GetBytes() + cache_offset, curr_read_size);
167 memcpy (dst_buf + dst_len - bytes_left, pos->second->GetBytes(), curr_read_size);
/external/chromium_org/third_party/ots/src/
H A Dwoff2.cc777 bool Woff2Uncompress(uint8_t* dst_buf, size_t dst_size, argument
781 int r = uncompress(reinterpret_cast<Bytef *>(dst_buf), &uncompressed_length,
790 &uncompressed_size, dst_buf);
/external/chromium_org/third_party/brotli/src/woff2/
H A Dwoff2_dec.cc664 bool Woff2Uncompress(uint8_t* dst_buf, size_t dst_size, argument
668 &uncompressed_size, dst_buf);
/external/opencv/cv/src/
H A Dcvfilter.cpp2383 CvMat* dst_buf = 0;
2466 CV_CALL( dst_buf = cvCreateMat( max_dy + ksize.height,
2529 dst_buf->data.ptr + i*dst_buf->step, size.width*pix_size );
2532 hout = dst_buf;
2559 cvReleaseMat( &dst_buf );
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface.c4242 u8 dst_buf[ETH_ALEN], *dst; local
4247 if (hwaddr_aton(cmd, dst_buf))
4249 dst = dst_buf;

Completed in 450 milliseconds