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

1 2 3 4 5 6 7

  /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);
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
print.h 38 out_stream() : pStream(nullptr) {}
39 explicit out_stream(std::stringstream& stream) : pStream(&stream) {}
42 if (pStream) {
43 return *pStream;
49 std::stringstream* pStream;
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_GetCurrent.c 35 LVM_FLOAT LVC_Mixer_GetCurrent( LVMixer3_FLOAT_st *pStream)
38 Mix_Private_FLOAT_st *pInstance = (Mix_Private_FLOAT_st *)pStream->PrivateParams;
43 LVM_INT32 LVC_Mixer_GetCurrent( LVMixer3_st *pStream)
46 Mix_Private_st *pInstance=(Mix_Private_st *)pStream->PrivateParams;
LVC_Mixer_GetTarget.c 34 LVM_FLOAT LVC_Mixer_GetTarget( LVMixer3_FLOAT_st *pStream)
37 Mix_Private_FLOAT_st *pInstance = (Mix_Private_FLOAT_st *)pStream->PrivateParams;
43 LVM_INT32 LVC_Mixer_GetTarget( LVMixer3_st *pStream)
46 Mix_Private_st *pInstance=(Mix_Private_st *)pStream->PrivateParams;
LVC_Mixer.h 105 void LVC_Mixer_SetTarget( LVMixer3_FLOAT_st *pStream,
108 void LVC_Mixer_SetTarget( LVMixer3_st *pStream,
112 LVM_FLOAT LVC_Mixer_GetTarget( LVMixer3_FLOAT_st *pStream);
114 LVM_INT32 LVC_Mixer_GetTarget( LVMixer3_st *pStream);
118 LVM_FLOAT LVC_Mixer_GetCurrent( LVMixer3_FLOAT_st *pStream);
120 LVM_INT32 LVC_Mixer_GetCurrent( LVMixer3_st *pStream);
124 void LVC_Mixer_Init( LVMixer3_FLOAT_st *pStream,
128 void LVC_Mixer_Init( LVMixer3_st *pStream,
134 void LVC_Mixer_SetTimeConstant( LVMixer3_FLOAT_st *pStream,
139 void LVC_Mixer_SetTimeConstant( LVMixer3_st *pStream,
    [all...]
LVC_Mixer_Init.c 38 /* pStream - ptr to Instance Parameter Structure LVMixer3_st for an*/
48 void LVC_Mixer_Init( LVMixer3_FLOAT_st *pStream,
53 Mix_Private_FLOAT_st *pInstance = (Mix_Private_FLOAT_st *)pStream->PrivateParams;
60 void LVC_Mixer_Init( LVMixer3_st *pStream,
66 Mix_Private_st *pInstance=(Mix_Private_st *)pStream->PrivateParams;
LVC_Mixer_SetTarget.c 38 /* pStream - ptr to Instance Parameter Structure LVMixer3_st */
47 void LVC_Mixer_SetTarget(LVMixer3_FLOAT_st *pStream,
50 Mix_Private_FLOAT_st *pInstance = (Mix_Private_FLOAT_st *)pStream->PrivateParams;
54 void LVC_Mixer_SetTarget(LVMixer3_st *pStream,
60 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_FLOAT_st *pStream,
78 Mix_Private_FLOAT_st *pInstance = (Mix_Private_FLOAT_st *)pStream->PrivateParams;
114 void LVC_Mixer_VarSlope_SetTimeConstant( LVMixer3_st *pStream,
128 Mix_Private_st *pInstance=(Mix_Private_st *)pStream->PrivateParams;
137 Current = LVC_Mixer_GetCurrent( pStream );
138 Target = LVC_Mixer_GetTarget( pStream );
LVC_Mixer_SetTimeConstant.c 33 /* pStream - ptr to Instance Parameter Structure LVMixer3_st for an*/
48 void LVC_Mixer_SetTimeConstant(LVMixer3_FLOAT_st *pStream,
77 Mix_Private_FLOAT_st *pInstance = (Mix_Private_FLOAT_st *)pStream->PrivateParams;
92 void LVC_Mixer_SetTimeConstant(LVMixer3_st *pStream,
106 Mix_Private_st *pInstance=(Mix_Private_st *)pStream->PrivateParams;
  /libcore/ojluni/src/main/java/sun/misc/
HexDumpEncoder.java 84 hexDigit(pStream, (byte)((offset >>> 8) & 0xff));
85 hexDigit(pStream, (byte)(offset & 0xff));
86 pStream.print(": ");
93 hexDigit(pStream, buf[off]);
94 pStream.print(" ");
97 pStream.print(" ");
103 pStream.print(" ");
105 pStream.print(" ");
108 pStream.print(" ");
111 pStream.print(".")
    [all...]
  /external/pdfium/core/fpdfapi/parser/
cpdf_stream_acc.cpp 19 void CPDF_StreamAcc::LoadAllData(const CPDF_Stream* pStream,
23 if (!pStream)
26 m_pStream = pStream;
27 if (pStream->IsMemoryBased() && (!pStream->HasFilter() || bRawAccess)) {
28 m_dwSize = pStream->GetRawSize();
29 m_pData = pStream->GetRawData();
32 uint32_t dwSrcSize = pStream->GetRawSize();
37 if (!pStream->IsMemoryBased()) {
39 if (!pStream->ReadRawData(0, pSrcData, dwSrcSize)
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_metadata.cpp 19 CPDF_Stream* pStream = pRoot->GetStreamFor("Metadata");
20 if (!pStream)
24 acc.LoadAllData(pStream, false);
  /external/pdfium/core/fxcodec/jbig2/
JBig2_HuffmanDecoder.h 14 explicit CJBig2_HuffmanDecoder(CJBig2_BitStream* pStream);
JBig2_HuffmanTable.cpp 25 CJBig2_HuffmanTable::CJBig2_HuffmanTable(CJBig2_BitStream* pStream)
27 m_bOK = ParseFromCodedBuffer(pStream);
44 bool CJBig2_HuffmanTable::ParseFromCodedBuffer(CJBig2_BitStream* pStream) {
46 if (pStream->read1Byte(&cTemp) == -1)
54 if (pStream->readInteger(&HTLOW) == -1 ||
55 pStream->readInteger(&HTHIGH) == -1) {
67 if ((pStream->readNBits(HTPS, &PREFLEN[NTEMP]) == -1) ||
68 (pStream->readNBits(HTRS, &RANGELEN[NTEMP]) == -1) ||
79 if (pStream->readNBits(HTPS, &PREFLEN[NTEMP]) == -1)
86 if (pStream->readNBits(HTPS, &PREFLEN[NTEMP]) == -1
    [all...]
JBig2_ArithDecoder.h 21 explicit CJBig2_ArithDecoder(CJBig2_BitStream* pStream);
JBig2_PddProc.h 24 CJBig2_PatternDict* decode_MMR(CJBig2_BitStream* pStream, IFX_Pause* pPause);
  /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/pdfium/core/fpdfapi/render/
cpdf_pagerendercache.cpp 17 CPDF_Stream* pStream;
49 pCACHEINFO[i++].pStream = it.second->GetStream();
58 m_ImageCache[pCACHEINFO[i].pStream]->m_dwTimeCount = i;
64 ClearImageCacheEntry(pCACHEINFO[i++].pStream);
67 ClearImageCacheEntry(pCACHEINFO[i++].pStream);
72 void CPDF_PageRenderCache::ClearImageCacheEntry(CPDF_Stream* pStream) {
73 auto it = m_ImageCache.find(pStream);
83 CPDF_Stream* pStream,
90 const auto it = m_ImageCache.find(pStream);
96 new CPDF_ImageCacheEntry(m_pPage->m_pDocument, pStream);
    [all...]
cpdf_pagerendercache.h 30 void ResetBitmap(CPDF_Stream* pStream, const CFX_DIBitmap* pBitmap);
36 bool StartGetCachedBitmap(CPDF_Stream* pStream,
47 void ClearImageCacheEntry(CPDF_Stream* pStream);
  /device/google/marlin/camera/QCamera2/HAL/
QCameraChannel.cpp 226 QCameraStream *pStream = new QCameraStream(allocator,
229 if (pStream == NULL) {
239 rc = pStream->init(streamInfoBuf, miscBuf, minStreamBufNum,
242 mStreams.add(pStream);
244 delete pStream;
315 QCameraStream *pStream = getStreamByServerID(bundleInfo.stream_ids[i]);
316 if (pStream != NULL) {
317 if ((pStream->isTypeOf(CAM_STREAM_TYPE_METADATA))
318 || (pStream->isTypeOf(CAM_STREAM_TYPE_OFFLINE_PROC))) {
328 rc = pStream->setParameter(param)
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_tilingpattern.cpp 47 CPDF_Stream* pStream = m_pPatternObj->AsStream();
48 if (!pStream)
51 m_pForm = pdfium::MakeUnique<CPDF_Form>(m_pDocument, nullptr, pStream);
  /hardware/qcom/camera/msm8998/QCamera2/HAL/
QCameraChannel.cpp 288 QCameraStream *pStream = new QCameraStream(allocator,
291 if (pStream == NULL) {
301 rc = pStream->init(streamInfoBuf, miscBuf,
305 mStreams.add(pStream);
307 delete pStream;
    [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...]
  /device/huawei/angler/camera/QCamera2/HAL/
QCameraChannel.cpp 196 QCameraStream *pStream = new QCameraStream(allocator,
199 if (pStream == NULL) {
209 rc = pStream->init(streamInfoBuf, miscBuf, minStreamBufNum,
212 mStreams.add(pStream);
214 delete pStream;
305 QCameraStream *pStream = getStreamByServerID(bundleInfo.stream_ids[i]);
306 if (pStream != NULL) {
307 if (pStream->isTypeOf(CAM_STREAM_TYPE_METADATA)) {
317 rc = pStream->setParameter(param);
896 QCameraStream *pStream = NULL
    [all...]

Completed in 496 milliseconds

1 2 3 4 5 6 7