Searched defs:new_bit_idx (Results 1 - 1 of 1) sorted by relevance

/external/opencv/otherlibs/highgui/
H A Dbitstrm.cpp399 int new_bit_idx = bit_idx + bits; local
400 int mask = new_bit_idx >= 32 ? -1 : 0;
410 m_bit_idx = new_bit_idx & 31;
418 int new_bit_idx = bit_idx + bits; local
419 int mask = new_bit_idx >= 32 ? -1 : 0;
437 int new_bit_idx = m_bit_idx + shift; local
438 m_current += (new_bit_idx >> 5) << 2;
439 m_bit_idx = new_bit_idx & 31;
575 int new_bit_idx = m_bit_idx - shift; local
576 m_current -= (new_bit_idx >>
[all...]

Completed in 40 milliseconds