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

1 2 3 4 5

  /dalvik/libdex/
Leb128.cpp 32 int readAndVerifyUnsignedLeb128(const u1** pStream, const u1* limit,
34 const u1* ptr = *pStream;
35 int result = readUnsignedLeb128(pStream);
37 if (((limit != NULL) && (*pStream > limit))
38 || (((*pStream - ptr) == 5) && (ptr[4] > 0x0f))) {
54 int readAndVerifySignedLeb128(const u1** pStream, const u1* limit,
56 const u1* ptr = *pStream;
57 int result = readSignedLeb128(pStream);
59 if (((limit != NULL) && (*pStream > limit))
60 || (((*pStream - ptr) == 5) && (ptr[4] > 0x0f)))
    [all...]
Leb128.h 31 DEX_INLINE int readUnsignedLeb128(const u1** pStream) {
32 const u1* ptr = *pStream;
57 *pStream = ptr;
66 DEX_INLINE int readSignedLeb128(const u1** pStream) {
67 const u1* ptr = *pStream;
100 *pStream = ptr;
113 int readAndVerifyUnsignedLeb128(const u1** pStream, const u1* limit,
125 int readAndVerifySignedLeb128(const u1** pStream, const u1* limit, bool* okay);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_GetCurrent.c 35 LVM_INT32 LVC_Mixer_GetCurrent( LVMixer3_st *pStream)
38 Mix_Private_st *pInstance=(Mix_Private_st *)pStream->PrivateParams;
LVC_Mixer_GetTarget.c 34 LVM_INT32 LVC_Mixer_GetTarget( LVMixer3_st *pStream)
37 Mix_Private_st *pInstance=(Mix_Private_st *)pStream->PrivateParams;
LVC_Mixer_VarSlope_SetTimeConstant.c 34 /* pStream - ptr to Instance Parameter Structure LVMixer3_st for an*/
49 void LVC_Mixer_VarSlope_SetTimeConstant( LVMixer3_st *pStream,
63 Mix_Private_st *pInstance=(Mix_Private_st *)pStream->PrivateParams;
72 Current = LVC_Mixer_GetCurrent( pStream );
73 Target = LVC_Mixer_GetTarget( pStream );
LVC_Mixer_Init.c 38 /* pStream - ptr to Instance Parameter Structure LVMixer3_st for an*/
48 void LVC_Mixer_Init( LVMixer3_st *pStream,
54 Mix_Private_st *pInstance=(Mix_Private_st *)pStream->PrivateParams;
LVC_Mixer_SetTimeConstant.c 33 /* pStream - ptr to Instance Parameter Structure LVMixer3_st for an*/
48 void LVC_Mixer_SetTimeConstant(LVMixer3_st *pStream,
62 Mix_Private_st *pInstance=(Mix_Private_st *)pStream->PrivateParams;
LVC_Mixer.h 78 void LVC_Mixer_SetTarget( LVMixer3_st *pStream,
81 LVM_INT32 LVC_Mixer_GetTarget( LVMixer3_st *pStream);
83 LVM_INT32 LVC_Mixer_GetCurrent( LVMixer3_st *pStream);
85 void LVC_Mixer_Init( LVMixer3_st *pStream,
89 void LVC_Mixer_SetTimeConstant( LVMixer3_st *pStream,
94 void LVC_Mixer_VarSlope_SetTimeConstant( LVMixer3_st *pStream,
LVC_Mixer_SetTarget.c 38 /* pStream - ptr to Instance Parameter Structure LVMixer3_st */
47 void LVC_Mixer_SetTarget(LVMixer3_st *pStream,
53 Mix_Private_st *pInstance=(Mix_Private_st *)pStream->PrivateParams;
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_HuffmanDecoder.h 15 CJBig2_HuffmanDecoder(CJBig2_BitStream *pStream);
JBig2_HuffmanTable.h 18 CJBig2_HuffmanTable(CJBig2_BitStream *pStream);
26 int parseFromCodedBuffer(CJBig2_BitStream *pStream);
JBig2_HuffmanDecoder.cpp 8 CJBig2_HuffmanDecoder::CJBig2_HuffmanDecoder(CJBig2_BitStream *pStream)
10 m_pStream = pStream;
  /external/sonivox/arm-wt-22k/lib_src/
eas_public.c 84 static EAS_RESULT EAS_ParseEvents (S_EAS_DATA *pEASData, S_EAS_STREAM *pStream, EAS_U32 endTime, EAS_INT parseMode);
93 * pStream - stream handle
98 EAS_RESULT EAS_SetStreamParameter (S_EAS_DATA *pEASData, EAS_HANDLE pStream, EAS_I32 param, EAS_I32 value)
102 pParserModule = (S_FILE_PARSER_INTERFACE*) pStream->pParserModule;
104 return (*pParserModule->pfSetData)(pEASData, pStream->handle, param, value);
115 * pStream - stream handle
120 EAS_RESULT EAS_GetStreamParameter (S_EAS_DATA *pEASData, EAS_HANDLE pStream, EAS_I32 param, EAS_I32 *pValue)
124 pParserModule = (S_FILE_PARSER_INTERFACE*) pStream->pParserModule;
126 return (*pParserModule->pfGetData)(pEASData, pStream->handle, param, pValue);
140 EAS_BOOL EAS_StreamReady (S_EAS_DATA *pEASData, EAS_HANDLE pStream)
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_public.c 84 static EAS_RESULT EAS_ParseEvents (S_EAS_DATA *pEASData, S_EAS_STREAM *pStream, EAS_U32 endTime, EAS_INT parseMode);
93 * pStream - stream handle
98 EAS_RESULT EAS_SetStreamParameter (S_EAS_DATA *pEASData, EAS_HANDLE pStream, EAS_I32 param, EAS_I32 value)
102 pParserModule = (S_FILE_PARSER_INTERFACE*) pStream->pParserModule;
104 return (*pParserModule->pfSetData)(pEASData, pStream->handle, param, value);
115 * pStream - stream handle
120 EAS_RESULT EAS_GetStreamParameter (S_EAS_DATA *pEASData, EAS_HANDLE pStream, EAS_I32 param, EAS_I32 *pValue)
124 pParserModule = (S_FILE_PARSER_INTERFACE*) pStream->pParserModule;
126 return (*pParserModule->pfGetData)(pEASData, pStream->handle, param, pValue);
140 EAS_BOOL EAS_StreamReady (S_EAS_DATA *pEASData, EAS_HANDLE pStream)
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_public.c 84 static EAS_RESULT EAS_ParseEvents (S_EAS_DATA *pEASData, S_EAS_STREAM *pStream, EAS_U32 endTime, EAS_INT parseMode);
93 * pStream - stream handle
98 EAS_RESULT EAS_SetStreamParameter (S_EAS_DATA *pEASData, EAS_HANDLE pStream, EAS_I32 param, EAS_I32 value)
102 pParserModule = (S_FILE_PARSER_INTERFACE*) pStream->pParserModule;
104 return (*pParserModule->pfSetData)(pEASData, pStream->handle, param, value);
115 * pStream - stream handle
120 EAS_RESULT EAS_GetStreamParameter (S_EAS_DATA *pEASData, EAS_HANDLE pStream, EAS_I32 param, EAS_I32 *pValue)
124 pParserModule = (S_FILE_PARSER_INTERFACE*) pStream->pParserModule;
126 return (*pParserModule->pfGetData)(pEASData, pStream->handle, param, pValue);
140 EAS_BOOL EAS_StreamReady (S_EAS_DATA *pEASData, EAS_HANDLE pStream)
    [all...]
  /device/asus/flo/camera/QCamera2/HAL/
QCameraChannel.cpp 169 QCameraStream *pStream = new QCameraStream(allocator,
174 if (pStream == NULL) {
179 rc = pStream->init(streamInfoBuf, minStreamBufNum, stream_cb, userdata);
181 mStreams[m_numStreams] = pStream;
184 delete pStream;
216 QCameraStream *pStream = getStreamByServerID(bundleInfo.stream_ids[i]);
217 if (pStream != NULL) {
218 if (pStream->isTypeOf(CAM_STREAM_TYPE_METADATA)) {
228 rc = pStream->setParameter(param);
623 QCameraStream *pStream = NULL
    [all...]
  /device/lge/hammerhead/camera/QCamera2/HAL/
QCameraChannel.cpp 169 QCameraStream *pStream = new QCameraStream(allocator,
174 if (pStream == NULL) {
179 rc = pStream->init(streamInfoBuf, minStreamBufNum, stream_cb, userdata);
181 mStreams[m_numStreams] = pStream;
184 delete pStream;
216 QCameraStream *pStream = getStreamByServerID(bundleInfo.stream_ids[i]);
217 if (pStream != NULL) {
218 if (pStream->isTypeOf(CAM_STREAM_TYPE_METADATA)) {
228 rc = pStream->setParameter(param);
623 QCameraStream *pStream = NULL
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_edit/
fpdf_edit_content.cpp 55 CPDF_Stream* pStream = FX_NEW CPDF_Stream(NULL, 0, NULL);
56 pStream->SetData(buf.GetBuffer(), buf.GetLength(), FALSE, FALSE);
57 m_pDocument->AddIndirectObject(pStream);
58 pPageDict->SetAtReference("Contents", m_pDocument, pStream->GetObjNum());
93 CPDF_Stream* pStream = pImageObj->m_pImage->GetStream();
94 FX_DWORD dwSavedObjNum = pStream->GetObjNum();
95 CFX_ByteString name = RealizeResource(pStream, "XObject");
98 pImageObj->m_pImage = m_pDocument->GetPageData()->GetImage(pStream);
108 CPDF_Stream* pStream = FX_NEW CPDF_Stream(NULL, 0, NULL);
115 pStream->InitStream((FX_LPBYTE)data, size, pFormDict);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
perhist.h 57 virtual HRESULT WINAPI LoadHistory(IStream *pStream,IBindCtx *pbc) = 0;
58 virtual HRESULT WINAPI SaveHistory(IStream *pStream) = 0;
69 HRESULT (WINAPI *LoadHistory)(IPersistHistory *This,IStream *pStream,IBindCtx *pbc);
70 HRESULT (WINAPI *SaveHistory)(IPersistHistory *This,IStream *pStream);
83 #define IPersistHistory_LoadHistory(This,pStream,pbc) (This)->lpVtbl->LoadHistory(This,pStream,pbc)
84 #define IPersistHistory_SaveHistory(This,pStream) (This)->lpVtbl->SaveHistory(This,pStream)
89 HRESULT WINAPI IPersistHistory_LoadHistory_Proxy(IPersistHistory *This,IStream *pStream,IBindCtx *pbc);
91 HRESULT WINAPI IPersistHistory_SaveHistory_Proxy(IPersistHistory *This,IStream *pStream);
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_cache.cpp 14 CPDF_Stream* pStream;
53 pCACHEINFO[i++].pStream = ((CPDF_ImageCache*)value)->GetStream();
59 ((CPDF_ImageCache*)(m_ImageCaches[pCACHEINFO[i].pStream]))->m_dwTimeCount = i;
65 ClearImageCache(pCACHEINFO[i++].pStream);
69 ClearImageCache(pCACHEINFO[i++].pStream);
73 void CPDF_PageRenderCache::ClearImageCache(CPDF_Stream* pStream)
75 FX_LPVOID value = m_ImageCaches.GetValueAt(pStream);
77 m_ImageCaches.RemoveKey(pStream);
82 m_ImageCaches.RemoveKey(pStream);
96 FX_DWORD CPDF_PageRenderCache::GetCachedSize(CPDF_Stream* pStream) const
    [all...]
  /device/moto/shamu/camera/QCamera2/HAL/
QCameraChannel.cpp 196 QCameraStream *pStream = new QCameraStream(allocator,
202 if (pStream == NULL) {
207 rc = pStream->init(streamInfoBuf, minStreamBufNum,
210 mStreams[m_numStreams] = pStream;
213 delete pStream;
271 QCameraStream *pStream = getStreamByServerID(bundleInfo.stream_ids[i]);
272 if (pStream != NULL) {
273 if (pStream->isTypeOf(CAM_STREAM_TYPE_METADATA)) {
283 rc = pStream->setParameter(param);
791 QCameraStream *pStream = NULL
    [all...]
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_m4v_config_parser.cpp 609 mp4StreamType *pStream, /* Input Stream */
615 uint32 dataBitPos = pStream->dataBitPos;
616 uint32 bitPos = pStream->bitPos;
625 if (dataBytePos > pStream->numBytes - 4)
627 pStream->bitBuf = 0;
628 for (i = 0; i < pStream->numBytes - dataBytePos; i++)
630 pStream->bitBuf |= pStream->data[dataBytePos+i];
631 pStream->bitBuf <<= 8;
633 pStream->bitBuf <<= 8 * (3 - i)
    [all...]
intel_m4v_config_parser.h 62 mp4StreamType *pStream,
68 mp4StreamType *pStream,
73 mp4StreamType *pStream,
81 mp4StreamType *pStream
87 int16 DecodeUserData(mp4StreamType *pStream);
  /hardware/ti/omap3/omx/ti_omx_config_parser/inc/
ti_m4v_config_parser.h 73 mp4StreamType *pStream,
79 mp4StreamType *pStream,
84 mp4StreamType *pStream,
90 mp4StreamType *pStream
108 int16 DecodeUserData(mp4StreamType *pStream);
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_m4v_config_parser.cpp 624 mp4StreamType *pStream, /* Input Stream */
630 uint32 dataBitPos = pStream->dataBitPos;
631 uint32 bitPos = pStream->bitPos;
640 if (dataBytePos > pStream->numBytes - 4)
642 pStream->bitBuf = 0;
643 for (i = 0;i < pStream->numBytes - dataBytePos;i++)
645 pStream->bitBuf |= pStream->data[dataBytePos+i];
646 pStream->bitBuf <<= 8;
648 pStream->bitBuf <<= 8 * (3 - i)
    [all...]

Completed in 613 milliseconds

1 2 3 4 5