HomeSort by relevance Sort by last modified time
    Searched defs:BitOffset (Results 1 - 8 of 8) sorted by null

  /art/runtime/
bit_memory_region.h 38 size_t BitOffset() const { return bit_start_; }
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 120 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth();
124 llvm::alignTo(BitOffset + BitFieldSize, AlignmentBits));
134 CGBitFieldInfo::MakeInfo(CGF.CGM.getTypes(), Ivar, BitOffset, BitFieldSize,
CGRecordLayoutBuilder.cpp 146 CharUnits bitsToCharUnits(uint64_t BitOffset) {
147 return Context.toCharUnitsFromBits(BitOffset);
381 uint64_t BitOffset = getFieldBitOffset(*Field);
390 if (Run == FieldEnd || BitOffset >= Tail) {
392 StartBitOffset = BitOffset;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 572 unsigned BitOffset = 0;
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,
    [all...]
  /external/llvm/lib/CodeGen/
TargetInstrInfo.cpp 360 int BitOffset = TRI->getSubRegIdxOffset(SubIdx);
361 if (BitOffset < 0 || BitOffset % 8)
365 Offset = (unsigned)BitOffset / 8;
    [all...]
  /external/llvm/lib/Transforms/IPO/
LowerTypeTests.cpp 58 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 is set in BSI, wher
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 590 BitFieldRecord(TypeIndex Type, uint8_t BitSize, uint8_t BitOffset)
592 BitOffset(BitOffset) {}
602 uint8_t getBitOffset() const { return BitOffset; }
609 uint8_t BitOffset;
614 uint8_t BitOffset;
    [all...]
  /external/clang/include/clang/Serialization/
ASTBitCodes.h 172 uint32_t BitOffset;
174 PPEntityOffset(SourceRange R, uint32_t BitOffset)
177 BitOffset(BitOffset) { }
191 uint32_t BitOffset;
193 DeclOffset() : Loc(0), BitOffset(0) { }
194 DeclOffset(SourceLocation Loc, uint32_t BitOffset)
196 BitOffset(BitOffset) { }
    [all...]

Completed in 1095 milliseconds