Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_Context.cpp1109 auto pHuff = pdfium::MakeUnique<CJBig2_HuffmanTable>(m_pStream.get()); in ParseTable() local
1110 if (!pHuff->IsOK()) in ParseTable()
1113 pSegment->m_HuffmanTable = std::move(pHuff); in ParseTable()
/external/OpenCL-CTS/test_common/miniz/
Dminiz.c633 #define TINFL_HUFF_BITBUF_FILL(state_index, pHuff) \ argument
635 temp = (pHuff)->m_look_up[bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]; \
643 temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; \
652 #define TINFL_HUFF_DECODE(state_index, sym, pHuff) do { \ argument
656 TINFL_HUFF_BITBUF_FILL(state_index, pHuff); \
661 if ((temp = (pHuff)->m_look_up[bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]) >= 0) \
664 …code_len = TINFL_FAST_LOOKUP_BITS; do { temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & …