Searched refs:pStates (Results 1 – 4 of 4) sorted by relevance
/external/aac/libFDK/src/ |
D | FDK_decorrelate.cpp | 646 FIXP_DBL *pStates = filter[start].stateCplx; in DecorrFilterApplyREAL() local 673 yReal = (pStates[0] + fMultDiv2(xReal, nFilt0L)) << FILTER_SF; in DecorrFilterApplyREAL() 674 yImag = (pStates[1] + fMultDiv2(xImag, nFilt0L)) << FILTER_SF; in DecorrFilterApplyREAL() 679 pStates[0] = in DecorrFilterApplyREAL() 680 pStates[2] + fMultDiv2(xReal, nFilt0H) - fMultDiv2(yReal, nFilt0H); in DecorrFilterApplyREAL() 681 pStates[1] = in DecorrFilterApplyREAL() 682 pStates[3] + fMultDiv2(xImag, nFilt0H) - fMultDiv2(yImag, nFilt0H); in DecorrFilterApplyREAL() 683 pStates[2] = (xReal >> FILTER_SF) - fMultDiv2(yReal, nFilt0L); in DecorrFilterApplyREAL() 684 pStates[3] = (xImag >> FILTER_SF) - fMultDiv2(yImag, nFilt0L); in DecorrFilterApplyREAL() 685 pStates += offsetStates; in DecorrFilterApplyREAL() [all …]
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_renderstatus.cpp | 812 auto pStates = pdfium::MakeUnique<CPDF_GraphicStates>(); in CloneObjStates() local 813 pStates->CopyStates(*pSrcStates); in CloneObjStates() 818 pStates->m_ColorState.SetFillColorRef( in CloneObjStates() 821 pStates->m_ColorState.SetStrokeColorRef( in CloneObjStates() 822 pStates->m_ColorState.GetFillColorRef()); in CloneObjStates() 824 return pStates; in CloneObjStates() 997 std::unique_ptr<CPDF_GraphicStates> pStates = in ProcessType3Text() local 1015 status.Initialize(this, pStates.get()); in ProcessType3Text() 1040 status.Initialize(this, pStates.get()); in ProcessType3Text() 1269 std::unique_ptr<CPDF_GraphicStates> pStates; in DrawTilingPattern() local [all …]
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_streamcontentparser.cpp | 258 const CPDF_AllStates* pStates, in CPDF_StreamContentParser() argument 272 if (pStates) { in CPDF_StreamContentParser() 273 m_pCurStates->Copy(*pStates); in CPDF_StreamContentParser() 977 auto pStates = pdfium::MakeUnique<CPDF_AllStates>(); in Handle_SaveGraphState() local 978 pStates->Copy(*m_pCurStates); in Handle_SaveGraphState() 979 m_StateStack.push_back(std::move(pStates)); in Handle_SaveGraphState() 985 std::unique_ptr<CPDF_AllStates> pStates = std::move(m_StateStack.back()); in Handle_RestoreGraphState() local 987 m_pCurStates->Copy(*pStates); in Handle_RestoreGraphState()
|
D | cpdf_streamcontentparser.h | 46 const CPDF_AllStates* pStates,
|