HomeSort by relevance Sort by last modified time
    Searched full:pthis (Results 1 - 12 of 12) sorted by null

  /hardware/qcom/media/mm-core/omxcore/src/common/
omx_core_cmp.cpp 48 qc_omx_component *pThis = (qc_omx_component *)obj_ptr;
49 OMX_COMPONENTTYPE* component = &(pThis->m_cmp);
50 memset(&pThis->m_cmp,0,sizeof(OMX_COMPONENTTYPE));
88 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
91 if(pThis)
94 eRet = pThis->component_init(componentName);
99 delete pThis;
114 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
116 if(pThis)
118 eRet = pThis->get_component_version(hComp,componentName,componentVersion,specVersion,componentUUID)
    [all...]
qc_omx_core.c 451 void* pThis = (*(core[cmp_index].fn_ptr))();
452 if(pThis)
455 hComp = qc_omx_create_component_wrapper((OMX_PTR)pThis);
  /hardware/qcom/media/mm-core/src/common/
omx_core_cmp.cpp 48 qc_omx_component *pThis = (qc_omx_component *)obj_ptr;
49 OMX_COMPONENTTYPE* component = &(pThis->m_cmp);
50 memset(&pThis->m_cmp,0,sizeof(OMX_COMPONENTTYPE));
88 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
91 if(pThis)
94 eRet = pThis->component_init(componentName);
99 delete pThis;
114 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
116 if(pThis)
118 eRet = pThis->get_component_version(hComp,componentName,componentVersion,specVersion,componentUUID)
    [all...]
qc_omx_core.c 429 void* pThis = (*(core[cmp_index].fn_ptr))();
430 if(pThis)
433 hComp = qc_omx_create_component_wrapper((OMX_PTR)pThis);
  /external/clang/test/SemaCXX/
pascal-strings.cpp 2 const wchar_t *pascalString = L"\pThis is a Pascal string";
  /external/srec/srec/cfront/
sp_fft.c 138 srfft* pthis; local
143 pthis = (srfft*) CALLOC(1, sizeof(srfft), "srfft");
144 pthis->m_logLength = logLength;
145 pthis->m_length = 1 << logLength;
147 allocate_bitreverse_tbl(pthis);
148 allocate_butterfly_tbl(pthis);
149 allocate_trigonomy_tbl(pthis);
151 return pthis;
171 void allocate_butterfly_tbl(srfft* pthis)
178 m = pthis->m_logLength
    [all...]
  /frameworks/av/media/libstagefright/tests/
DummyRecorder.cpp 29 void *DummyRecorder::threadWrapper(void *pthis) {
30 ALOGV("ThreadWrapper: %p", pthis);
31 DummyRecorder *writer = static_cast<DummyRecorder *>(pthis);
DummyRecorder.h 44 static void *threadWrapper(void *pthis);
  /hardware/qcom/media/mm-video/vidc/venc/src/
omx_video_base.cpp 321 omx_video *pThis = (omx_video *) ctxt;
323 if(!pThis)
334 pthread_mutex_lock(&pThis->m_lock);
335 qsize = pThis->m_cmd_q.m_size;
338 pThis->m_cmd_q.pop_entry(&p1,&p2,&ident);
343 qsize = pThis->m_ftb_q.m_size;
346 pThis->m_ftb_q.pop_entry(&p1,&p2,&ident);
352 qsize = pThis->m_etb_q.m_size;
355 pThis->m_etb_q.pop_entry(&p1,&p2,&ident);
359 pthread_mutex_unlock(&pThis->m_lock)
    [all...]
  /external/srec/srec/include/
sp_fft.h 246 pthis -- a pointer to a srfft object created by new_srfft
251 void delete_srfft(srfft* pthis);
259 pthis -- a pointer to the srfft object
271 void do_real_fft(srfft* pthis, unsigned length, fftdata* data);
279 pthis -- a pointer to the srfft object
291 void do_real_ifft(srfft* pthis, unsigned length, fftdata* data);
303 pthis -- a pointer to the srfft object
308 void allocate_butterfly_tbl(srfft* pthis);
315 pthis -- a pointer to the srfft object
320 void allocate_trigonomy_tbl(srfft* pthis);
    [all...]
  /hardware/qcom/media/mm-video/vidc/vdec/src/
omx_vdec_copper.cpp 625 omx_vdec *pThis = (omx_vdec *) ctxt;
627 if(!pThis)
638 pthread_mutex_lock(&pThis->m_lock);
639 qsize = pThis->m_cmd_q.m_size;
642 pThis->m_cmd_q.pop_entry(&p1,&p2,&ident);
645 if (qsize == 0 && pThis->m_state != OMX_StatePause)
647 qsize = pThis->m_ftb_q.m_size;
650 pThis->m_ftb_q.pop_entry(&p1,&p2,&ident);
654 if (qsize == 0 && pThis->m_state != OMX_StatePause)
656 qsize = pThis->m_etb_q.m_size
    [all...]
omx_vdec.cpp 611 omx_vdec *pThis = (omx_vdec *) ctxt;
613 if(!pThis)
624 pthread_mutex_lock(&pThis->m_lock);
625 qsize = pThis->m_cmd_q.m_size;
628 pThis->m_cmd_q.pop_entry(&p1,&p2,&ident);
631 if (qsize == 0 && pThis->m_state != OMX_StatePause)
633 qsize = pThis->m_ftb_q.m_size;
636 pThis->m_ftb_q.pop_entry(&p1,&p2,&ident);
640 if (qsize == 0 && pThis->m_state != OMX_StatePause)
642 qsize = pThis->m_etb_q.m_size
    [all...]

Completed in 8647 milliseconds