HomeSort by relevance Sort by last modified time
    Searched full:alignment (Results 51 - 75 of 3132) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/core/com/jme3/font/
StringBlock.java 49 private Align alignment = Align.Left; field in class:StringBlock
64 * @param alignment the initial alignment of the text
69 StringBlock(String text, Rectangle textBox, BitmapFont.Align alignment, float size, ColorRGBA color,
73 this.alignment = alignment;
82 this.alignment = Align.Left;
118 return alignment;
125 void setAlignment(BitmapFont.Align alignment) {
126 this.alignment = alignment;
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineConstantPool.h 56 unsigned Alignment) = 0;
83 /// The required alignment for this entry. The top bit is set when Val is
85 unsigned Alignment;
88 : Alignment(A) {
92 : Alignment(A) {
94 Alignment |= 1U << (sizeof(unsigned)*CHAR_BIT-1);
101 return (int)Alignment < 0;
105 return Alignment & ~(1 << (sizeof(unsigned)*CHAR_BIT-1));
136 unsigned PoolAlignment; ///< The alignment for the pool.
146 /// getConstantPoolAlignment - Return the alignment required b
    [all...]
  /external/clang/test/CodeGen/
complex-indirect.c 5 // verify a valid alignment, but we now realize we can use an i16 and let the
6 // backend guarantee the alignment.
2009-12-07-BitFieldAlignment.c 2 // Set alignment on bitfield accesses.
arm-vaarg-align.c 4 * Check that va_arg accesses stack according to ABI alignment
5 * long long and double require 8-byte alignment under AAPCS
6 * however, they only require 4-byte alignment under APCS
  /external/clang/test/SemaCXX/
warn-new-overaligned-3.cpp 19 new Test; // expected-warning {{type 'test1::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
20 new Test[10]; // expected-warning {{type 'test1::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
  /external/llvm/test/CodeGen/Generic/
invalid-memcpy.ll 3 ; This testcase is invalid (the alignment specified for memcpy is
4 ; greater than the alignment guaranteed for Qux or C.0.1173), but it
  /frameworks/rs/scriptc/
rs_types.rsh 180 * alignment.
185 * into a single 128 bit field with 128 bit alignment.
191 * alignment.
197 * into a single 128 bit field with 128 bit alignment.
202 * into a single 256 bit field with 256 bit alignment.
207 * into a single 256 bit field with 256 bit alignment.
213 * into a single 16 bit field with 16 bit alignment.
218 * into a single 32 bit field with 32 bit alignment.
223 * into a single 32 bit field with 32 bit alignment.
229 * into a single 32 bit field with 32 bit alignment
    [all...]
  /build/tools/zipalign/
Android.mk 4 # Zip alignment tool
  /dalvik/vm/mterp/arm-vfp/
README.txt 5 and later. It assumes that word alignment is sufficient for double-word
  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p11.cpp 9 void Allocate(unsigned Alignment
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJITMemoryManager.h 35 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
37 return JMM->allocateSpace(Size, Alignment);
40 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
42 return JMM->allocateSpace(Size, Alignment);
  /external/llvm/test/Linker/
2006-06-15-GlobalVarAlignment.ll 1 ; The linker should choose the largest alignment when linking.
  /external/llvm/test/MC/MachO/
x86_64-sections.s 69 // CHECK: ('alignment', 0)
85 // CHECK: ('alignment', 0)
101 // CHECK: ('alignment', 0)
117 // CHECK: ('alignment', 0)
133 // CHECK: ('alignment', 2)
149 // CHECK: ('alignment', 3)
165 // CHECK: ('alignment', 4)
181 // CHECK: ('alignment', 0)
197 // CHECK: ('alignment', 0)
213 // CHECK: ('alignment', 0
    [all...]
  /external/clang/test/Sema/
warn-cast-align.c 6 short *b = (short*) P; // expected-warning {{cast from 'char *' to 'short *' increases required alignment from 1 to 2}}
7 int *c = (int*) P; // expected-warning {{cast from 'char *' to 'int *' increases required alignment from 1 to 4}}
35 struct A *a = (struct A*) P; // expected-warning {{cast from 'char *' to 'struct A *' increases required alignment from 1 to 16}}
  /external/libffi/src/
prep_cif.c 44 FFI_ASSERT(arg->alignment == 0);
56 arg->size = ALIGN(arg->size, (*ptr)->alignment);
59 arg->alignment = (arg->alignment > (*ptr)->alignment) ?
60 arg->alignment : (*ptr)->alignment;
72 arg->size = ALIGN (arg->size, arg->alignment);
82 alignment only, so it completely overrides this functions,
83 which assumes "natural" alignment and padding. *
    [all...]
  /external/llvm/test/Transforms/InstCombine/
stack-overalign.ll 4 ; memcpy is aligned up to the alignment of the destination, however
13 ; could do dynamic alignment for just the one alloca, and leave the
14 ; main stack pointer at its standard alignment.
  /frameworks/av/libvideoeditor/lvpp/
PreviewRenderer.h 44 static size_t ALIGN(size_t x, size_t alignment) {
45 return (x + alignment - 1) & ~(alignment - 1);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
MultiLineTexture.java 39 Layout.Alignment alignment) {
42 maxWidth, alignment, 1, 0, true, null, 0);