| /external/llvm/lib/MC/MCParser/ |
| AsmParser.cpp | [all...] |
| /external/llvm/lib/Target/ARM/ |
| ARMISelDAGToDAG.cpp | 284 // Get the alignment operand for a NEON VLD or VST instruction. [all...] |
| /external/llvm/lib/Target/X86/ |
| X86FastISel.cpp | [all...] |
| X86InstrInfo.cpp | 63 // Minimum alignment required for load/store. 273 // Index 0, folded load and store, no alignment requirement. [all...] |
| X86ISelLowering.cpp | [all...] |
| /external/llvm/lib/Target/XCore/ |
| XCoreISelLowering.cpp | 423 // 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 | 496 // The alignment is stored as a 16-bit raw value from bits 31--16. 499 unsigned Alignment = (Record[i+1] & (0xffffull << 16)) >> 16; 500 if (Alignment && !isPowerOf2_32(Alignment)) 501 return Error("Alignment is not a power of two."); 504 if (Alignment) 505 ReconstitutedAttr |= Attribute::constructAlignmentFromInt(Alignment); [all...] |
| /frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
| BitcodeReader.cpp | 775 // The alignment is stored as a 16-bit raw value from bits 31--16. 778 unsigned Alignment = (Record[i+1] & (0xffffull << 16)) >> 16; 779 if (Alignment && !isPowerOf2_32(Alignment)) 780 return Error("Alignment is not a power of two."); 783 if (Alignment) 784 ReconstitutedAttr |= Attribute::constructAlignmentFromInt(Alignment); [all...] |
| /external/clang/lib/CodeGen/ |
| CGObjC.cpp | 533 // fine given adequate alignment. 593 // Evaluate the ivar's size and alignment. 670 // alignment of the ivar. 683 // line, so the alignment has to be at least the size of the access. [all...] |
| CGExpr.cpp | 67 // FIXME: Should we prefer the preferred type alignment here? 76 // FIXME: Should we prefer the preferred type alignment here? 143 CharUnits Alignment = getContext().getTypeAlignInChars(E->getType()); 144 EmitAggExpr(E, AggValueSlot::forAddr(Location, Alignment, Quals, 364 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(E->getType()); 367 AggSlot = AggValueSlot::forAddr(ReferenceTemporary, Alignment, 435 unsigned Alignment = 439 /*Volatile=*/false, Alignment, E->getType()); 1581 CharUnits alignment = getContext().getDeclAlign(VD); local 2039 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 | 710 unsigned Alignment = 726 false, false, false, MinAlign(Alignment, IncrementSize)); 750 unsigned Alignment = LD->getOriginalAlignment(); 760 isInvariant, Alignment); 767 HiMemVT, isVolatile, isNonTemporal, isInvariant, Alignment); [all...] |
| DAGCombiner.cpp | [all...] |
| SelectionDAGBuilder.cpp | [all...] |
| /external/llvm/lib/Target/Mips/ |
| MipsISelLowering.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 2219 Alignment alignment = gl.getAlignment(spec.alignment, horizontal); local 2351 final Alignment alignment; field in class:Spec [all...] |
| /frameworks/support/v7/gridlayout/src/android/support/v7/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}). 177 * When the {@code alignmentMode} is set to {@link #ALIGN_BOUNDS}, alignment 186 * children that belong to a row group that uses {@link #TOP} alignment will 202 * belong to a row group that uses {@link #TOP} alignment. 432 * Returns the alignment mode. 434 * @return the alignment mode; either {@link #ALIGN_BOUNDS} or {@link #ALIGN_MARGINS} 448 * Sets the alignment mode to be used for all of the alignments between th 2151 Alignment alignment = gridLayout.getAlignment(spec.alignment, axis.horizontal); local 2283 final Alignment alignment; field in class:Spec [all...] |
| /external/llvm/lib/Target/ARM/AsmParser/ |
| ARMAsmParser.cpp | 370 unsigned Alignment; // 0 = no alignment specified 371 // n = alignment in bytes (2, 4, 8, 16, or 32) 870 (alignOK || Memory.Alignment == 0); 873 if (!isMemory() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0) 887 if (!isMemory() || Memory.Alignment != 0) return false; 909 if (!isMemory() || Memory.Alignment != 0) return false; 937 if (!isMemory() || Memory.Alignment != 0) return false; 948 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0) [all...] |
| /external/mesa3d/src/mesa/main/ |
| mtypes.h | [all...] |
| /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/ |
| android-support-v7-gridlayout.jar | |
| /prebuilt/common/netbeans-visual/ |
| org-netbeans-api-visual.jar | |
| /prebuilts/sdk/14/ |
| android.jar | |