/external/llvm/lib/CodeGen/SelectionDAG/ |
FastISel.cpp | 91 Alignment = CS->getParamAlignment(AttrIdx); [all...] |
LegalizeIntegerTypes.cpp | [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCISelLowering.h | 544 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate 546 /// alignment, not its logarithm. 613 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it 614 /// means there isn't a need to check it against alignment requirement, 656 // save area. The element type defines the alignment requirement and 682 unsigned Alignment; 686 ReuseLoadInfo() : IsInvariant(false), Alignment(0), Ranges(nullptr) {} [all...] |
/external/v8/src/wasm/ |
wasm-opcodes.h | 59 // Alignment annotations for memory accesses. 60 enum Alignment { kAligned = 0, kUnaligned = 1 }; 63 typedef BitField<Alignment, 7, 1> AlignmentField;
|
/frameworks/ex/common/java/com/android/ex/editstyledtext/ |
EditStyledText.java | 116 /** The mode of changing alignment. */ 584 /** Start to change Alignment */ 697 * Set Alignment of the Item. 701 public void setAlignment(Layout.Alignment align) { [all...] |
/packages/apps/Settings/src/com/android/settings/widget/ |
ChartSweepView.java | 30 import android.text.Layout.Alignment; 269 mLabelTemplate, paint, LARGE_WIDTH, Alignment.ALIGN_RIGHT, 1f, 0f, false);
|
/cts/tests/tests/text/src/android/text/cts/ |
StaticLayoutTest.java | 23 import android.text.Layout.Alignment; 59 private static final Alignment DEFAULT_ALIGN = Alignment.ALIGN_CENTER; 138 assertEquals(Alignment.ALIGN_NORMAL, layout.getAlignment()); [all...] |
/external/clang/include/clang/AST/ |
ExternalASTSource.h | 258 /// \param Alignment The final alignment of the record, in bits. 273 const RecordDecl *Record, uint64_t &Size, uint64_t &Alignment,
|
/external/clang/include/clang/Analysis/Analyses/ |
ThreadSafetyUtil.h | 48 return Allocator->Allocate(Sz, llvm::AlignOf<AlignmentType>::Alignment);
|
/external/llvm/lib/Target/AArch64/ |
AArch64FastISel.cpp | 149 bool isMemCpySmall(uint64_t Len, unsigned Alignment); 151 unsigned Alignment); 393 // alignment. [all...] |
/external/llvm/tools/obj2yaml/ |
coff2yaml.cpp | 111 NewYAMLSection.Alignment = ObjSection.getAlignment();
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
PendingAppWidgetHostView.java | 242 Layout.Alignment.ALIGN_CENTER, 1, 0, true);
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/ |
TutorialEN.java | 148 Layout.Alignment.ALIGN_NORMAL, 1, 0, true);
|
/external/clang/lib/CodeGen/ |
CodeGenFunction.h | 413 static_assert(sizeof(Header) % llvm::AlignOf<T>::Alignment == 0, [all...] |
CodeGenModule.h | 217 /// The alignment of the field. This is important because 220 CharUnits Alignment; 222 BlockByrefHelpers(CharUnits alignment) : Alignment(alignment) {} 227 id.AddInteger(Alignment.getQuantity()); 724 /// Returns the assumed alignment of an opaque pointer to the given class. 727 /// Returns the assumed alignment of a virtual base of a class. 732 /// Given a class pointer with an actual known alignment, and the 733 /// expected alignment of an object at a dynamic offset w.r.t tha [all...] |
/external/llvm/include/llvm/CodeGen/ |
BasicTTIImpl.h | 481 unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, 515 unsigned Alignment, 528 Opcode, VecTy, Alignment, AddressSpace);
|
/external/llvm/lib/MC/MCParser/ |
AsmParser.cpp | [all...] |
/external/llvm/lib/Transforms/Scalar/ |
Scalarizer.cpp | 107 // Return the alignment of element I. 118 // The alignment of the vector. 348 // Try to fill in Layout from Ty, returning true on success. Alignment is 349 // the alignment of the vector, or 0 if the ABI default should be used. 350 bool Scalarizer::getVectorLayout(Type *Ty, unsigned Alignment, 363 if (Alignment) 364 Layout.VecAlign = Alignment;
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
HexagonLDBackend.cpp | 201 case Fragment::Alignment: { 914 if (frag->getKind() == mcld::Fragment::Alignment) { 930 // if the align constraint is larger than 1, append an alignment 931 unsigned int alignment = pFrom.getSection().align(); local 932 align = new AlignFragment(/*alignment*/alignment, 935 /*max bytes to emit*/alignment - 1); 998 unsigned int alignment = pFrom.getSection().align(); local [all...] |
/external/llvm/lib/Target/X86/ |
X86TargetTransformInfo.cpp | [all...] |
/frameworks/base/media/java/android/media/ |
Cea708CaptionRenderer.java | 36 import android.text.Layout.Alignment; [all...] |
WebVttRenderer.java | 20 import android.text.Layout.Alignment; 537 .append(", alignment:") 897 // TODO: add support for optional alignment value [,start|middle|end] 1726 final Alignment alignment; local [all...] |
/external/llvm/lib/CodeGen/MIRParser/ |
MIParser.cpp | 155 bool parseAlignment(unsigned &Alignment); 319 unsigned Alignment = 0; 334 if (parseAlignment(Alignment)) 367 if (Alignment) 368 MBB->setAlignment(Alignment); [all...] |
/external/llvm/lib/Target/ARM/AsmParser/ |
ARMAsmParser.cpp | 497 unsigned Alignment; // 0 = no alignment specified 498 // n = alignment in bytes (2, 4, 8, 16, or 32) 577 /// getAlignmentLoc - Get the location of the Alignment token of this operand. [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCalls.cpp | 136 // If the memcpy/memmove provides better alignment info than we can 158 unsigned Alignment = getKnownAlignment(MI->getDest(), DL, MI, AC, DT); 159 if (MI->getAlignment() < Alignment) { 161 Alignment, false)); 165 // Extract the length and alignment and fill if they are constant. 171 Alignment = MI->getAlignment(); 183 // Alignment 0 is identity for alignment 1 for memset, but not store. 184 if (Alignment == 0) Alignment = 1 [all...] |