Home
last modified time | relevance | path

Searched refs:m_nOutputs (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/core/fpdfapi/page/
Dcpdf_expintfunc.cpp29 if (m_nOutputs == 0) { in v_Init()
30 m_nOutputs = 1; in v_Init()
32 m_nOutputs = pArray0->GetCount(); in v_Init()
36 m_pBeginValues = FX_Alloc2D(float, m_nOutputs, 2); in v_Init()
37 m_pEndValues = FX_Alloc2D(float, m_nOutputs, 2); in v_Init()
38 for (uint32_t i = 0; i < m_nOutputs; i++) { in v_Init()
44 m_nOrigOutputs = m_nOutputs; in v_Init()
45 if (m_nOutputs && m_nInputs > INT_MAX / m_nOutputs) in v_Init()
48 m_nOutputs *= m_nInputs; in v_Init()
Dcpdf_function.cpp84 m_nOutputs = 0; in Init()
86 m_nOutputs = pRanges->GetCount() / 2; in Init()
87 m_pRanges = FX_Alloc2D(float, m_nOutputs, 2); in Init()
88 for (uint32_t i = 0; i < m_nOutputs * 2; i++) in Init()
91 uint32_t old_outputs = m_nOutputs; in Init()
94 if (m_pRanges && m_nOutputs > old_outputs) { in Init()
95 m_pRanges = FX_Realloc(float, m_pRanges, m_nOutputs * 2); in Init()
98 sizeof(float) * (m_nOutputs - old_outputs) * 2); in Init()
111 *nresults = m_nOutputs; in Call()
120 for (uint32_t i = 0; i < m_nOutputs; i++) { in Call()
Dcpdf_sampledfunc.cpp72 nTotalSampleBits *= m_nOutputs; in v_Init()
80 m_DecodeInfo.resize(m_nOutputs); in v_Init()
81 for (uint32_t i = 0; i < m_nOutputs; i++) { in v_Init()
112 FX_SAFE_INT32 bits_to_output = m_nOutputs; in v_Call()
131 for (uint32_t j = 0; j < m_nOutputs; j++, bitpos += m_nBitsPerSample) { in v_Call()
142 bitpos2 *= m_nOutputs; in v_Call()
Dcpdf_stitchfunc.cpp40 m_nOutputs = 0; in v_Init()
52 if (pFunc->CountOutputs() != m_nOutputs) { in v_Init()
53 if (m_nOutputs) in v_Init()
56 m_nOutputs = pFunc->CountOutputs(); in v_Init()
Dcpdf_psfunc.cpp29 if (PS.GetStackSize() < m_nOutputs) in v_Call()
31 for (uint32_t i = 0; i < m_nOutputs; i++) in v_Call()
32 results[m_nOutputs - i - 1] = PS.Pop(); in v_Call()
Dcpdf_function.h37 uint32_t CountOutputs() const { return m_nOutputs; } in CountOutputs()
58 uint32_t m_nOutputs; variable