Home
last modified time | relevance | path

Searched refs:startBit (Results 1 – 3 of 3) sorted by relevance

/external/ppp/pppd/
Dpppcrypt.c57 Get7Bits(input, startBit) in Get7Bits() argument
59 int startBit;
63 word = (unsigned)input[startBit / 8] << 8;
64 word |= (unsigned)input[startBit / 8 + 1];
66 word >>= 15 - (startBit % 8 + 7);
/external/skia/src/utils/
DSkTextureCompressor_ASTC.cpp766 int startBit, // The bit from which we're going to do the reading in decode_integer_sequence() argument
782 startBit = 128 - startBit; in decode_integer_sequence()
791 int endBlockBit = startBit + 8 + 5*nBits; in decode_integer_sequence()
798 decode_trit_block(trits, nBits, read_astc_bits(src, startBit, endBlockBit)); in decode_integer_sequence()
803 startBit = endBlockBit; in decode_integer_sequence()
808 int endBlockBit = startBit + 7 + 3*nBits; in decode_integer_sequence()
815 decode_quint_block(quints, nBits, read_astc_bits(src, startBit, endBlockBit)); in decode_integer_sequence()
820 startBit = endBlockBit; in decode_integer_sequence()
824 int endValBit = startBit + nBits; in decode_integer_sequence()
829 SkASSERT(endValBit - startBit < 31); in decode_integer_sequence()
[all …]
/external/llvm/utils/TableGen/
DFixedLenDecoderEmitter.cpp256 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
457 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed);
495 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, in Filter() argument
497 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) { in Filter()
1350 void FilterChooser::runSingleFilter(unsigned startBit, unsigned numBit, in runSingleFilter() argument
1353 Filters.push_back(Filter(*this, startBit, numBit, true)); in runSingleFilter()