/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/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_edit/ |
fpdf_edit_content.cpp | 51 CPDF_Stream* pStream = new CPDF_Stream(NULL, 0, NULL); 52 pStream->SetData(buf.GetBuffer(), buf.GetLength(), FALSE, FALSE); 53 m_pDocument->AddIndirectObject(pStream); 54 pPageDict->SetAtReference("Contents", m_pDocument, pStream->GetObjNum()); 90 CPDF_Stream* pStream = pImageObj->m_pImage->GetStream(); 91 FX_DWORD dwSavedObjNum = pStream->GetObjNum(); 92 CFX_ByteString name = RealizeResource(pStream, "XObject"); 96 pImageObj->m_pImage = m_pDocument->GetPageData()->GetImage(pStream); 108 CPDF_Stream* pStream = new CPDF_Stream(NULL, 0, NULL); 115 pStream->InitStream((uint8_t*)data, size, pFormDict) [all...] |
/external/pdfium/core/src/fpdfdoc/ |
doc_metadata.cpp | 15 CPDF_Stream* pStream = pRoot->GetStream("Metadata"); 16 if (!pStream) 20 acc.LoadAllData(pStream, FALSE);
|
/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/src/fxcodec/jbig2/ |
JBig2_HuffmanTable.cpp | 24 CJBig2_HuffmanTable::CJBig2_HuffmanTable(CJBig2_BitStream* pStream) 26 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)) { 76 if (pStream->readNBits(HTPS, &PREFLEN[NTEMP]) == -1) 83 if (pStream->readNBits(HTPS, &PREFLEN[NTEMP]) == -1 [all...] |
JBig2_HuffmanDecoder.h | 13 explicit CJBig2_HuffmanDecoder(CJBig2_BitStream* pStream);
|
JBig2_GsidProc.cpp | 72 FX_DWORD* CJBig2_GSIDProc::decode_MMR(CJBig2_BitStream* pStream, 82 pGRD->Start_decode_MMR(&GSPLANES.get()[GSBPP - 1], pStream, nullptr); 89 pStream->alignByte(); 90 pStream->offset(3); 94 pGRD->Start_decode_MMR(&GSPLANES.get()[J], pStream, nullptr); 104 pStream->alignByte(); 105 pStream->offset(3);
|
JBig2_ArithDecoder.h | 21 explicit CJBig2_ArithDecoder(CJBig2_BitStream* pStream);
|
JBig2_GsidProc.h | 24 FX_DWORD* decode_MMR(CJBig2_BitStream* pStream, IFX_Pause* pPause);
|
JBig2_PddProc.h | 24 CJBig2_PatternDict* decode_MMR(CJBig2_BitStream* pStream, IFX_Pause* pPause);
|
JBig2_HuffmanDecoder.cpp | 11 CJBig2_HuffmanDecoder::CJBig2_HuffmanDecoder(CJBig2_BitStream* pStream) 12 : m_pStream(pStream) {
|
JBig2_HuffmanTable.h | 23 explicit CJBig2_HuffmanTable(CJBig2_BitStream* pStream); 37 bool ParseFromCodedBuffer(CJBig2_BitStream* pStream);
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
fpdf_render_cache.cpp | 16 CPDF_Stream* pStream; 38 pCACHEINFO[i++].pStream = it.second->GetStream(); 47 m_ImageCache[pCACHEINFO[i].pStream]->m_dwTimeCount = i; 53 ClearImageCacheEntry(pCACHEINFO[i++].pStream); 56 ClearImageCacheEntry(pCACHEINFO[i++].pStream); 60 void CPDF_PageRenderCache::ClearImageCacheEntry(CPDF_Stream* pStream) { 61 auto it = m_ImageCache.find(pStream); 77 void CPDF_PageRenderCache::GetCachedBitmap(CPDF_Stream* pStream, 88 const auto it = m_ImageCache.find(pStream); 93 pEntry = new CPDF_ImageCacheEntry(m_pPage->m_pDocument, pStream); [all...] |
/external/pdfium/xfa/src/fxfa/src/parser/ |
xfa_document_serialize.cpp | 375 IFX_Stream* pStream,
384 pStream->WriteString((const FX_WCHAR*)buf.GetBuffer(), nLen);
390 pStream->WriteString(L"<", 1);
391 pStream->WriteString(wsElement.GetPtr(), wsElement.GetLength());
409 pStream->WriteString((const FX_WCHAR*)wsOutput, wsOutput.GetLength());
413 pStream->WriteString(L"\n>", 2);
415 XFA_DataExporter_RegenerateFormFile_Container(pChildNode, pStream,
419 pStream->WriteString(L"</", 2);
420 pStream->WriteString(wsElement.GetPtr(), wsElement.GetLength());
421 pStream->WriteString(L"\n>", 2); [all...] |
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
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_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_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;
|
/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/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...] |
/external/pdfium/fpdfsdk/src/ |
fpdf_transformpage.cpp | 121 CPDF_Stream* pStream = new CPDF_Stream(nullptr, 0, pDic); 122 pStream->SetData(textBuf.GetBuffer(), textBuf.GetSize(), FALSE, FALSE); 126 pDoc->AddIndirectObject(pStream); 136 CPDF_Reference* pRef = new CPDF_Reference(pDoc, pStream->GetObjNum()); 144 CPDF_Reference* pRef = new CPDF_Reference(pDoc, pStream->GetObjNum()); 149 pContentArray->AddReference(pDoc, pStream->GetObjNum()); 171 else if (CPDF_Stream* pStream = pObj->AsStream()) 172 pDict = pStream->GetDict(); 295 CPDF_Stream* pStream = new CPDF_Stream(nullptr, 0, pDic); 296 pStream->SetData(strClip.GetBuffer(), strClip.GetSize(), FALSE, FALSE) [all...] |
/external/pdfium/xfa/src/fxfa/src/app/ |
xfa_ffdoc.h | 33 FX_BOOL OpenDoc(IFX_FileRead* pStream, FX_BOOL bTakeOverFile);
49 FX_BOOL ImportData(IFX_FileRead* pStream, FX_BOOL bXDP = TRUE);
|