/external/chromium_org/third_party/mesa/src/src/glx/ |
pixel.c | 92 GLint elementsLeft, bitOffset, currentByte, nextByte, highBitMask; 111 bitOffset = (skipPixels * components) & 7; 112 highBitMask = LowBitsMask[8 - bitOffset]; 113 lowBitMask = HighBitsMask[bitOffset]; 126 if (bitOffset) { 128 if (elementsLeft > (8 - bitOffset)) { 136 ((currentByte & highBitMask) << bitOffset) | 137 ((nextByte & lowBitMask) >> (8 - bitOffset)); 140 currentByte = ((currentByte & highBitMask) << bitOffset); 283 GLint elementsLeft, bitOffset, currentByte, highBitMask, lowBitMask [all...] |
/external/mesa3d/src/glx/ |
pixel.c | 92 GLint elementsLeft, bitOffset, currentByte, nextByte, highBitMask; 111 bitOffset = (skipPixels * components) & 7; 112 highBitMask = LowBitsMask[8 - bitOffset]; 113 lowBitMask = HighBitsMask[bitOffset]; 126 if (bitOffset) { 128 if (elementsLeft > (8 - bitOffset)) { 136 ((currentByte & highBitMask) << bitOffset) | 137 ((nextByte & lowBitMask) >> (8 - bitOffset)); 140 currentByte = ((currentByte & highBitMask) << bitOffset); 283 GLint elementsLeft, bitOffset, currentByte, highBitMask, lowBitMask [all...] |
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
GsmSmsTest.java | 351 int bitOffset = 0; 362 int byteOffset = bitOffset / 8; 363 int shift = bitOffset % 8; 371 bitOffset += 7; 423 int bitOffset = 0; 427 int byteOffset = bitOffset / 8; 428 int shift = bitOffset % 8; 436 bitOffset += 7; 439 byteOffset = bitOffset / 8; 440 shift = bitOffset % 8 [all...] |
/external/aac/libFDK/src/ |
FDK_bitbuffer.cpp | 161 UINT bitOffset = hBitBuf->BitNdx & 0x07 ; 174 if (bitOffset) 176 tx <<= bitOffset; 177 tx |= hBitBuf->Buffer [(byteOffset+4) & byteMask] >> (8-bitOffset); 217 UINT bitOffset = hBitBuf->BitNdx & 0x07 ; 231 tx >>= (8 - bitOffset) ; 233 if (bitOffset && numberOfBits > 24) 235 tx |= hBitBuf->Buffer [(byteOffset-4) & byteMask] << (24 + bitOffset) ; 253 UINT bitOffset = hBitBuf->BitNdx & 0x07 ; 261 UINT tmp = value<<(32-numberOfBits)>>bitOffset; [all...] |
/external/clang/include/clang/Serialization/ |
ASTBitCodes.h | 170 uint32_t BitOffset; 172 PPEntityOffset(SourceRange R, uint32_t BitOffset) 175 BitOffset(BitOffset) { } 183 uint32_t BitOffset; 185 DeclOffset() : Loc(0), BitOffset(0) { } 186 DeclOffset(SourceLocation Loc, uint32_t BitOffset) 188 BitOffset(BitOffset) { } [all...] |
/external/clang/lib/CodeGen/ |
CGObjCRuntime.cpp | 119 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth(); 124 llvm::RoundUpToAlignment(BitOffset + BitFieldSize, AlignmentBits)); 134 CGBitFieldInfo::MakeInfo(CGF.CGM.getTypes(), Ivar, BitOffset, BitFieldSize,
|
/external/tremolo/Tremolo/ |
bitwise.c | 758 int bitoffset,bitcount=0; local 764 bitoffset=bitcount%=8; 786 bitcount=bitoffset; 787 oggpack_read(&o,bitoffset); 820 bitcount=bitoffset; 821 oggpack_adv(&o,bitoffset);
|
/external/chromium_org/third_party/skia/src/ports/ |
SkFontHost_FreeType_common.cpp | 63 static int bittst(const uint8_t data[], int bitOffset) { 64 SkASSERT(bitOffset >= 0); 65 int lowBit = data[bitOffset >> 3] >> (~bitOffset & 7);
|
/external/skia/src/ports/ |
SkFontHost_FreeType_common.cpp | 74 static int bittst(const uint8_t data[], int bitOffset) { 75 SkASSERT(bitOffset >= 0); 76 int lowBit = data[bitOffset >> 3] >> (~bitOffset & 7);
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeVectorOps.cpp | 445 unsigned BitOffset = 0; 452 if (BitOffset < WideBits) { 453 ShAmt = DAG.getConstant(BitOffset, TLI.getShiftAmountTy(WideVT)); 458 BitOffset += SrcEltBits; 459 if (BitOffset >= WideBits) {
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
GsmAlphabet.java | 397 for (int i = 0, septets = startingSeptetOffset, bitOffset = startingSeptetOffset * 7; 399 i++, bitOffset += 7) { 411 packSmsChar(ret, bitOffset, GSM_EXTENDED_ESCAPE); 412 bitOffset += 7; 416 packSmsChar(ret, bitOffset, v); 427 * @param bitOffset the bit offset that the septet should be packed at 432 packSmsChar(byte[] packedChars, int bitOffset, int value) { 433 int byteOffset = bitOffset / 8; 434 int shift = bitOffset % 8; 503 int bitOffset = (7 * i) + numPaddingBits [all...] |
/dalvik/vm/analysis/ |
RegisterMap.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTWriterDecl.cpp | [all...] |
ASTReaderDecl.cpp | [all...] |
ASTReader.cpp | [all...] |
/external/zxing/core/ |
core.jar | |