Home
last modified time | relevance | path

Searched refs:buffer_alloc (Results 1 – 24 of 24) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/generic/
Dyv12config.c36 vpx_free(ybf->buffer_alloc); in vp8_yv12_de_alloc_frame_buffer()
65 if (!ybf->buffer_alloc) { in vp8_yv12_realloc_frame_buffer()
66 ybf->buffer_alloc = (uint8_t *)vpx_memalign(32, frame_size); in vp8_yv12_realloc_frame_buffer()
70 if (!ybf->buffer_alloc || ybf->buffer_alloc_sz < frame_size) in vp8_yv12_realloc_frame_buffer()
100 ybf->y_buffer = ybf->buffer_alloc + (border * y_stride) + border; in vp8_yv12_realloc_frame_buffer()
101 ybf->u_buffer = ybf->buffer_alloc + yplane_size + (border / 2 * uv_stride) + border / 2; in vp8_yv12_realloc_frame_buffer()
102 …ybf->v_buffer = ybf->buffer_alloc + yplane_size + uvplane_size + (border / 2 * uv_stride) + borde… in vp8_yv12_realloc_frame_buffer()
126 vpx_free(ybf->buffer_alloc); in vp9_free_frame_buffer()
202 ybf->buffer_alloc = (uint8_t *)yv12_align_addr(fb->data, 32); in vp9_realloc_frame_buffer()
205 vpx_free(ybf->buffer_alloc); in vp9_realloc_frame_buffer()
[all …]
/external/libvpx/libvpx/vpx_scale/generic/
Dyv12config.c33 vpx_free(ybf->buffer_alloc); in vp8_yv12_de_alloc_frame_buffer()
62 if (!ybf->buffer_alloc) { in vp8_yv12_realloc_frame_buffer()
63 ybf->buffer_alloc = (uint8_t *)vpx_memalign(32, frame_size); in vp8_yv12_realloc_frame_buffer()
67 if (!ybf->buffer_alloc || ybf->buffer_alloc_sz < frame_size) in vp8_yv12_realloc_frame_buffer()
95 ybf->y_buffer = ybf->buffer_alloc + (border * y_stride) + border; in vp8_yv12_realloc_frame_buffer()
96 ybf->u_buffer = ybf->buffer_alloc + yplane_size + (border / 2 * uv_stride) + border / 2; in vp8_yv12_realloc_frame_buffer()
97 …ybf->v_buffer = ybf->buffer_alloc + yplane_size + uvplane_size + (border / 2 * uv_stride) + borde… in vp8_yv12_realloc_frame_buffer()
121 vpx_free(ybf->buffer_alloc); in vp9_free_frame_buffer()
183 ybf->buffer_alloc = (uint8_t *)yv12_align_addr(fb->data, 32); in vp9_realloc_frame_buffer()
186 if (ybf->buffer_alloc) in vp9_realloc_frame_buffer()
[all …]
/external/libvpx/libvpx/vp8/common/
Dswapyv12buffer.c18 temp = last_frame->buffer_alloc; in vp8_swap_yv12_buffer()
19 last_frame->buffer_alloc = new_frame->buffer_alloc; in vp8_swap_yv12_buffer()
20 new_frame->buffer_alloc = temp; in vp8_swap_yv12_buffer()
Dalloccommon.c107 vpx_memset(oci->post_proc_buffer.buffer_alloc, 128, in vp8_alloc_frame_buffers()
Dpostproc.c761 … vpx_memset((&oci->post_proc_buffer_int)->buffer_alloc,128,(&oci->post_proc_buffer)->frame_size); in vp8_post_proc_frame()
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
Dswapyv12buffer.c18 temp = last_frame->buffer_alloc; in vp8_swap_yv12_buffer()
19 last_frame->buffer_alloc = new_frame->buffer_alloc; in vp8_swap_yv12_buffer()
20 new_frame->buffer_alloc = temp; in vp8_swap_yv12_buffer()
Dalloccommon.c107 vpx_memset(oci->post_proc_buffer.buffer_alloc, 128, in vp8_alloc_frame_buffers()
Dpostproc.c765 … vpx_memset((&oci->post_proc_buffer_int)->buffer_alloc,128,(&oci->post_proc_buffer)->frame_size); in vp8_post_proc_frame()
/external/chromium_org/third_party/libvpx/source/libvpx/test/
Dvpx_scale_test.cc39 vpx_memset(img_.buffer_alloc, kBufFiller, img_.frame_size); in ResetImage()
50 vpx_memset(ref_img_.buffer_alloc, kBufFiller, ref_img_.frame_size); in ResetImage()
55 vpx_memset(cpy_img_.buffer_alloc, kBufFiller, cpy_img_.frame_size); in ResetImage()
158 EXPECT_EQ(0, memcmp(ref_img_.buffer_alloc, actual.buffer_alloc, in CompareImages()
/external/bluetooth/bluedroid/hci/src/
Dvendor.c45 static void *buffer_alloc(int size);
56 buffer_alloc,
158 static void *buffer_alloc(int size) { in buffer_alloc() function
/external/libvpx/libvpx/vpx_scale/
Dyv12config.h49 uint8_t *buffer_alloc; member
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/
Dyv12config.h50 uint8_t *buffer_alloc; member
/external/libvpx/libvpx/vp8/encoder/
Ddenoising.c154 vpx_memset(denoiser->yv12_running_avg[i].buffer_alloc, 0, in vp8_denoiser_allocate()
167 vpx_memset(denoiser->yv12_mc_running_avg.buffer_alloc, 0, in vp8_denoiser_allocate()
Donyx_if.c1747 if (!cpi->denoiser.yv12_mc_running_avg.buffer_alloc) in vp8_change_config()
4790 fwrite(cm->yv12_fb[cm->lst_fb_idx].buffer_alloc, in encode_frame_to_data_rate()
Dfirstpass.c895 (void) fwrite(lst_yv12->buffer_alloc, lst_yv12->frame_size, 1, in vp8_first_pass()
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/
Dvp9_iface_common.h51 img->img_data = yv12->buffer_alloc; in yuvconfig2image()
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
Ddenoising.c418 vpx_memset(denoiser->yv12_running_avg[i].buffer_alloc, 0, in vp8_denoiser_allocate()
431 vpx_memset(denoiser->yv12_mc_running_avg.buffer_alloc, 0, in vp8_denoiser_allocate()
439 vpx_memset(denoiser->yv12_last_source.buffer_alloc, 0, in vp8_denoiser_allocate()
Donyx_if.c1779 if (!cpi->denoiser.yv12_mc_running_avg.buffer_alloc) in vp8_change_config()
5006 fwrite(cm->yv12_fb[cm->lst_fb_idx].buffer_alloc, in encode_frame_to_data_rate()
Dfirstpass.c895 (void) fwrite(lst_yv12->buffer_alloc, lst_yv12->frame_size, 1, in vp8_first_pass()
/external/libvpx/libvpx/vp9/
Dvp9_iface_common.h47 img->img_data = yv12->buffer_alloc; in yuvconfig2image()
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/
Dvp8_dx_iface.c278 img->img_data = yv12->buffer_alloc; in yuvconfig2image()
/external/libvpx/libvpx/vp8/
Dvp8_dx_iface.c308 img->img_data = yv12->buffer_alloc; in yuvconfig2image()
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
Dvp9_firstpass.c933 (void)fwrite(lst_yv12->buffer_alloc, lst_yv12->frame_size, 1, recon_file); in vp9_first_pass()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c879 (void)fwrite(lst_yv12->buffer_alloc, lst_yv12->frame_size, 1, recon_file); in vp9_first_pass()