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

/external/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h308 unsigned NextBit = 0; local
310 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit;
315 NextBit += NumBits-1;
328 unsigned NextBit = 0; local
330 Result |= uint64_t(Piece & ((1U << (NumBits-1))-1)) << NextBit;
335 NextBit += NumBits-1;
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
H A DBitstreamReader.h316 unsigned NextBit = 0; local
318 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit;
323 NextBit += NumBits-1;
336 unsigned NextBit = 0; local
338 Result |= uint64_t(Piece & ((1U << (NumBits-1))-1)) << NextBit;
343 NextBit += NumBits-1;
/external/pdfium/core/fxcodec/codec/
H A Dfx_codec_fax.cpp131 inline bool NextBit(const uint8_t* src_buf, int* bitpos) { function in namespace:__anon17743
297 if (!NextBit(src_buf, bitpos)) {
301 bool bit1 = NextBit(src_buf, bitpos);
305 bool bit2 = NextBit(src_buf, bitpos);
349 if (NextBit(src_buf, bitpos)) {
363 bool next_bit1 = NextBit(src_buf, bitpos);
367 bool next_bit2 = NextBit(src_buf, bitpos);
374 v_delta = NextBit(src_buf, bitpos) ? 3 : -3;
379 if (NextBit(src_buf, bitpos)) {
407 if (!NextBit(src_bu
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp1209 unsigned NextBit = 0; local
1215 unsigned SrcBit = NextBit;
1217 if (NextBit < 31)
1218 ++NextBit;
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
H A DNaClBitstreamReader.h727 unsigned NextBit = 0; local
729 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit;
734 NextBit += NumBits-1;
747 unsigned NextBit = 0; local
749 Result |= uint64_t(Piece & ((1U << (NumBits-1))-1)) << NextBit;
754 NextBit += NumBits-1;

Completed in 225 milliseconds