Searched refs:bitsLeft (Results 1 – 6 of 6) sorted by relevance
/third_party/vk-gl-cts/framework/common/ |
D | tcuFormatUtil.hpp | 102 deUint64 bitsLeft = m_value; in toStream() local 105 if (curDesc->bit & bitsLeft) in toStream() 107 if (bitsLeft != m_value) in toStream() 110 bitsLeft ^= curDesc->bit; in toStream() 114 if (bitsLeft != 0) in toStream() 116 if (bitsLeft != m_value) in toStream() 118 stream << Hex<BitfieldSize/4>(bitsLeft); in toStream()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_lossless_jpeg.cpp | 400 int32 bitsLeft; // # of unused bits in it member in dng_lossless_decoder 515 , bitsLeft (0) in dng_lossless_decoder() 1274 bitsLeft = 0; in HuffDecoderInit() 1334 fStream->SetReadPosition (fStream->Position () - bitsLeft / 8); in ProcessRestart() 1336 bitsLeft = 0; in ProcessRestart() 1478 while (bitsLeft < kMinGetBits) in FillBitBuffer() 1491 bitsLeft += 32; in FillBitBuffer() 1501 while (bitsLeft < kMinGetBits) in FillBitBuffer() 1525 if (bitsLeft >= nbits) in FillBitBuffer() 1541 bitsLeft += 8; in FillBitBuffer() [all …]
|
/third_party/mesa3d/src/amd/addrlib/src/core/ |
D | coord.cpp | 381 UINT_32 bitsLeft = 0; in solveAddr() local 402 bitsLeft++; in solveAddr() 406 if (bitsLeft > 0) in solveAddr() 416 bitsLeft = 0; in solveAddr() 457 bitsLeft++; in solveAddr() 460 } while (bitsLeft > 0); in solveAddr()
|
/third_party/flutter/skia/src/core/ |
D | SkBlitter.cpp | 221 int bitsLeft = cx - ((cx - maskLeft) & 7); in blitMask() local 224 int leftEdge = cx - bitsLeft; in blitMask() 226 int rightEdge = clip.fRight - bitsLeft; in blitMask() 244 bits_to_runs(this, bitsLeft, cy, bits, leftMask, rowBytes, rightMask); in blitMask()
|
/third_party/skia/src/core/ |
D | SkBlitter.cpp | 227 int bitsLeft = cx - ((cx - maskLeft) & 7); in blitMask() local 230 int leftEdge = cx - bitsLeft; in blitMask() 232 int rightEdge = clip.fRight - bitsLeft; in blitMask() 250 bits_to_runs(this, bitsLeft, cy, bits, leftMask, rowBytes, rightMask); in blitMask()
|
/third_party/libsnd/src/ALAC/ |
D | alac_encoder.c | 1066 int32_t bitsLeft ; in alac_encode() local 1069 bitsLeft = BitBufferGetPosition (&bitstream) - 3 ; // - 3 for ID_END tag in alac_encode() 1070 bytesLeft = bitstream.byteSize - ((bitsLeft + 7) / 8) ; in alac_encode()
|