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

1 2

  /external/mesa3d/src/gallium/state_trackers/nine/
nine_buffer_upload.c 65 struct slab_mempool buffer_pool; member in struct:nine_buffer_upload
145 slab_create(&upload->buffer_pool, sizeof(struct nine_subbuffer), 4096);
161 slab_destroy(&upload->buffer_pool);
175 slab_destroy(&upload->buffer_pool);
183 struct nine_subbuffer *buf = slab_alloc_st(&upload->buffer_pool);
222 slab_free_st(&upload->buffer_pool, buf);
234 slab_free_st(&upload->buffer_pool, buf);
275 slab_free_st(&upload->buffer_pool, buf);
  /external/libxcam/modules/ocl/
cl_image_handler.cpp 170 SmartPtr<BufferPool> buffer_pool;
172 buffer_pool = new CLVideoBufferPool ();
184 buffer_pool = new DrmBoBufferPool (display);
186 buffer_pool = new CLBoBufferPool (display, get_context ());
192 buffer_pool.ptr (),
197 XCAM_ASSERT (buffer_pool.ptr ());
198 // buffer_pool->set_swap_flags (_buf_swap_flags, _buf_swap_init_order);
199 buffer_pool->set_video_info (video_info);
203 buffer_pool->reserve (_buf_pool_size),
207 _buf_pool = buffer_pool;
    [all...]
cl_video_buffer.h 27 #include <buffer_pool.h>
  /external/libxcam/xcore/
Makefile.am 12 buffer_pool.cpp \
130 buffer_pool.h \
swapped_buffer.h 25 #include <buffer_pool.h>
x3a_stats_pool.h 25 #include <buffer_pool.h>
buffer_pool.cpp 2 * buffer_pool.cpp - buffer pool
21 #include "buffer_pool.h"
buffer_pool.h 2 * buffer_pool.h - buffer pool
drm_bo_buffer.h 26 #include <buffer_pool.h>
v4l2_buffer_proxy.h 25 #include <buffer_pool.h>
image_handler.h 26 #include <buffer_pool.h>
  /external/libvpx/libvpx/vp9/
vp9_dx_iface.h 38 BufferPool *buffer_pool; member in struct:vpx_codec_alg_priv
vp9_dx_iface.c 64 if (ctx->buffer_pool) {
65 vp9_free_ref_frame_buffers(ctx->buffer_pool);
66 vp9_free_internal_frame_buffers(&ctx->buffer_pool->int_frame_buffers);
69 vpx_free(ctx->buffer_pool);
203 BufferPool *const pool = cm->buffer_pool;
243 ctx->buffer_pool = (BufferPool *)vpx_calloc(1, sizeof(BufferPool));
244 if (ctx->buffer_pool == NULL) return VPX_CODEC_MEM_ERROR;
246 ctx->pbi = vp9_decoder_create(ctx->buffer_pool);
391 RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs;
514 RefCntBuffer *const frame_bufs = ctx->pbi->common.buffer_pool->frame_bufs
    [all...]
vp9_cx_iface.c 111 BufferPool *buffer_pool; member in struct:vpx_codec_alg_priv
    [all...]
  /external/libxcam/modules/soft/
soft_video_buf_allocator.h 25 #include <buffer_pool.h>
  /hardware/intel/common/libmix/mix_video/src/
mixvideo_private.h 39 MixBufferPool *buffer_pool; member in struct:_MixVideoPrivate
mixvideo.c 210 priv->buffer_pool = NULL;
234 MIXUNREF(priv->buffer_pool, mix_bufferpool_unref)
566 priv->buffer_pool = mix_bufferpool_new();
567 if (!priv->buffer_pool) {
573 ret = mix_bufferpool_initialize(priv->buffer_pool, bufpoolsize);
684 priv->frame_manager, priv->buffer_pool, &priv->surface_pool,
704 MIXUNREF(priv->buffer_pool, mix_bufferpool_unref);
821 priv->buffer_pool = mix_bufferpool_new();
822 if (!priv->buffer_pool) {
828 ret = mix_bufferpool_initialize(priv->buffer_pool, bufpoolsize)
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decoder.c 104 pbi->common.buffer_pool = pool;
214 ref_buf = &cm->buffer_pool->frame_bufs[idx].buf;
231 BufferPool *const pool = cm->buffer_pool;
232 RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs;
266 BufferPool *volatile const pool = cm->buffer_pool;
267 RefCntBuffer *volatile const frame_bufs = cm->buffer_pool->frame_bufs;
vp9_decodeframe.c 648 BufferPool *const pool = pbi->common.buffer_pool;
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_onyxc_int.h 254 BufferPool *buffer_pool; member in struct:VP9Common
265 return &cm->buffer_pool->frame_bufs[cm->ref_frame_map[index]].buf;
269 return &cm->buffer_pool->frame_bufs[cm->new_fb_idx].buf;
273 RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs;
  /external/libxcam/
Android.mk 37 xcore/buffer_pool.cpp \
  /external/libvpx/libvpx/examples/
vp9cx_set_ref.c 328 // In VP9, the reference buffers (cm->buffer_pool->frame_bufs[i].buf) are
  /external/libvpx/libvpx/vp9/encoder/
vp9_encoder.c 823 vp9_free_ref_frame_buffers(cm->buffer_pool);
    [all...]
vp9_encoder.h 802 return buf_idx != INVALID_IDX ? &cm->buffer_pool->frame_bufs[buf_idx].buf
vp9_rd.c 577 ? &cm->buffer_pool->frame_bufs[scaled_idx].buf

Completed in 934 milliseconds

1 2