/external/llvm/lib/Analysis/ |
TargetTransformInfo.cpp | 191 unsigned Alignment, 194 Alignment, Fast); 325 unsigned Alignment, 327 int Cost = TTIImpl->getMemoryOpCost(Opcode, Src, Alignment, AddressSpace); 333 unsigned Alignment, 336 TTIImpl->getMaskedMemoryOpCost(Opcode, Src, Alignment, AddressSpace); 343 unsigned Alignment) const { 345 Alignment); 352 unsigned Alignment, unsigned AddressSpace) const { 354 Alignment, AddressSpace) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/ |
Page.c | 974 @param Alignment Bits to align with
985 IN UINTN Alignment
[all...] |
/external/clang/lib/Sema/ |
SemaAttr.cpp | 56 // Otherwise, check to see if we need a max field alignment attribute. 57 if (unsigned Alignment = PackStack.CurrentValue) { 58 if (Alignment == Sema::kMac68kAlignmentSentinel) 62 Alignment * 8)); 81 unsigned Alignment = 0; 90 Alignment = 0; 97 Alignment = 1; 107 Alignment = Sema::kMac68kAlignmentSentinel; 111 // Reset just pops the top of the stack, or resets the current alignment to 126 PackStack.Act(PragmaLoc, Action, StringRef(), Alignment); [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/Fv2OnFvThunk/ |
Fv2OnFvThunk.c | 376 any required alignment for all files listed in the FileData
808 INTN Alignment;
810 Alignment = LowBitSet64 (RShiftU64 (FvAttributes, 16) & 0xffff);
811 if (Alignment != -1) {
812 Alignment = Alignment << 16;
814 Alignment = 0;
816 FvAttributes = (FvAttributes & 0x1ff) | Alignment;
[all...] |
/external/llvm/include/llvm/CodeGen/ |
MachineFrameInfo.h | 92 // The required alignment of this stack slot. 93 unsigned Alignment; 133 : SPOffset(SP), Size(Sz), Alignment(Al), isImmutable(IM), 138 /// The alignment of the stack. 145 /// lowering. All non-alloca stack objects have their alignment clamped to the 146 /// base ABI stack alignment. 204 /// alignment than the default alignment the target provides. 205 /// To handle this, MaxAlignment is set to the maximum alignment 207 /// native alignment maintained by the compiler, dynamic alignment code wil [all...] |
MIRYamlMapping.h | 193 unsigned Alignment = 0; 220 YamlIO.mapOptional("alignment", Object.Alignment); 243 unsigned Alignment = 0; 266 YamlIO.mapOptional("alignment", Object.Alignment); 281 unsigned Alignment = 0; 288 YamlIO.mapOptional("alignment", Constant.Alignment); 382 unsigned Alignment = 0 [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZLongBranch.cpp | 82 // The minimum alignment of the block, as a log2 value. 84 unsigned Alignment; 90 : Address(0), Size(0), Alignment(0), NumTerminators(0) {} 181 if (Block.Alignment > Position.KnownBits) { 184 Position.Address += ((uint64_t(1) << Block.Alignment) - 186 Position.KnownBits = Block.Alignment; 190 uint64_t AlignMask = (uint64_t(1) << Block.Alignment) - 1; 279 // Record the alignment, for quick access. 280 Block.Alignment = MBB->getAlignment();
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
ARMConstantPoolValue.cpp | 64 unsigned Alignment) { 166 unsigned Alignment) { 167 unsigned AlignMask = Alignment - 1; 231 unsigned Alignment) { 232 unsigned AlignMask = Alignment - 1; 287 unsigned Alignment) { 288 unsigned AlignMask = Alignment - 1;
|
/cts/tests/tests/text/src/android/text/cts/ |
BoringLayoutTest.java | 44 import android.text.Layout.Alignment; 67 private static final Layout.Alignment DEFAULT_ALIGN = Layout.Alignment.ALIGN_CENTER; 184 BoringLayout boringLayout = makeBoringLayoutAlign(Layout.Alignment.ALIGN_NORMAL); 188 boringLayout = makeBoringLayoutAlign(Layout.Alignment.ALIGN_CENTER); 194 boringLayout = makeBoringLayoutAlign(Layout.Alignment.ALIGN_OPPOSITE); 322 Alignment.ALIGN_NORMAL, 338 Alignment.ALIGN_OPPOSITE, 390 private static BoringLayout makeBoringLayoutAlign(Alignment align) {
|
/external/llvm/include/llvm/Support/ |
Allocator.h | 13 /// Allocate method accepting a size and alignment, and a Deallocate accepting 15 /// Allocate and Deallocate for setting size and alignment based on the final 44 /// \brief Allocate \a Size bytes of \a Alignment aligned memory. This method 46 void *Allocate(size_t Size, size_t Alignment) { 55 return static_cast<DerivedT *>(this)->Allocate(Size, Alignment); 77 return static_cast<T *>(Allocate(Num * sizeof(T), AlignOf<T>::Alignment)); 94 size_t /*Alignment*/) { 207 /// \brief Allocate space at the specified alignment. 209 Allocate(size_t Size, size_t Alignment) { 210 assert(Alignment > 0 && "0-byte alignnment is not allowed. Use 1 instead.") [all...] |
/external/eigen/Eigen/src/Core/ |
Ref.h | 26 Alignment = traits<Map<_PlainObjectType, _Options, _StrideType> >::Alignment 38 // NOTE, this indirection of evaluator<Derived>::Alignment is needed 42 // as "DerivedAlignment = (int(evaluator<Derived>::Alignment))," will make MSVC fail... 43 DerivedAlignment = int(evaluator<Derived>::Alignment), 44 AlignmentMatch = (int(traits<PlainObjectType>::Alignment)==int(Unaligned)) || (DerivedAlignment >= int(Alignment)), // FIXME the first condition is not very clear, it should be replaced by the required alignment 127 * \tparam Options specifies the pointer alignment in bytes. It can be: \c #Aligned128, , \c #Aligned64, \c #Aligned32, \c #Aligned16, \c #Aligned8 or \c #Unaligned.
|
DenseCoeffsBase.h | 615 template<int Alignment, typename Derived, bool JustReturnZero> 622 template<int Alignment, typename Derived> 623 struct first_aligned_impl<Alignment, Derived, false> 627 return internal::first_aligned<Alignment>(m.data(), m.size()); 631 /** \internal \returns the index of the first element of the array stored by \a m that is properly aligned with respect to \a Alignment for vectorization. 633 * \tparam Alignment requested alignment in Bytes. 638 template<int Alignment, typename Derived> 641 enum { ReturnZero = (int(evaluator<Derived>::Alignment) >= Alignment) || !(Derived::Flags & DirectAccessBit) } [all...] |
/external/llvm/include/llvm/Analysis/ |
TargetTransformInfo.h | 366 /// \brief Returns the target's jmp_buf alignment in bytes. 393 unsigned Alignment = 1, 521 int getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, 525 int getMaskedMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, 534 /// \p Alignment - alignment of single element 536 bool VariableMask, unsigned Alignment) const; 544 /// \p Alignment is the alignment of the memory operation 547 ArrayRef<unsigned> Indices, unsigned Alignment, [all...] |
/external/syslinux/gpxe/src/include/gpxe/efi/ |
Base.h | 199 /// ALIGN_VALUE - aligns a value up to the next boundary of the given alignment. 201 #define ALIGN_VALUE(Value, Alignment) ((Value) + (((Alignment) - (Value)) & ((Alignment) - 1))) 206 #define ALIGN_POINTER(Pointer, Alignment) ((VOID *) (ALIGN_VALUE ((UINTN)(Pointer), (Alignment))))
|
/external/llvm/lib/Transforms/Instrumentation/ |
EfficiencySanitizer.cpp | 197 Value *Addr, unsigned Alignment); 200 Value *Addr, unsigned Alignment); 202 Value *Addr, unsigned Alignment); 214 // For irregular sizes of any alignment: 652 unsigned Alignment; 655 Alignment = Load->getAlignment(); 659 Alignment = Store->getAlignment(); 663 Alignment = 0; 667 Alignment = 0; 676 // Convert 0 to the default alignment [all...] |
/external/llvm/include/llvm/MC/ |
MCSection.h | 73 /// The alignment requirement of this section. 74 unsigned Alignment = 1; 125 unsigned getAlignment() const { return Alignment; } 126 void setAlignment(unsigned Value) { Alignment = Value; }
|
/external/llvm/unittests/Support/ |
AllocatorTest.cpp | 125 // Test requesting alignment that goes past the end of the current slab. 146 void *Allocate(size_t Size, size_t /*Alignment*/) { 147 // Allocate space for the alignment, the slab, and a void* that goes right 149 size_t Alignment = 4096; 150 void *MemBase = malloc(Size + Alignment - 1 + sizeof(void*)); 153 void *Slab = (void *)alignAddr((char*)MemBase + sizeof(void *), Alignment); 171 // Allocate a large-ish block with a really large alignment so that the 172 // allocator will think that it has space, but after it does the alignment it 180 // Now the big chunk with a big alignment.
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
MCRegisterInfo.h | 32 const unsigned RegSize, Alignment; // Size & Alignment of register in bytes 43 : ID(id), Name(name), RegSize(RS), Alignment(Al), CopyCost(CC), 93 /// getAlignment - Return the minimum required alignment for a register of 95 unsigned getAlignment() const { return Alignment; }
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
miniport.h | 155 ULONG Alignment; 162 ULONG Alignment; 182 ULONG Alignment;
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
MachineFunction.h | 120 /// Alignment - The alignment of the function. 121 unsigned Alignment; 182 /// getAlignment - Return the alignment (log2, not bytes) of the function. 184 unsigned getAlignment() const { return Alignment; } 186 /// setAlignment - Set the alignment (log2, not bytes) of the function. 188 void setAlignment(unsigned A) { Alignment = A; } 192 if (Alignment < A) Alignment = A; 215 AlignOf<Ty>::Alignment)); [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/ |
PciEnumeratorSupport.c | 394 " Padding: Type = %s; Alignment = 0x%lx;\tLength = 0x%lx\n",
421 " BAR[%d]: Type = %s; Alignment = 0x%lx;\tLength = 0x%lx;\tOffset = 0x%02x\n",
423 PciIoDevice->PciBar[Index].Alignment, PciIoDevice->PciBar[Index].Length, PciIoDevice->PciBar[Index].Offset
434 " VFBAR[%d]: Type = %s; Alignment = 0x%lx;\tLength = 0x%lx;\tOffset = 0x%02x\n",
436 PciIoDevice->VfPciBar[Index].Alignment, PciIoDevice->VfPciBar[Index].Length, PciIoDevice->VfPciBar[Index].Offset
594 // PCI bridge supporting non-stardard I/O window alignment less than 4K.
601 // if so, it is assumed non-stardard I/O window alignment is supported by this bridge.
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciDxe/ |
UsbHcMem.c | 602 Allocates pages at a specified alignment that are suitable for an EfiPciIoOperationBusMasterCommonBuffer mapping.
604 If Alignment is not a power of two and Alignment is not zero, then ASSERT().
608 @param Alignment The requested alignment of the allocation. Must be a power of two.
615 @retval EFI_INVALID_PARAMETER Pages or Alignment is not valid.
624 IN UINTN Alignment,
639 // Alignment must be a power of two or zero.
641 ASSERT ((Alignment & (Alignment - 1)) == 0); [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciPei/ |
UsbHcMem.c | 561 Allocates pages at a specified alignment.
563 If Alignment is not a power of two and Alignment is not zero, then ASSERT().
566 @param Alignment The requested alignment of the allocation. Must be a power of two.
572 @retval EFI_INVALID_PARAMETER Pages or Alignment is not valid.
579 IN UINTN Alignment,
591 // Alignment must be a power of two or zero.
593 ASSERT ((Alignment & (Alignment - 1)) == 0); [all...] |
/external/clang/include/clang/AST/ |
AttrIterator.h | 27 size_t Alignment = 8); 31 size_t Alignment);
|
/external/llvm/include/llvm-c/ |
ExecutionEngine.h | 156 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID, 159 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID,
|