HomeSort by: relevance | last modified time | path
    Searched defs:Align (Results 1 - 25 of 188) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/external/apache2/llvm/dist/clang/lib/AST/
CXXABI.h 36 unsigned Align;
CXXABI.h 36 unsigned Align;
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
LayoutOverrideSource.h 31 uint64_t Align;
LayoutOverrideSource.h 31 uint64_t Align;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Alignment.h 13 // - Align represents an alignment in bytes, it is always set and always a valid
17 // you can get the underlying Align type by using the getValue() method.
39 struct Align {
45 friend unsigned Log2(Align);
46 friend bool operator==(Align Lhs, Align Rhs);
47 friend bool operator!=(Align Lhs, Align Rhs);
48 friend bool operator<=(Align Lhs, Align Rhs)
    [all...]
Alignment.h 13 // - Align represents an alignment in bytes, it is always set and always a valid
17 // you can get the underlying Align type by using the getValue() method.
39 struct Align {
45 friend unsigned Log2(Align);
46 friend bool operator==(Align Lhs, Align Rhs);
47 friend bool operator!=(Align Lhs, Align Rhs);
48 friend bool operator<=(Align Lhs, Align Rhs)
    [all...]
FormatVariadic.h 51 ReplacementItem(StringRef Spec, size_t Index, size_t Align, AlignStyle Where,
53 : Type(ReplacementType::Format), Spec(Spec), Index(Index), Align(Align),
59 size_t Align = 0;
71 size_t &Align, char &Pad);
99 FmtAlign Align(*W, R.Where, R.Align, R.Pad);
100 Align.format(S, R.Options);
FormatVariadic.h 51 ReplacementItem(StringRef Spec, size_t Index, size_t Align, AlignStyle Where,
53 : Type(ReplacementType::Format), Spec(Spec), Index(Index), Align(Align),
59 size_t Align = 0;
71 size_t &Align, char &Pad);
99 FmtAlign Align(*W, R.Where, R.Align, R.Pad);
100 Align.format(S, R.Options);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
SimpleTypeSerializer.cpp 18 uint32_t Align = Writer.getOffset() % 4;
19 if (Align == 0)
22 int PaddingBytes = 4 - Align;
SimpleTypeSerializer.cpp 18 uint32_t Align = Writer.getOffset() % 4;
19 if (Align == 0)
22 int PaddingBytes = 4 - Align;
CodeViewRecordIO.cpp 39 // For streaming mode, add padding to align with 4 byte boundaries for each
41 uint32_t Align = getStreamedLen() % 4;
42 if (Align == 0)
45 int PaddingBytes = 4 - Align;
79 Error CodeViewRecordIO::padToAlignment(uint32_t Align) {
81 return Reader->padToAlignment(Align);
82 return Writer->padToAlignment(Align);
ContinuationRecordBuilder.cpp 22 uint32_t Align = Writer.getOffset() % 4;
23 if (Align == 0)
26 int PaddingBytes = 4 - Align;
CodeViewRecordIO.cpp 39 // For streaming mode, add padding to align with 4 byte boundaries for each
41 uint32_t Align = getStreamedLen() % 4;
42 if (Align == 0)
45 int PaddingBytes = 4 - Align;
79 Error CodeViewRecordIO::padToAlignment(uint32_t Align) {
81 return Reader->padToAlignment(Align);
82 return Writer->padToAlignment(Align);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMBasicBlockInfo.cpp 52 BBI.PostAlign = Align(1);
65 // tBR_JTr contains a .align 2 directive.
67 BBI.PostAlign = Align(4);
68 MBB->getParent()->ensureAlignment(Align(4));
131 const Align Align = MF.getBlockNumbered(i)->getAlignment();
132 const unsigned Offset = BBInfo[i - 1].postOffset(Align);
133 const unsigned KnownBits = BBInfo[i - 1].postKnownBits(Align);
ARMBasicBlockInfo.cpp 52 BBI.PostAlign = Align(1);
65 // tBR_JTr contains a .align 2 directive.
67 BBI.PostAlign = Align(4);
68 MBB->getParent()->ensureAlignment(Align(4));
131 const Align Align = MF.getBlockNumbered(i)->getAlignment();
132 const unsigned Offset = BBInfo[i - 1].postOffset(Align);
133 const unsigned KnownBits = BBInfo[i - 1].postKnownBits(Align);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGVTT.cpp 120 unsigned Align = CGM.getDataLayout().getABITypeAlignment(CGM.Int8PtrTy);
123 Name, ArrayType, llvm::GlobalValue::ExternalLinkage, Align);
CGVTT.cpp 120 unsigned Align = CGM.getDataLayout().getABITypeAlignment(CGM.Int8PtrTy);
123 Name, ArrayType, llvm::GlobalValue::ExternalLinkage, Align);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
FormatVariadic.cpp 28 size_t &Align, char &Pad) {
30 Align = 0;
53 bool Failed = Spec.consumeInteger(0, Align);
64 std::size_t Align = 0;
76 if (!consumeFieldLayout(RepString, Where, Align, Pad))
89 return ReplacementItem{Spec, Index, Align, Where, Pad, Options};
FormatVariadic.cpp 28 size_t &Align, char &Pad) {
30 Align = 0;
53 bool Failed = Spec.consumeInteger(0, Align);
64 std::size_t Align = 0;
76 if (!consumeFieldLayout(RepString, Where, Align, Pad))
89 return ReplacementItem{Spec, Index, Align, Where, Pad, Options};
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CallingConvEmitter.cpp 187 int Align = Action->getValueAsInt("Align");
198 if (Align)
199 O << "Align(" << Align << ")";
212 int Align = Action->getValueAsInt("Align");
226 << " = State.AllocateStack(" << Size << ", Align(" << Align << "), "
275 int Align = Action->getValueAsInt("Align")
    [all...]
CallingConvEmitter.cpp 187 int Align = Action->getValueAsInt("Align");
198 if (Align)
199 O << "Align(" << Align << ")";
212 int Align = Action->getValueAsInt("Align");
226 << " = State.AllocateStack(" << Size << ", Align(" << Align << "), "
275 int Align = Action->getValueAsInt("Align")
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
LegalizerInfo.h 177 uint64_t Align;
181 Align == Other.Align &&
189 Align >= Other.Align &&
LegalizerInfo.h 177 uint64_t Align;
181 Align == Other.Align &&
189 Align >= Other.Align &&
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
GlobalObject.h 70 /// FIXME: Remove this function once transition to Align is over.
72 MaybeAlign Align = getAlign();
73 return Align ? Align->value() : 0;
86 void setAlignment(MaybeAlign Align);
GlobalObject.h 70 /// FIXME: Remove this function once transition to Align is over.
72 MaybeAlign Align = getAlign();
73 return Align ? Align->value() : 0;
86 void setAlignment(MaybeAlign Align);

Completed in 74 milliseconds

1 2 3 4 5 6 7 8