Searched refs:NextBit (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/core/fxcodec/codec/ |
D | fx_codec_fax.cpp | 131 inline bool NextBit(const uint8_t* src_buf, int* bitpos) { in NextBit() function 297 if (!NextBit(src_buf, bitpos)) { in FaxG4GetRow() 301 bool bit1 = NextBit(src_buf, bitpos); in FaxG4GetRow() 305 bool bit2 = NextBit(src_buf, bitpos); in FaxG4GetRow() 349 if (NextBit(src_buf, bitpos)) { in FaxG4GetRow() 363 bool next_bit1 = NextBit(src_buf, bitpos); in FaxG4GetRow() 367 bool next_bit2 = NextBit(src_buf, bitpos); in FaxG4GetRow() 374 v_delta = NextBit(src_buf, bitpos) ? 3 : -3; in FaxG4GetRow() 379 if (NextBit(src_buf, bitpos)) { in FaxG4GetRow() 407 if (!NextBit(src_buf, bitpos)) in FaxSkipEOL() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Bitcode/ |
D | BitstreamReader.h | 228 unsigned NextBit = 0; in ReadVBR() local 230 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit; in ReadVBR() 235 NextBit += NumBits-1; in ReadVBR() 248 unsigned NextBit = 0; in ReadVBR64() local 250 Result |= uint64_t(Piece & ((1U << (NumBits-1))-1)) << NextBit; in ReadVBR64() 255 NextBit += NumBits-1; in ReadVBR64()
|
/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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
D | CodeGenRegisters.cpp | 1405 unsigned NextBit = 0; in computeSubRegLaneMasks() local 1411 unsigned SrcBit = NextBit; in computeSubRegLaneMasks() 1413 if (NextBit < LaneBitmask::BitWidth-1) in computeSubRegLaneMasks() 1414 ++NextBit; in computeSubRegLaneMasks()
|