HomeSort by relevance Sort by last modified time
    Searched refs:alignment (Results 176 - 200 of 540) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libffi/testsuite/libffi.call/
cls_3byte2.c 62 cls_struct_type.alignment = 0;
cls_4byte.c 62 cls_struct_type.alignment = 0;
cls_8byte.c 61 cls_struct_type.alignment = 0;
cls_9byte1.c 4 alignment of the struct if the first element is a double.
62 cls_struct_type.alignment = 0;
cls_9byte2.c 4 alignment of the struct if the first element is a double.
62 cls_struct_type.alignment = 0;
struct8.c 35 ts8_type.alignment = 0;
nested_struct.c 89 cls_struct_type.alignment = 0;
94 cls_struct_type1.alignment = 0;
99 cls_struct_type2.alignment = 0;
nested_struct1.c 93 cls_struct_type.alignment = 0;
98 cls_struct_type1.alignment = 0;
103 cls_struct_type2.alignment = 0;
  /external/skia/src/gpu/
GrBufferAllocPool.h 126 * @param alignment alignment constraint from start of buffer
132 size_t alignment,
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ByteArrayAnnotatedOutput.java 344 public void alignTo(int alignment) {
345 int mask = alignment - 1;
347 if ((alignment < 0) || ((mask & alignment) != 0)) {
348 throw new IllegalArgumentException("bogus alignment");
  /frameworks/compile/mclinker/include/mcld/Fragment/
Stub.h 85 /// alignment - alignment of the stub
86 virtual size_t alignment() const = 0;
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMToARMStub.cpp 106 size_t ARMToARMStub::alignment() const function in class:ARMToARMStub
ARMToTHMStub.cpp 114 size_t ARMToTHMStub::alignment() const function in class:ARMToTHMStub
THMToARMStub.cpp 111 size_t THMToARMStub::alignment() const function in class:THMToARMStub
THMToTHMStub.cpp 108 size_t THMToTHMStub::alignment() const function in class:THMToTHMStub
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
som.h 147 unsigned int alignment :27; member in struct:subspace_dictionary_record
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
som.h 147 unsigned int alignment :27; member in struct:subspace_dictionary_record
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
som.h 147 unsigned int alignment :27; member in struct:subspace_dictionary_record
  /external/compiler-rt/lib/asan/tests/
asan_test.cc 29 NOINLINE void *memalign_fff(size_t alignment, size_t size) {
30 void *res = memalign/**/(alignment, size); break_optimization(0); return res;}
31 NOINLINE void *memalign_eee(size_t alignment, size_t size) {
32 void *res = memalign_fff(alignment, size); break_optimization(0); return res;}
33 NOINLINE void *memalign_ddd(size_t alignment, size_t size) {
34 void *res = memalign_eee(alignment, size); break_optimization(0); return res;}
35 NOINLINE void *memalign_ccc(size_t alignment, size_t size) {
36 void *res = memalign_ddd(alignment, size); break_optimization(0); return res;}
37 NOINLINE void *memalign_bbb(size_t alignment, size_t size) {
38 void *res = memalign_ccc(alignment, size); break_optimization(0); return res;
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 54 // Map aligned chunk of address space; size and alignment are powers of two.
55 void *MmapAlignedOrDie(uptr size, uptr alignment, const char *mem_type);
220 INLINE bool IsAligned(uptr a, uptr alignment) {
221 return (a & (alignment - 1)) == 0;
  /external/webkit/Source/JavaScriptCore/assembler/
AssemblerBufferWithConstantPool.h 130 bool isAligned(int alignment)
132 flushIfNoSpaceFor(alignment);
133 return AssemblerBuffer::isAligned(alignment);
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
GLClientState.cpp 229 int alignment = pack ? m_pixelStore.pack_alignment : m_pixelStore.unpack_alignment; local
233 width, height, format, type, pack, alignment);
236 size_t aligned_linesize = int(linesize / alignment) * alignment;
238 aligned_linesize += alignment;
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_utils_gtk.cc 82 GtkWidget* alignment = gtk_alignment_new(0.0, 0.0, 1.0, 1.0); local
86 gtk_alignment_set_padding(GTK_ALIGNMENT(alignment),
90 gtk_container_add(GTK_CONTAINER(alignment), box);
91 gtk_container_add(GTK_CONTAINER(button), alignment); local
93 gtk_widget_show_all(alignment);
  /external/chromium/chrome/browser/ui/gtk/notifications/
balloon_view_gtk.cc 240 GtkWidget* alignment = gtk_alignment_new(0.0, 0.0, 1.0, 1.0); local
242 GTK_ALIGNMENT(alignment),
244 gtk_widget_show_all(alignment);
245 gtk_container_add(GTK_CONTAINER(alignment), contents);
246 gtk_container_add(GTK_CONTAINER(vbox), alignment); local
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
utilities.cpp 182 GLsizei ComputePitch(GLsizei width, GLenum format, GLenum type, GLint alignment)
184 ASSERT(alignment > 0 && isPow2(alignment));
187 return (rawPitch + alignment - 1) & ~(alignment - 1);

Completed in 692 milliseconds

1 2 3 4 5 6 78 91011>>