Searched refs:pStates (Results 1 – 3 of 3) sorted by relevance
/external/aac/libFDK/src/ |
D | FDK_decorrelate.cpp | 651 FIXP_DBL *pStates = filter[start].stateCplx; in DecorrFilterApplyREAL() local 678 yReal = (pStates[0] + fMultDiv2(xReal, nFilt0L)) << FILTER_SF; in DecorrFilterApplyREAL() 679 yImag = (pStates[1] + fMultDiv2(xImag, nFilt0L)) << FILTER_SF; in DecorrFilterApplyREAL() 684 pStates[0] = in DecorrFilterApplyREAL() 685 pStates[2] + fMultDiv2(xReal, nFilt0H) - fMultDiv2(yReal, nFilt0H); in DecorrFilterApplyREAL() 686 pStates[1] = in DecorrFilterApplyREAL() 687 pStates[3] + fMultDiv2(xImag, nFilt0H) - fMultDiv2(yImag, nFilt0H); in DecorrFilterApplyREAL() 688 pStates[2] = (xReal >> FILTER_SF) - fMultDiv2(yReal, nFilt0L); in DecorrFilterApplyREAL() 689 pStates[3] = (xImag >> FILTER_SF) - fMultDiv2(yImag, nFilt0L); in DecorrFilterApplyREAL() 690 pStates += offsetStates; in DecorrFilterApplyREAL() [all …]
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_streamcontentparser.cpp | 247 CPDF_AllStates* pStates, in CPDF_StreamContentParser() argument 273 if (pStates) { in CPDF_StreamContentParser() 274 m_pCurStates->Copy(*pStates); in CPDF_StreamContentParser() 963 auto pStates = pdfium::MakeUnique<CPDF_AllStates>(); in Handle_SaveGraphState() local 964 pStates->Copy(*m_pCurStates); in Handle_SaveGraphState() 965 m_StateStack.push_back(std::move(pStates)); in Handle_SaveGraphState() 971 std::unique_ptr<CPDF_AllStates> pStates = std::move(m_StateStack.back()); in Handle_RestoreGraphState() local 973 m_pCurStates->Copy(*pStates); in Handle_RestoreGraphState()
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_renderstatus.cpp | 1706 auto pStates = pdfium::MakeUnique<CPDF_GraphicStates>(); in CloneObjStates() local 1707 pStates->CopyStates(*pSrcStates); in CloneObjStates() 1712 pStates->m_ColorState.SetFillRGB( in CloneObjStates() 1715 pStates->m_ColorState.SetStrokeRGB(pStates->m_ColorState.GetFillRGB()); in CloneObjStates() 1717 return pStates; in CloneObjStates() 1895 std::unique_ptr<CPDF_GraphicStates> pStates = in ProcessType3Text() local 1911 pStates.get(), &options, in ProcessType3Text() 1932 this, pStates.get(), &options, in ProcessType3Text() 2279 std::unique_ptr<CPDF_GraphicStates> pStates; in DrawTilingPattern() local 2281 pStates = CloneObjStates(pPageObj, bStroke); in DrawTilingPattern() [all …]
|