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

  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 120 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth();
125 llvm::RoundUpToAlignment(BitOffset + BitFieldSize, AlignmentBits));
135 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 567 unsigned BitOffset = 0;
574 if (BitOffset < WideBits) {
576 BitOffset, dl, TLI.getShiftAmountTy(WideVT, DAG.getDataLayout()));
581 BitOffset += SrcEltBits;
582 if (BitOffset >= WideBits) {
584 BitOffset -= WideBits;
585 if (BitOffset > 0) {
587 SrcEltBits - BitOffset, dl,
    [all...]
  /external/llvm/lib/CodeGen/
TargetInstrInfo.cpp 358 int BitOffset = TRI->getSubRegIdxOffset(SubIdx);
359 if (BitOffset < 0 || BitOffset % 8)
363 Offset = (unsigned)BitOffset / 8;
    [all...]
  /external/llvm/lib/Transforms/IPO/
LowerBitSets.cpp 57 uint64_t BitOffset = (Offset - ByteOffset) >> AlignLog2;
58 if (BitOffset >= BitSize)
61 return Bits.count(BitOffset);
238 Value *BitOffset);
329 /// Build a test that bit BitOffset mod sizeof(Bits)*8 is set in
332 Value *BitOffset) {
336 BitOffset = B.CreateZExtOrTrunc(BitOffset, BitsType);
338 B.CreateAnd(BitOffset, ConstantInt::get(BitsType, BitWidth - 1));
414 /// Build a test that bit BitOffset is set in BSI, wher
    [all...]
  /external/clang/include/clang/Serialization/
ASTBitCodes.h 172 uint32_t BitOffset;
174 PPEntityOffset(SourceRange R, uint32_t BitOffset)
177 BitOffset(BitOffset) { }
185 uint32_t BitOffset;
187 DeclOffset() : Loc(0), BitOffset(0) { }
188 DeclOffset(SourceLocation Loc, uint32_t BitOffset)
190 BitOffset(BitOffset) { }
    [all...]

Completed in 112 milliseconds