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

1 2

  /external/libvpx/libvpx/test/
user_priv_test.cc 35 void CheckUserPrivateData(void *user_priv, int *target) {
37 EXPECT_EQ(reinterpret_cast<void *>(target), user_priv) << local
38 "user_priv pointer value does not match.";
41 // Decodes |filename|. Passes in user_priv data when calling DecodeFrame and
42 // compares the user_priv from return img with the original user_priv to see if
57 void *user_priv = reinterpret_cast<void *>(&frame_num); local
60 (frame_num == 0) ? NULL : user_priv);
71 CheckUserPrivateData(img->user_priv, NULL);
73 CheckUserPrivateData(img->user_priv, &frame_num)
    [all...]
external_frame_buffer_test.cc 153 int get_vp9_frame_buffer(void *user_priv, size_t min_size,
156 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
162 int release_vp9_frame_buffer(void *user_priv,
165 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
170 int get_vp9_zero_frame_buffer(void *user_priv, size_t min_size,
173 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
178 int get_vp9_one_less_byte_frame_buffer(void *user_priv, size_t min_size,
181 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
186 int do_not_release_vp9_frame_buffer(void *user_priv,
188 (void)user_priv;
    [all...]
decode_test_driver.h 58 void *user_priv);
88 vpx_release_frame_buffer_cb_fn_t cb_release, void *user_priv) {
91 &decoder_, cb_get, cb_release, user_priv);
decode_test_driver.cc 32 void *user_priv) {
38 user_priv, 0));
  /external/libvpx/libvpx/vpx/
vpx_decoder.h 210 * \param[in] user_priv Application specific data to associate with
223 void *user_priv,
260 typedef void (*vpx_codec_put_frame_cb_fn_t)(void *user_priv,
271 * \param[in] user_priv User's private data
281 void *user_priv);
300 typedef void (*vpx_codec_put_slice_cb_fn_t)(void *user_priv,
313 * \param[in] user_priv User's private data
323 void *user_priv);
vpx_image.h 139 void *user_priv; /**< may be set by the application to associate data member in struct:vpx_image
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vpx_decoder.h 214 * \param[in] user_priv Application specific data to associate with
227 void *user_priv,
264 typedef void (*vpx_codec_put_frame_cb_fn_t)(void *user_priv,
275 * \param[in] user_priv User's private data
285 void *user_priv);
304 typedef void (*vpx_codec_put_slice_cb_fn_t)(void *user_priv,
317 * \param[in] user_priv User's private data
327 void *user_priv);
vpx_image.h 135 void *user_priv; /**< may be set by the application to associate data member in struct:vpx_image
  /external/libvpx/libvpx/vpx/src/
vpx_decoder.c 110 void *user_priv,
122 user_priv, deadline);
143 void *user_priv) {
153 ctx->priv->dec.put_frame_cb.user_priv = user_priv;
163 void *user_priv) {
173 ctx->priv->dec.put_slice_cb.user_priv = user_priv;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
vpx_decoder.c 120 void *user_priv,
132 user_priv, deadline);
153 void *user_priv) {
163 ctx->priv->dec.put_frame_cb.user_priv = user_priv;
173 void *user_priv) {
183 ctx->priv->dec.put_slice_cb.user_priv = user_priv;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
external_frame_buffer_test.cc 150 int get_vp9_frame_buffer(void *user_priv, size_t min_size,
153 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
159 int release_vp9_frame_buffer(void *user_priv,
162 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
167 int get_vp9_zero_frame_buffer(void *user_priv, size_t min_size,
170 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
175 int get_vp9_one_less_byte_frame_buffer(void *user_priv, size_t min_size,
178 reinterpret_cast<ExternalFrameBufferList*>(user_priv);
183 int do_not_release_vp9_frame_buffer(void *user_priv,
185 (void)user_priv;
    [all...]
decode_test_driver.h 82 vpx_release_frame_buffer_cb_fn_t cb_release, void *user_priv) {
85 &decoder_, cb_get, cb_release, user_priv);
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 14 void *user_priv) {
50 img->user_priv = user_priv;
vp9_dx_iface.c 280 void *user_priv, int64_t deadline) {
328 yuvconfig2image(&ctx->img, &sd, user_priv);
412 void *user_priv, long deadline) {
450 res = decode_one(ctx, &data_start_copy, frame_size, user_priv,
458 res = decode_one(ctx, &data_start, data_sz, user_priv, deadline);
483 res = decode_one(ctx, &data_start_copy, frame_size, user_priv,
494 user_priv, deadline);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_context.c 42 if (!push->user_priv)
44 nv30 = container_of(push->user_priv, nv30, bufctx);
133 nv30->base.pushbuf->user_priv = push->user_priv; /* hack at validate time */
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
vp9_iface_common.h 14 void *user_priv) {
46 img->user_priv = user_priv;
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 66 void *user_priv; member in struct:vpx_codec_alg_priv
253 void *user_priv)
276 img->user_priv = user_priv;
326 void *user_priv,
505 ctx->user_priv = user_priv;
556 yuvconfig2image(&ctx->img, &sd, ctx->user_priv);
  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 199 void *user_priv,
327 void *user_priv; member in struct:vpx_codec_priv_cb_pair
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderVP9HWR.h 92 friend int reallocVP9FrameBuffer(void *user_priv, unsigned int new_size, vpx_codec_frame_buffer_t *fb);
  /bionic/libc/kernel/uapi/drm/
nouveau_drm.h 65 uint64_t user_priv; member in struct:drm_nouveau_gem_pushbuf_bo
  /external/kernel-headers/original/uapi/drm/
nouveau_drm.h 74 uint64_t user_priv; member in struct:drm_nouveau_gem_pushbuf_bo
  /external/libdrm/include/drm/
nouveau_drm.h 130 uint64_t user_priv; member in struct:drm_nouveau_gem_pushbuf_bo
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
vp8_dx_iface.c 72 void *user_priv; member in struct:vpx_codec_alg_priv
287 void *user_priv)
309 img->user_priv = user_priv;
359 void *user_priv,
562 ctx->user_priv = user_priv;
613 yuvconfig2image(&ctx->img, &sd, ctx->user_priv);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/internal/
vpx_codec_internal.h 200 void *user_priv,
360 void *user_priv; member in struct:vpx_codec_priv_cb_pair
  /external/libdrm/nouveau/
pushbuf.c 132 kbo = (void *)(unsigned long)kref->user_priv;
203 kref->user_priv = (unsigned long)bo;
295 bo = (void *)(unsigned long)kref->user_priv;
367 bo = (void *)(unsigned long)kref->user_priv;
411 bo = (void *)(unsigned long)kref->user_priv;
442 struct nouveau_bo *bo = (void *)(unsigned long)kref->user_priv;
613 unsigned long priv = kref++->user_priv;

Completed in 656 milliseconds

1 2