/external/llvm/lib/CodeGen/MIRParser/ |
MIParser.cpp | 165 bool parseAlignment(unsigned &Alignment); 329 unsigned Alignment = 0; 344 if (parseAlignment(Alignment)) 377 if (Alignment) 378 MBB->setAlignment(Alignment); [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
TargetLowering.cpp | 111 Alignment = CS->getParamAlignment(AttrIdx); [all...] |
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
LegalizeVectorTypes.cpp | 673 unsigned Alignment = 689 false, false, MinAlign(Alignment, IncrementSize)); 713 unsigned Alignment = LD->getOriginalAlignment(); 722 Alignment); 729 HiMemVT, isVolatile, isNonTemporal, Alignment); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ks.h | 79 LONGLONG Alignment; 268 LONG_PTR Alignment[2]; 269 } Alignment; 795 LONGLONG Alignment; [all...] |
/external/clang/lib/CodeGen/ |
CGExpr.cpp | 75 /// default alignment of the corresponding LLVM type, which is *not* 76 /// guaranteed to be related in any way to the expected alignment of 99 // FIXME: Should we prefer the preferred type alignment here? 333 CharUnits alignment = CGF.getContext().getTypeAlignInChars(Ty); local 334 GV->setAlignment(alignment.getQuantity()); 336 return Address(GV, alignment); 495 // storage of suitable size and alignment to contain an object of the 527 SanOpts.has(SanitizerKind::Alignment) | 534 CharUnits Alignment, bool SkipNullCheck) { 587 if (SanOpts.has(SanitizerKind::Alignment)) { 3373 CharUnits alignment = local [all...] |
CGCUDANV.cpp | 58 unsigned Alignment = 0) {
|
CGCleanup.h | 87 /// Always a multiple of the scope-stack alignment. 426 // they don't require greater alignment than ScopeStackAlignment. So, 427 // EHCleanupScope ought to have alignment equal to that -- not more 430 static_assert(llvm::AlignOf<EHCleanupScope>::Alignment == 432 "EHCleanupScope expected alignment");
|
/external/llvm/lib/Target/X86/ |
X86InstrInfo.cpp | 95 // Minimum alignment required for load/store. 290 // Index 0, folded load and store, no alignment requirement. [all...] |
X86InstrInfo.h | 467 unsigned Size, unsigned Alignment,
|
/external/llvm/lib/Target/Mips/ |
MipsFastISel.cpp | 134 unsigned Alignment = 0); 138 unsigned Alignment = 0); 718 unsigned Alignment) { 779 unsigned Alignment) { [all...] |
/external/llvm/lib/CodeGen/ |
MachineBasicBlock.cpp | 269 if (Alignment) 270 OS << Comma << "Align " << Alignment << " (" << (1u << Alignment) [all...] |
/cts/tests/tests/text/src/android/text/cts/ |
StaticLayoutTest.java | 30 import android.text.Layout.Alignment; 72 private static final Alignment DEFAULT_ALIGN = Alignment.ALIGN_CENTER; 145 assertEquals(Alignment.ALIGN_NORMAL, layout.getAlignment()); [all...] |
/device/linaro/bootloader/edk2/DuetPkg/BootSector/ |
efi32.asm | 260 ; Alignment check causes an error code to be pushed so no phony push necessary
552 Int17String db "11h Alignment check -",0
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Protocol/LegacyBios/ |
LegacyBios.h | 640 IN UINTN Alignment,
655 Alignment - Address alignment. Bit mapped. First non-zero
656 bit from right is alignment.
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/ |
IfrLibrary.h | 960 IN UINT8 Alignment,
975 Alignment - Alignment of the banner
[all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/UefiEfiIfrSupportLib/ |
UefiIfrLibrary.h | 477 IN UINT8 Alignment,
488 Alignment - Alignment for this banner, left, center or right
[all...] |
/external/clang/include/clang/AST/ |
ASTContext.h | 162 /// \brief A cache from types to size and alignment information. [all...] |
/external/clang/include/clang/Sema/ |
Overload.h | 725 llvm::AlignedCharArray<llvm::AlignOf<ImplicitConversionSequence>::Alignment,
|
/external/clang/lib/AST/ |
ExprObjC.cpp | 281 llvm::AlignOf<ObjCMessageExpr>::Alignment);
|
/external/llvm/include/llvm/CodeGen/ |
SelectionDAGNodes.h | [all...] |
/external/llvm/include/llvm/Support/ |
Endian.h | 29 /// \brief ::value is either alignment, or alignof(T) if alignment is 0. 30 template<class T, int alignment> 32 enum {value = alignment == 0 ? AlignOf<T>::Alignment : alignment}; 48 std::size_t alignment> 54 (detail::PickAlignment<value_type, alignment>::value)), 61 template<typename value_type, endianness endian, std::size_t alignment, 64 value_type ret = read<value_type, endian, alignment>(memory) [all...] |
/external/llvm/include/llvm/Transforms/Utils/ |
SSAUpdaterImpl.h | 125 AlignOf<BBInfo*>::Alignment));
|
/external/llvm/lib/Bitcode/Reader/ |
BitcodeReader.cpp | 422 /// Converts alignment exponent (i.e. power of two (or zero)) to the 423 /// corresponding alignment to use. If alignment is too large, returns 425 std::error_code parseAlignmentValue(uint64_t Exponent, unsigned &Alignment); [all...] |
/external/llvm/lib/Transforms/Vectorize/ |
LoopVectorize.cpp | 726 assert(Align && "The alignment should be non-zero"); 741 /// alignment \p NewAlign. The index is related to the leader and it could be 746 assert(NewAlign && "The new member's alignment should be non-zero"); 768 // It's always safe to select the minimum alignment. [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
SelectionDAGNodes.h | 901 /// Returns alignment and volatility of the memory access 947 /// to reflect the alignment of NewMMO, if it has a greater alignment. 948 /// This must only be used when the new alignment applies to all users of [all...] |