Searched defs:BitOffset (Results 1 - 9 of 9) sorted by relevance

/external/v4l2_codec2/vda/
H A Dvp8_bool_decoder.cc176 size_t Vp8BoolDecoder::BitOffset() { function in class:media::Vp8BoolDecoder
/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp120 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth(); local
124 llvm::alignTo(BitOffset + BitFieldSize, AlignmentBits));
134 CGBitFieldInfo::MakeInfo(CGF.CGM.getTypes(), Ivar, BitOffset, BitFieldSize,
H A DCGRecordLayoutBuilder.cpp146 CharUnits bitsToCharUnits(uint64_t BitOffset) { argument
147 return Context.toCharUnitsFromBits(BitOffset);
381 uint64_t BitOffset = getFieldBitOffset(*Field); local
390 if (Run == FieldEnd || BitOffset >= Tail) {
392 StartBitOffset = BitOffset;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp572 unsigned BitOffset = 0; local
579 if (BitOffset < WideBits) {
581 BitOffset, dl, TLI.getShiftAmountTy(WideVT, DAG.getDataLayout()));
586 BitOffset += SrcEltBits;
587 if (BitOffset >= WideBits) {
589 BitOffset -= WideBits;
590 if (BitOffset > 0) {
592 SrcEltBits - BitOffset, dl,
/external/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp58 uint64_t BitOffset = (Offset - ByteOffset) >> AlignLog2;
59 if (BitOffset >= BitSize)
62 return Bits.count(BitOffset);
236 Value *BitOffset);
293 /// Build a test that bit BitOffset mod sizeof(Bits)*8 is set in
296 Value *BitOffset) {
300 BitOffset = B.CreateZExtOrTrunc(BitOffset, BitsType);
302 B.CreateAnd(BitOffset, ConstantInt::get(BitsType, BitWidth - 1));
378 /// Build a test that bit BitOffset i
295 createMaskedBitTest(IRBuilder< &B, Value *Bits, Value *BitOffset) argument
380 createBitSetTest(IRBuilder< &B, BitSetInfo &BSI, ByteArrayInfo *&BAI, Value *BitOffset) argument
447 Value *BitOffset; local
[all...]
/external/clang/include/clang/Serialization/
H A DASTWriter.h772 void AddOffset(uint64_t BitOffset) { argument
774 Record->push_back(BitOffset);
H A DASTBitCodes.h172 uint32_t BitOffset; member in struct:clang::serialization::PPEntityOffset
174 PPEntityOffset(SourceRange R, uint32_t BitOffset) argument
177 BitOffset(BitOffset) { }
191 uint32_t BitOffset; member in struct:clang::serialization::DeclOffset
193 DeclOffset() : Loc(0), BitOffset(0) { }
194 DeclOffset(SourceLocation Loc, uint32_t BitOffset) argument
196 BitOffset(BitOffset) { }
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h590 BitFieldRecord(TypeIndex Type, uint8_t BitSize, uint8_t BitOffset) argument
592 BitOffset(BitOffset) {}
602 uint8_t getBitOffset() const { return BitOffset; }
609 uint8_t BitOffset; member in struct:llvm::codeview::BitFieldRecord::Layout
614 uint8_t BitOffset; member in class:llvm::codeview::BitFieldRecord
/external/llvm/lib/CodeGen/
H A DTargetInstrInfo.cpp360 int BitOffset = TRI->getSubRegIdxOffset(SubIdx); local
361 if (BitOffset < 0 || BitOffset % 8)
365 Offset = (unsigned)BitOffset / 8;

Completed in 385 milliseconds