HomeSort by relevance Sort by last modified time
    Searched defs:Alignment (Results 51 - 75 of 95) sorted by null

1 23 4

  /external/llvm/include/llvm/MC/
MCAssembler.h 339 /// Alignment - The alignment to ensure, in bytes.
340 unsigned Alignment;
348 /// MaxBytesToEmit - The maximum number of bytes to emit; if the alignment
360 : MCFragment(FT_Align, SD), Alignment(_Alignment),
367 unsigned getAlignment() const { return Alignment; }
582 /// Alignment - The maximum alignment seen in this section.
583 unsigned Alignment;
610 unsigned getAlignment() const { return Alignment; }
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 439 // The alignment is stored as a 16-bit raw value from bits 31--16. We shift
441 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
442 assert((!Alignment || isPowerOf2_32(Alignment)) &&
443 "Alignment must be a power of two.");
445 if (Alignment)
446 B.addAlignmentAttr(Alignment);
550 if (Attribute::AttrKind(Record[++i]) == Attribute::Alignment)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 68 /// getGVAlignmentLog2 - Return the alignment to use for the specified global
69 /// value in log2 form. This rounds up to the preferred alignment if possible
81 // If the GV has a specified alignment, take it into account.
285 // If the alignment is specified, we *must* obey it. Overaligning a global
286 // with a specified alignment is a prompt way to break globals emitted to
314 // Use .lcomm only if it supports user-specified alignment.
317 // some -unknown- default alignment behavior, which could cause
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 183 unsigned Alignment = 0, bool isZExt = true,
186 unsigned Alignment = 0);
191 unsigned Alignment);
540 // MachineConstantPool wants an explicit alignment.
598 // MachineConstantPool wants an explicit alignment.
652 // MachineConstantPool wants an explicit alignment.
    [all...]
ARMISelDAGToDAG.cpp 284 // Get the alignment operand for a NEON VLD or VST instruction.
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp 490 // worry about natural alignment or not. See TargetLowering::LowerCallTo()
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
X86InstrInfo.cpp 77 // Minimum alignment required for load/store.
275 // Index 0, folded load and store, no alignment requirement.
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 424 // We've managed to infer better alignment information than the load
    [all...]
  /frameworks/base/core/java/android/text/
Layout.java 106 * override the alignment.
112 int width, Alignment align,
126 * override the alignment.
134 int width, Alignment align, TextDirectionHeuristic textDir,
164 int width, Alignment align,
219 Alignment paraAlign = mAlignment;
247 // Compute the alignment, last alignment style wins.
312 Alignment align = paraAlign;
313 if (align == Alignment.ALIGN_LEFT)
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 464 // The alignment is stored as a 16-bit raw value from bits 31--16. We shift
466 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
467 assert((!Alignment || isPowerOf2_32(Alignment)) &&
468 "Alignment must be a power of two.");
470 if (Alignment)
471 B.addAlignmentAttr(Alignment);
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 744 // The alignment is stored as a 16-bit raw value from bits 31--16. We shift
746 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
747 assert((!Alignment || isPowerOf2_32(Alignment)) &&
748 "Alignment must be a power of two.");
750 if (Alignment)
751 B.addAlignmentAttr(Alignment);
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 411 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(BaseType);
413 AggValueSlot::forAddr(V, Alignment, Qualifiers(),
797 CharUnits Alignment;
803 Alignment = CharUnits::fromQuantity(BFInfo.StorageAlignment);
805 Alignment = CGF.getContext().getDeclAlign(FirstField);
809 Alignment) == 0 && "Bad field alignment.");
822 MemcpySize, Alignment);
837 CharUnits Size, CharUnits Alignment) {
849 Alignment.getQuantity())
    [all...]
CGObjC.cpp 533 // fine given adequate alignment.
593 // Evaluate the ivar's size and alignment.
679 // alignment of the ivar.
692 // line, so the alignment has to be at least the size of the access.
    [all...]
CGExpr.cpp 70 // FIXME: Should we prefer the preferred type alignment here?
79 // FIXME: Should we prefer the preferred type alignment here?
156 CharUnits Alignment = getContext().getTypeAlignInChars(E->getType());
157 EmitAggExpr(E, AggValueSlot::forAddr(Location, Alignment, Quals,
307 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(E->getType());
310 AggSlot = AggValueSlot::forAddr(ReferenceTemporary, Alignment,
408 // storage of suitable size and alignment to contain an object of the
503 QualType Ty, CharUnits Alignment) {
549 if (SanOpts->Alignment) {
550 AlignVal = Alignment.getQuantity()
2477 CharUnits alignment = getContext().getDeclAlign(field); local
    [all...]
  /external/freetype/src/raster/
ftraster.c 316 } Alignment, *PAlignment;
381 ( ( sizeof ( TProfile ) + sizeof ( Alignment ) - 1 ) / sizeof ( long ) )
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 91 | Alignment of int
508 external alignment : llvalue -> int = "llvm_alignment"
673 | Attribute.Alignment n -> Int32.shift_left (Int32.of_int n) 16
711 l := Attribute.Alignment (Int32.to_int align) :: !l;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]
LegalizeVectorTypes.cpp 771 unsigned Alignment =
787 false, false, false, MinAlign(Alignment, IncrementSize));
811 unsigned Alignment = LD->getOriginalAlignment();
821 isInvariant, Alignment);
828 HiMemVT, isVolatile, isNonTemporal, isInvariant, Alignment);
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 466 unsigned Alignment = std::max(kMinOriginAlignment, I.getAlignment());
469 Alignment);
487 Alignment);
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 105 * A child's ability to stretch is inferred from the alignment properties of
108 * If alignment was defined along a given axis then the component
109 * is taken as <em>flexible</em> in that direction. If no alignment was set,
135 * use {@link #CENTER} alignment (or {@link LayoutParams#setGravity(int) gravity}).
178 * When the {@code alignmentMode} is set to {@link #ALIGN_BOUNDS}, alignment
187 * children that belong to a row group that uses {@link #TOP} alignment will
203 * belong to a row group that uses {@link #TOP} alignment.
452 * Returns the alignment mode.
454 * @return the alignment mode; either {@link #ALIGN_BOUNDS} or {@link #ALIGN_MARGINS}
468 * Sets the alignment mode to be used for all of the alignments between th
2218 Alignment alignment = gl.getAlignment(spec.alignment, horizontal); local
2350 final Alignment alignment; field in class:Spec
    [all...]

Completed in 1153 milliseconds

1 23 4