Home
last modified time | relevance | path

Searched refs:m_nBitsPerSample (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/fpdfapi/page/
Dcpdf_sampledfunc.cpp48 m_nBitsPerSample = pDict->GetIntegerFor("BitsPerSample"); in v_Init()
49 if (!IsValidBitsPerSample(m_nBitsPerSample)) in v_Init()
52 m_SampleMax = 0xffffffff >> (32 - m_nBitsPerSample); in v_Init()
71 nTotalSampleBits *= m_nBitsPerSample; in v_Init()
113 bits_to_output *= m_nBitsPerSample; in v_Call()
131 for (uint32_t j = 0; j < m_nOutputs; j++, bitpos += m_nBitsPerSample) { in v_Call()
133 GetBits32(pSampleData, bitpos.ValueOrDie(), m_nBitsPerSample); in v_Call()
144 bitpos2 *= m_nBitsPerSample; in v_Call()
148 GetBits32(pSampleData, bitpos2.ValueOrDie(), m_nBitsPerSample); in v_Call()
Dcpdf_sampledfunc.h39 uint32_t GetBitsPerSample() const { return m_nBitsPerSample; } in GetBitsPerSample()
45 uint32_t m_nBitsPerSample; variable