HomeSort by relevance Sort by last modified time
    Searched refs:pcontext (Results 1 - 22 of 22) sorted by null

  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
vbp_h264_parser.h 15 uint32 vbp_init_parser_entries_h264(vbp_context *pcontext);
20 uint32 vbp_allocate_query_data_h264(vbp_context *pcontext);
25 uint32 vbp_free_query_data_h264(vbp_context *pcontext);
30 uint32 vbp_parse_init_data_h264(vbp_context *pcontext);
36 uint32 vbp_parse_start_code_h264(vbp_context *pcontext);
41 uint32 vbp_process_parsing_result_h264(vbp_context *pcontext, int list_index);
46 uint32 vbp_populate_query_data_h264(vbp_context *pcontext);
vbp_mp42_parser.h 16 uint32 vbp_init_parser_entries_mp42(vbp_context *pcontext);
22 uint32 vbp_allocate_query_data_mp42(vbp_context *pcontext);
27 uint32 vbp_free_query_data_mp42(vbp_context *pcontext);
32 uint32 vbp_parse_init_data_mp42(vbp_context *pcontext);
37 uint32 vbp_parse_start_code_mp42(vbp_context *pcontext);
42 uint32 vbp_process_parsing_result_mp42(vbp_context *pcontext, int list_index);
47 uint32 vbp_populate_query_data_mp42(vbp_context *pcontext);
vbp_vc1_parser.h 16 uint32 vbp_init_parser_entries_vc1(vbp_context *pcontext);
21 uint32 vbp_allocate_query_data_vc1(vbp_context *pcontext);
26 uint32 vbp_free_query_data_vc1(vbp_context *pcontext);
31 uint32 vbp_parse_init_data_vc1(vbp_context *pcontext);
41 uint32 vbp_parse_start_code_vc1(vbp_context *pcontext);
46 uint32 vbp_process_parsing_result_vc1(vbp_context *pcontext, int list_index);
51 uint32 vbp_populate_query_data_vc1(vbp_context *pcontext);
vbp_utils.c 32 static uint32 vbp_utils_uninitialize_context(vbp_context *pcontext)
36 if (NULL == pcontext)
43 g_free(pcontext->parser_ops);
44 pcontext->parser_ops = NULL;
47 if (pcontext->fd_parser)
49 dlclose(pcontext->fd_parser);
50 pcontext->fd_parser = NULL;
61 static uint32 vbp_utils_initialize_context(vbp_context *pcontext)
66 switch (pcontext->parser_type)
91 pcontext->fd_parser = dlopen(parser_name, RTLD_LAZY)
398 vbp_context *pcontext = NULL; local
    [all...]
vbp_loader.c 57 vbp_context *pcontext = (vbp_context *)hcontext; local
59 if (MAGIC_NUMBER != pcontext->identifier)
65 error = vbp_utils_destroy_context(pcontext);
80 vbp_context *pcontext; local
89 pcontext = (vbp_context *)hcontext;
91 if (MAGIC_NUMBER != pcontext->identifier)
97 error = vbp_utils_parse_buffer(pcontext, data, size, init_data_flag);
111 vbp_context *pcontext; local
120 pcontext = (vbp_context *)hcontext;
122 if (MAGIC_NUMBER != pcontext->identifier
142 vbp_context *pcontext; local
    [all...]
vbp_utils.h 89 uint32 vbp_utils_destroy_context(vbp_context *pcontext);
94 uint32 vbp_utils_parse_buffer(vbp_context *pcontext, uint8 *data, uint32 size, uint8 init_data_flag);
99 uint32 vbp_utils_query(vbp_context *pcontext, void **data);
104 uint32 vbp_utils_flush(vbp_context *pcontext);
vbp_mp42_parser.c 29 void vbp_on_vop_mp42(vbp_context *pcontext, int list_index);
30 void vbp_on_vop_svh_mp42(vbp_context *pcontext, int list_index);
31 void vbp_dump_query_data(vbp_context *pcontext, int list_index);
33 uint32 vbp_process_slices_mp42(vbp_context *pcontext, int list_index);
34 uint32 vbp_process_slices_svh_mp42(vbp_context *pcontext, int list_index);
48 uint32 vbp_init_parser_entries_mp42( vbp_context *pcontext)
50 if (NULL == pcontext->parser_ops)
55 pcontext->parser_ops->init = dlsym(pcontext->fd_parser, "viddec_mp4_init");
56 if (pcontext->parser_ops->init == NULL
    [all...]
vbp_vc1_parser.c 42 uint32 vbp_init_parser_entries_vc1(vbp_context *pcontext)
44 if (NULL == pcontext->parser_ops)
50 pcontext->parser_ops->init = dlsym(pcontext->fd_parser, "viddec_vc1_init");
51 if (NULL == pcontext->parser_ops->init)
57 pcontext->parser_ops->parse_sc = viddec_parse_sc;
59 pcontext->parser_ops->parse_syntax = dlsym(pcontext->fd_parser, "viddec_vc1_parse");
60 if (NULL == pcontext->parser_ops->parse_syntax)
66 pcontext->parser_ops->get_cxt_size = dlsym(pcontext->fd_parser, "viddec_vc1_get_context_size")
    [all...]
vbp_h264_parser.c 94 uint32 vbp_init_parser_entries_h264(vbp_context *pcontext)
96 if (NULL == pcontext->parser_ops)
100 pcontext->parser_ops->init = dlsym(pcontext->fd_parser, "viddec_h264_init");
101 if (NULL == pcontext->parser_ops->init)
107 pcontext->parser_ops->parse_sc = viddec_parse_sc;
109 pcontext->parser_ops->parse_syntax = dlsym(pcontext->fd_parser, "viddec_h264_parse");
110 if (NULL == pcontext->parser_ops->parse_syntax)
116 pcontext->parser_ops->get_cxt_size = dlsym(pcontext->fd_parser, "viddec_h264_get_context_size")
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_resource.c 45 nvc0_init_resource_functions(struct pipe_context *pcontext)
47 pcontext->get_transfer = u_get_transfer_vtbl;
48 pcontext->transfer_map = u_transfer_map_vtbl;
49 pcontext->transfer_flush_region = u_transfer_flush_region_vtbl;
50 pcontext->transfer_unmap = u_transfer_unmap_vtbl;
51 pcontext->transfer_destroy = u_transfer_destroy_vtbl;
52 pcontext->transfer_inline_write = u_transfer_inline_write_vtbl;
53 pcontext->create_surface = nvc0_surface_create;
54 pcontext->surface_destroy = nv50_surface_destroy;
nvc0_resource.h 26 nvc0_init_resource_functions(struct pipe_context *pcontext);
48 nvc0_miptree_transfer_new(struct pipe_context *pcontext,
54 nvc0_miptree_transfer_del(struct pipe_context *pcontext,
57 nvc0_miptree_transfer_map(struct pipe_context *pcontext,
60 nvc0_miptree_transfer_unmap(struct pipe_context *pcontext,
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_resource.c 87 nv50_init_resource_functions(struct pipe_context *pcontext)
89 pcontext->get_transfer = u_get_transfer_vtbl;
90 pcontext->transfer_map = u_transfer_map_vtbl;
91 pcontext->transfer_flush_region = u_transfer_flush_region_vtbl;
92 pcontext->transfer_unmap = u_transfer_unmap_vtbl;
93 pcontext->transfer_destroy = u_transfer_destroy_vtbl;
94 pcontext->transfer_inline_write = u_transfer_inline_write_vtbl;
95 pcontext->create_surface = nv50_surface_create;
96 pcontext->surface_destroy = nv50_surface_destroy;
nv50_resource.h 14 nv50_init_resource_functions(struct pipe_context *pcontext);
122 nv50_miptree_transfer_new(struct pipe_context *pcontext,
128 nv50_miptree_transfer_del(struct pipe_context *pcontext,
131 nv50_miptree_transfer_map(struct pipe_context *pcontext,
134 nv50_miptree_transfer_unmap(struct pipe_context *pcontext,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
callobj.h 145 virtual HRESULT WINAPI Unmarshal(PVOID pBuffer,ULONG cbBuffer,RPCOLEDATAREP dataRep,CALLFRAME_MARSHALCONTEXT *pcontext,ULONG *pcbUnmarshalled) = 0;
146 virtual HRESULT WINAPI ReleaseMarshalData(PVOID pBuffer,ULONG cbBuffer,ULONG ibFirstRelease,RPCOLEDATAREP dataRep,CALLFRAME_MARSHALCONTEXT *pcontext) = 0;
171 HRESULT (WINAPI *Unmarshal)(ICallFrame *This,PVOID pBuffer,ULONG cbBuffer,RPCOLEDATAREP dataRep,CALLFRAME_MARSHALCONTEXT *pcontext,ULONG *pcbUnmarshalled);
172 HRESULT (WINAPI *ReleaseMarshalData)(ICallFrame *This,PVOID pBuffer,ULONG cbBuffer,ULONG ibFirstRelease,RPCOLEDATAREP dataRep,CALLFRAME_MARSHALCONTEXT *pcontext);
199 #define ICallFrame_Unmarshal(This,pBuffer,cbBuffer,dataRep,pcontext,pcbUnmarshalled) (This)->lpVtbl->Unmarshal(This,pBuffer,cbBuffer,dataRep,pcontext,pcbUnmarshalled)
200 #define ICallFrame_ReleaseMarshalData(This,pBuffer,cbBuffer,ibFirstRelease,dataRep,pcontext) (This)->lpVtbl->ReleaseMarshalData(This,pBuffer,cbBuffer,ibFirstRelease,dataRep,pcontext)
236 HRESULT WINAPI ICallFrame_Unmarshal_Proxy(ICallFrame *This,PVOID pBuffer,ULONG cbBuffer,RPCOLEDATAREP dataRep,CALLFRAME_MARSHALCONTEXT *pcontext,ULONG *pcbUnmarshalled);
238 HRESULT WINAPI ICallFrame_ReleaseMarshalData_Proxy(ICallFrame *This,PVOID pBuffer,ULONG cbBuffer,ULONG ibFirstRelease,RPCOLEDATAREP dataRep,CALLFRAME_MARSHALCONTEXT *pcontext);
    [all...]
  /external/libnfc-nxp/src/
phLlcNfc.c 65 * \param[in] pContext LLC context provided by the upper layer. The LLC
78 void *pContext,
92 * \param[in] pContext LLC context is provided by the upper layer. The LLC
109 void *pContext,
125 * \param[in] pContext LLC context is provided by the upper layer. The LLC
141 void *pContext,
199 psReference->plower_if->pcontext = ps_llc_ctxt;
225 void *pContext,
230 phLlcNfc_Context_t *ps_llc_ctxt = (phLlcNfc_Context_t*)pContext;
294 void *pContext,
    [all...]
phHciNfc_Generic.c 93 uint32_t resp_timer_id, void *pContext
272 uint32_t resp_timer_id, void *pContext
527 status = plower_if->release((void *)plower_if->pcontext,
588 status = plower_if->send((void *)plower_if->pcontext,
632 status = plower_if->receive((void *)plower_if->pcontext,
1684 void *pcontext = psHciContext->p_upper_context; local
1733 void *pcontext = psHciContext->p_upper_context; local
1785 void *pcontext = psHciContext->p_upper_context; local
    [all...]
phLlcNfc_Interface.c 60 void *pContext,
68 void *pContext,
142 result = psLlcCtxt->lower_if.init( psLlcCtxt->lower_if.pcontext,
179 psLlcCtxt->lower_if.pcontext,
187 psLlcCtxt->lower_if.pcontext,
258 result = psLlcCtxt->lower_if.send(psLlcCtxt->lower_if.pcontext,
281 void *pContext,
292 phLlcNfc_Context_t *ps_llc_ctxt = (phLlcNfc_Context_t*)pContext;
647 void *pContext,
660 phLlcNfc_Context_t *ps_llc_ctxt = (phLlcNfc_Context_t*)pContext;
    [all...]
phHciNfc_Sequence.c 1350 void *pcontext = psHciContext->p_upper_context; local
1478 void *pcontext = local
2295 void *pcontext = psHciContext->p_upper_context; local
    [all...]
phDnldNfc.c 998 status = plower_if->release((void *)plower_if->pcontext,
    [all...]
phHciNfc.c 174 status = plower_if->init((void *)plower_if->pcontext,
    [all...]
  /external/libnfc-nxp/inc/
phNfcInterface.h 247 * \param [in] pContext Context for the Callback Function
256 void *pContext,
268 * \param [in] pContext Context for the Callback Function
276 void *pContext,
290 * \param [in] pContext Context pointer for the Generic Interface.
295 void *pContext,
308 * \param [in] pContext Context pointer for sending the data.
317 void *pContext,
333 void *pcontext; member in struct:phNfc_sLowerIF
  /external/libnfc-nxp/Linux_x86/
phDal4Nfc.c 177 psRefer->plower_if->pcontext = pgDalContext;
206 NFCSTATUS phDal4Nfc_Unregister(void *pContext, void *pHwRef )
210 if ((NULL == pContext) && (NULL == pHwRef))
241 NFCSTATUS phDal4Nfc_Init(void *pContext, void *pHwRef )
247 if ((NULL != pContext) && (NULL != pHwRef))
249 pContext = pgDalContext;
290 NFCSTATUS phDal4Nfc_Shutdown( void *pContext, void *pHwRef)
295 // if (pContext == NULL)
377 NFCSTATUS phDal4Nfc_Write( void *pContext, void *pHwRef,uint8_t *pBuffer, uint16_t length)
385 if ((NULL != pContext) && (NULL != pHwRef)&
    [all...]

Completed in 319 milliseconds