Searched refs:startBit (Results 1 – 3 of 3) sorted by relevance
/external/ppp/pppd/ |
D | pppcrypt.c | 38 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/libppp/src/ |
D | chap_ms.c | 80 Get7Bits(u_char *input, int startBit) in Get7Bits() argument 84 word = (unsigned)input[startBit / 8] << 8; in Get7Bits() 85 word |= (unsigned)input[startBit / 8 + 1]; in Get7Bits() 87 word >>= 15 - (startBit % 8 + 7); in Get7Bits()
|
/external/llvm/utils/TableGen/ |
D | FixedLenDecoderEmitter.cpp | 257 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed); 464 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed); 502 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, in Filter() argument 504 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) { in Filter() 1380 void FilterChooser::runSingleFilter(unsigned startBit, unsigned numBit, in runSingleFilter() argument 1383 Filter F(*this, startBit, numBit, true); in runSingleFilter()
|