Home
last modified time | relevance | path

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

/external/ppp/pppd/
Dpppcrypt.c38 Get7Bits(input, startBit) in Get7Bits() argument
40 int startBit;
44 word = (unsigned)input[startBit / 8] << 8;
45 word |= (unsigned)input[startBit / 8 + 1];
47 word >>= 15 - (startBit % 8 + 7);
/external/chromium_org/third_party/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);
463 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed);
501 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, in Filter() argument
503 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) { in Filter()
1384 void FilterChooser::runSingleFilter(unsigned startBit, unsigned numBit, in runSingleFilter() argument
1387 Filter F(*this, startBit, numBit, true); in runSingleFilter()