Searched refs:NextBit (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/core/fxcodec/codec/ |
D | fx_codec_fax.cpp | 128 inline bool NextBit(const uint8_t* src_buf, int* bitpos) { in NextBit() function 295 if (!NextBit(src_buf, bitpos)) { in FaxG4GetRow() 299 bool bit1 = NextBit(src_buf, bitpos); in FaxG4GetRow() 303 bool bit2 = NextBit(src_buf, bitpos); in FaxG4GetRow() 345 if (NextBit(src_buf, bitpos)) { in FaxG4GetRow() 359 bool next_bit1 = NextBit(src_buf, bitpos); in FaxG4GetRow() 363 bool next_bit2 = NextBit(src_buf, bitpos); in FaxG4GetRow() 370 v_delta = NextBit(src_buf, bitpos) ? 3 : -3; in FaxG4GetRow() 375 if (NextBit(src_buf, bitpos)) { in FaxG4GetRow() 403 if (!NextBit(src_buf, bitpos)) in FaxSkipEOL() [all …]
|
/external/llvm/include/llvm/Bitcode/ |
D | BitstreamReader.h | 308 unsigned NextBit = 0; in ReadVBR() local 310 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit; in ReadVBR() 315 NextBit += NumBits-1; in ReadVBR() 328 unsigned NextBit = 0; in ReadVBR64() local 330 Result |= uint64_t(Piece & ((1U << (NumBits-1))-1)) << NextBit; in ReadVBR64() 335 NextBit += NumBits-1; in ReadVBR64()
|
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/ |
D | BitstreamReader.h | 316 unsigned NextBit = 0; in ReadVBR() local 318 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit; in ReadVBR() 323 NextBit += NumBits-1; in ReadVBR() 336 unsigned NextBit = 0; in ReadVBR64() local 338 Result |= uint64_t(Piece & ((1U << (NumBits-1))-1)) << NextBit; in ReadVBR64() 343 NextBit += NumBits-1; in ReadVBR64()
|
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
D | NaClBitstreamReader.h | 727 unsigned NextBit = 0; in ReadVBR() local 729 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit; in ReadVBR() 734 NextBit += NumBits-1; in ReadVBR() 747 unsigned NextBit = 0; in ReadVBR64() local 749 Result |= uint64_t(Piece & ((1U << (NumBits-1))-1)) << NextBit; in ReadVBR64() 754 NextBit += NumBits-1; in ReadVBR64()
|
/external/llvm/utils/TableGen/ |
D | CodeGenRegisters.cpp | 1209 unsigned NextBit = 0; in computeSubRegLaneMasks() local 1215 unsigned SrcBit = NextBit; in computeSubRegLaneMasks() 1217 if (NextBit < 31) in computeSubRegLaneMasks() 1218 ++NextBit; in computeSubRegLaneMasks()
|