Searched refs:alignment (Results 76 - 100 of 252) sorted by relevance

1234567891011

/external/compiler-rt/lib/asan/
H A Dasan_allocator.cc63 static inline bool IsAligned(uptr a, uptr alignment) { argument
64 return (a & (alignment - 1)) == 0;
178 // by memalign, the alignment might be higher and the user-accessible memory
623 static u8 *Allocate(uptr alignment, uptr size, StackTrace *stack) {
629 CHECK(IsPowerOfTwo(alignment));
632 if (alignment > REDZONE) {
633 needed_size += alignment;
650 alignment, size, size_class, size_to_allocate);
685 if (alignment > REDZONE && (addr & (alignment
[all...]
H A Dasan_allocator.h141 void *asan_memalign(uptr alignment, uptr size, StackTrace *stack);
150 int asan_posix_memalign(void **memptr, uptr alignment, uptr size,
/external/chromium/chrome/browser/themes/
H A Dtheme_service.h49 // Strings used in alignment properties.
189 // Convert a bitfield alignment into a string like "top left". Public so that
191 static std::string AlignmentToString(int alignment);
195 static int StringToAlignment(const std::string& alignment);
/external/dbus/dbus/
H A Ddbus-marshal-validate.c321 int alignment; local
348 alignment = _dbus_type_get_alignment (current_type);
349 a = _DBUS_ALIGN_ADDRESS (p, alignment);
367 p += alignment;
401 alignment = _dbus_type_get_alignment (array_elem_type);
403 a = _DBUS_ALIGN_ADDRESS (p, alignment);
471 alignment = _dbus_type_get_alignment (array_elem_type);
480 p += alignment;
/external/libffi/testsuite/libffi.call/
H A Dnested_struct2.c69 cls_struct_type.alignment = 0;
74 cls_struct_type1.alignment = 0;
H A Dnested_struct3.c70 cls_struct_type.alignment = 0;
75 cls_struct_type1.alignment = 0;
H A Dnested_struct4.c70 cls_struct_type.alignment = 0;
75 cls_struct_type1.alignment = 0;
H A Dnested_struct5.c70 cls_struct_type.alignment = 0;
75 cls_struct_type1.alignment = 0;
H A Dnested_struct7.c70 cls_struct_type.alignment = 0;
75 cls_struct_type1.alignment = 0;
H A Dcls_1_1byte.c62 cls_struct_type.alignment = 0;
H A Dcls_2byte.c62 cls_struct_type.alignment = 0;
H A Dcls_3byte1.c62 cls_struct_type.alignment = 0;
H A Dcls_3byte2.c62 cls_struct_type.alignment = 0;
H A Dcls_4byte.c62 cls_struct_type.alignment = 0;
H A Dcls_8byte.c61 cls_struct_type.alignment = 0;
H A Dcls_9byte1.c4 alignment of the struct if the first element is a double.
62 cls_struct_type.alignment = 0;
H A Dcls_9byte2.c4 alignment of the struct if the first element is a double.
62 cls_struct_type.alignment = 0;
H A Dstruct8.c35 ts8_type.alignment = 0;
/external/libvpx/vp8/encoder/ppc/
H A Dencodemb_altivec.asm37 lvsl v5, 0, r4 ;# permutate value for alignment
49 lvsl v5, 0, r4 ;# permutate value for alignment
74 lvsl v5, 0, r5 ;# permutate value for alignment
86 lvsl v5, 0, r5 ;# permutate value for alignment
/external/aac/libSYS/src/
H A DgenericStds.cpp233 void *FDKaalloc(const UINT size, const UINT alignment) argument
236 addr = FDKcalloc(1, size + alignment + sizeof(void*)); /* Malloc and clear memory. */
276 a_size = ((dim*size+3)&0xfffffffc); /* force 4 byte alignment (1111 .... 1111 1100) */
298 void *FDKaalloc_L(const UINT size, const UINT alignment, MEMORY_SECTION s) argument
301 addr = FDKcalloc_L(1, size + alignment + sizeof(void*), s); /* Malloc and clear memory. */
432 /* Enforce alignment of 24 bit data. */
/external/chromium/chrome/browser/ui/gtk/
H A Dabout_chrome_dialog.cc276 GtkWidget* alignment = gtk_alignment_new(0.0, 0.0, 1.0, 1.0);
277 gtk_alignment_set_padding(GTK_ALIGNMENT(alignment),
280 gtk_container_add(GTK_CONTAINER(alignment), vbox);
281 gtk_box_pack_start(GTK_BOX(content_area), alignment, FALSE, FALSE, 0);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayAnnotatedOutput.java325 public void alignTo(int alignment) { argument
326 int mask = alignment - 1;
328 if ((alignment < 0) || ((mask & alignment) != 0)) {
329 throw new IllegalArgumentException("bogus alignment");
/external/freetype/src/pshinter/
H A Dpshglob.h182 PSH_Alignment alignment );
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DLetters.java146 final Align alignment = block.getAlignment();
148 if (block.getTextBox() == null || (alignment == Align.Left && valignment == VAlign.Top))
174 if (alignment == Align.Center) {
176 } else if (alignment == Align.Right) {
/external/skia/src/gpu/
H A DGrBufferAllocPool.h126 * @param alignment alignment constraint from start of buffer
132 size_t alignment,

Completed in 374 milliseconds

1234567891011