HomeSort by relevance Sort by last modified time
    Searched refs:Align (Results 101 - 125 of 444) sorted by null

1 2 3 45 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
xdata.d 8 Size EntSize Flags Link Info Align
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
byte-1.d 6 +Size +EntSize +Flags +Link +Info +Align
loc-1.d 7 +Size +EntSize +Flags +Link +Info +Align
loc-2.d 7 +Size +EntSize +Flags +Link +Info +Align
loc-5.d 6 +Size +EntSize +Flags +Link +Info +Align
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
bspec1.d 10 +Size +EntSize +Flags +Link +Info +Align
undef-3.d 9 +Size +EntSize +Flags +Link +Info +Align
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/
vle-multiseg-6.d 14 Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/
fdpic-stack-set.d 12 [ \t]+Type[ \t]+Offset[ \t]+VirtAddr[ \t]+PhysAddr[ \t]+FileSiz MemSiz[ \t]+Flg Align
fdpic-stack-size.d 12 [ \t]+Type[ \t]+Offset[ \t]+VirtAddr[ \t]+PhysAddr[ \t]+FileSiz MemSiz[ \t]+Flg Align
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-x86-64/
pr14207.d 12 Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align
  /external/clang/lib/Frontend/
LayoutOverrideSource.cpp 97 CurrentLayout.Align = Alignment;
112 Pos = LineStr.find("align=");
114 /* Skip past the align= prefix. */
115 LineStr = LineStr.substr(Pos + strlen("align="));
120 CurrentLayout.Align = Alignment;
187 Alignment = Known->second.Align;
198 OS << " Alignment:" << L->second.Align << '\n';
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
BitmapFontAlignmentTest.java 31 import com.badlogic.gdx.utils.Align;
33 /** Shows how to align single line, wrapped, and multi line text within a rectangle. */
132 layout.setText(font, text, Color.WHITE, width, Align.left, true);
136 font.draw(spriteBatch, text, x, y, width, Align.left, true);
142 // font.draw(spriteBatch, text, x, y, width, Align.center, true);
153 GlyphLayout layout = cache.setText(text, 0, 0, width, Align.left, true);
179 // font.draw(spriteBatch, text, x, y, width, Align.center, false);
194 // cache.setText(text, 0, 0, width, Align.center, false);
CpuSpriteBatchTest.java 35 import com.badlogic.gdx.utils.Align;
87 main.setPosition(0, 0, Align.center);
95 hat.setOrigin(Align.center);
97 hat.setPosition(0, 21, Align.center);
StageTest.java 39 import com.badlogic.gdx.utils.Align;
87 blend.setAlign(Align.center);
101 rotate.setAlign(Align.center);
112 scale.setAlign(Align.center);
162 img.setAlign(Align.center);
  /external/llvm/include/llvm/IR/
GlobalObject.h 53 void setAlignment(unsigned Align);
  /external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.cpp 21 SDValue Size, unsigned Align, bool isVolatile,
  /external/llvm/lib/Target/Mips/
Mips16ISelLowering.h 26 unsigned Align,
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 75 unsigned Align = MBB.getAlignment();
76 if (!Align)
79 unsigned AlignAmt = 1 << Align;
82 if (Align <= ParentAlign)
  /external/vixl/src/vixl/
code-buffer.h 74 // Align to kInstructionSize.
75 void Align();
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
Rotate3dTextActivity.java 70 mPaint.setTextAlign(Paint.Align.CENTER);
  /packages/apps/Calendar/src/com/android/calendar/
DayOfMonthDrawable.java 46 mPaint.setTextAlign(Paint.Align.CENTER);
  /external/llvm/lib/IR/
IRBuilder.cpp 82 CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align,
86 Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) };
107 CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align,
113 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
138 CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align,
144 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
206 /// Align - alignment of the source location
212 CallInst *IRBuilderBase::CreateMaskedLoad(Value *Ptr, unsigned Align,
221 Value *Ops[] = { Ptr, getInt32(Align), Mask, PassThru};
228 /// Align - alignment of the destination locatio
    [all...]
  /external/llvm/lib/CodeGen/
LocalStackSlotAllocation.cpp 142 unsigned Align = MFI->getObjectAlignment(FrameIdx);
146 MaxAlign = std::max(MaxAlign, Align);
149 Offset = (Offset + Align - 1) / Align * Align;
  /external/eigen/Eigen/src/Core/util/
Memory.h 296 /** \internal Allocates \a size bytes. If Align is true, then the returned ptr is 16-byte-aligned.
299 template<bool Align> inline void* conditional_aligned_malloc(size_t size)
315 template<bool Align> inline void conditional_aligned_free(void *ptr)
325 template<bool Align> inline void* conditional_aligned_realloc(void* ptr, size_t new_size, size_t old_size)
380 template<typename T, bool Align> inline T* conditional_aligned_new(size_t size)
383 T *result = reinterpret_cast<T*>(conditional_aligned_malloc<Align>(sizeof(T)*size));
399 template<typename T, bool Align> inline void conditional_aligned_delete(T *ptr, size_t size)
402 conditional_aligned_free<Align>(ptr);
405 template<typename T, bool Align> inline T* conditional_aligned_realloc_new(T* pts, size_t new_size, size_t old_size)
411 T *result = reinterpret_cast<T*>(conditional_aligned_realloc<Align>(reinterpret_cast<void*>(pts), sizeof(T)*new_size, sizeof(T)*old_size))
    [all...]

Completed in 677 milliseconds

1 2 3 45 6 7 8 91011>>