HomeSort by relevance Sort by last modified time
    Searched full:buffer_alloc (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
swapyv12buffer.c 18 temp = last_frame->buffer_alloc;
19 last_frame->buffer_alloc = new_frame->buffer_alloc;
20 new_frame->buffer_alloc = temp;
alloccommon.c 107 vpx_memset(oci->post_proc_buffer.buffer_alloc, 128,
  /external/libvpx/libvpx/vp8/common/
swapyv12buffer.c 18 temp = last_frame->buffer_alloc;
19 last_frame->buffer_alloc = new_frame->buffer_alloc;
20 new_frame->buffer_alloc = temp;
alloccommon.c 107 vpx_memset(oci->post_proc_buffer.buffer_alloc, 128,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
swapyv12buffer.c 18 temp = last_frame->buffer_alloc;
19 last_frame->buffer_alloc = new_frame->buffer_alloc;
20 new_frame->buffer_alloc = temp;
alloccommon.c 107 vpx_memset(oci->post_proc_buffer.buffer_alloc, 128,
  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 33 vpx_free(ybf->buffer_alloc);
36 /* buffer_alloc isn't accessed by most functions. Rather y_buffer,
37 u_buffer and v_buffer point to buffer_alloc and are used. Clear out
62 if (!ybf->buffer_alloc) {
63 ybf->buffer_alloc = (uint8_t *)vpx_memalign(32, frame_size);
67 if (!ybf->buffer_alloc || ybf->buffer_alloc_sz < frame_size)
95 ybf->y_buffer = ybf->buffer_alloc + (border * y_stride) + border;
96 ybf->u_buffer = ybf->buffer_alloc + yplane_size + (border / 2 * uv_stride) + border / 2;
97 ybf->v_buffer = ybf->buffer_alloc + yplane_size + uvplane_size + (border / 2 * uv_stride) + border / 2;
121 vpx_free(ybf->buffer_alloc);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/
yv12config.c 35 vpx_free(ybf->buffer_alloc);
38 /* buffer_alloc isn't accessed by most functions. Rather y_buffer,
39 u_buffer and v_buffer point to buffer_alloc and are used. Clear out
64 if (!ybf->buffer_alloc) {
65 ybf->buffer_alloc = (uint8_t *)vpx_memalign(32, frame_size);
69 if (!ybf->buffer_alloc || ybf->buffer_alloc_sz < frame_size)
97 ybf->y_buffer = ybf->buffer_alloc + (border * y_stride) + border;
98 ybf->u_buffer = ybf->buffer_alloc + yplane_size + (border / 2 * uv_stride) + border / 2;
99 ybf->v_buffer = ybf->buffer_alloc + yplane_size + uvplane_size + (border / 2 * uv_stride) + border / 2;
123 vpx_free(ybf->buffer_alloc);
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/generic/
yv12config.c 33 vpx_free(ybf->buffer_alloc);
36 /* buffer_alloc isn't accessed by most functions. Rather y_buffer,
37 u_buffer and v_buffer point to buffer_alloc and are used. Clear out
62 if (!ybf->buffer_alloc) {
63 ybf->buffer_alloc = (uint8_t *)vpx_memalign(32, frame_size);
67 if (!ybf->buffer_alloc || ybf->buffer_alloc_sz < frame_size)
95 ybf->y_buffer = ybf->buffer_alloc + (border * y_stride) + border;
96 ybf->u_buffer = ybf->buffer_alloc + yplane_size + (border / 2 * uv_stride) + border / 2;
97 ybf->v_buffer = ybf->buffer_alloc + yplane_size + uvplane_size + (border / 2 * uv_stride) + border / 2;
121 vpx_free(ybf->buffer_alloc);
    [all...]
  /external/bluetooth/bluedroid/hci/src/
vendor.c 45 static void *buffer_alloc(int size);
56 buffer_alloc,
158 static void *buffer_alloc(int size) { function
164 // |buffer_alloc|.
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/
yv12config.h 49 uint8_t *buffer_alloc; member in struct:yv12_buffer_config
  /external/libvpx/libvpx/vpx_scale/
yv12config.h 49 uint8_t *buffer_alloc; member in struct:yv12_buffer_config
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/
yv12config.h 49 uint8_t *buffer_alloc; member in struct:yv12_buffer_config
  /bootable/recovery/updater/
blockimg.c 123 static void allocate(size_t size, uint8_t** buffer, size_t* buffer_alloc) {
125 if (size <= *buffer_alloc) return;
134 *buffer_alloc = size;
398 size_t buffer_alloc = 0; local
414 allocate(src->size * BLOCKSIZE, &buffer, &buffer_alloc);
445 allocate(BLOCKSIZE, &buffer, &buffer_alloc);
504 allocate(src->size * BLOCKSIZE, &buffer, &buffer_alloc);
581 printf("max alloc needed was %zu\n", buffer_alloc);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/
vp9_iface_common.h 50 img->img_data = yv12->buffer_alloc;
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 47 img->img_data = yv12->buffer_alloc;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
vp9_iface_common.h 47 img->img_data = yv12->buffer_alloc;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
denoising.c 162 vpx_memset(denoiser->yv12_running_avg[i].buffer_alloc, 0,
175 vpx_memset(denoiser->yv12_mc_running_avg.buffer_alloc, 0,
  /external/libvpx/libvpx/vp8/encoder/
denoising.c 154 vpx_memset(denoiser->yv12_running_avg[i].buffer_alloc, 0,
167 vpx_memset(denoiser->yv12_mc_running_avg.buffer_alloc, 0,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
denoising.c 155 vpx_memset(denoiser->yv12_running_avg[i].buffer_alloc, 0,
168 vpx_memset(denoiser->yv12_mc_running_avg.buffer_alloc, 0,
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/
vp8_dx_iface.c 274 img->img_data = yv12->buffer_alloc;
vp8_cx_iface.c     [all...]
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 308 img->img_data = yv12->buffer_alloc;
vp8_cx_iface.c     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
vp8_dx_iface.c 310 img->img_data = yv12->buffer_alloc;

Completed in 1268 milliseconds

1 2