Searched defs:ALIGN (Results 1 - 20 of 20) sorted by relevance

/external/speex/libspeex/
H A Dstack_alloc.h51 * @def ALIGN(stack, size)
91 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) macro
93 #define PUSH(stack, size, type) (VALGRIND_MAKE_NOACCESS(stack, 1000),ALIGN((stack),sizeof(type)),VALGRIND_MAKE_WRITABLE(stack, ((size)*sizeof(type))),(stack)+=((size)*sizeof(type)),(type*)((stack)-((size)*sizeof(type))))
97 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) macro
99 #define PUSH(stack, size, type) (ALIGN((stack),sizeof(type)),(stack)+=((size)*sizeof(type)),(type*)((stack)-((size)*sizeof(type))))
/external/kernel-headers/original/linux/
H A Dlinkage.h27 #define ALIGN __ALIGN macro
33 ALIGN; \
H A Dkernel.h34 #define ALIGN(x,a) (((x)+(a)-1)&~((a)-1)) macro
/external/libffi/include/
H A Dffi_common.h66 #define ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1) macro
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Dmemory.c57 #define ALIGN 8 macro
85 if (align == 0) align = ALIGN;
/external/bluetooth/glib/tests/
H A Dslice-color.c22 #define ALIGN(size, base) ((base) * (gsize) (((size) + (base) - 1) / (base))) macro
129 n_blocks = area_size / 3 / ALIGN (block_size, sizeof (gsize) * 2);
H A Dslice-threadinit.c29 #define ALIGN(size, base) ((base) * (gsize) (((size) + (base) - 1) / (base))) macro
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DAttribute.java37 public static final Attribute ALIGN = new AttributeImpl ("ALIGN"); field in class:Attribute
/external/linux-tools-perf/util/include/linux/
H A Dkernel.h13 /* Bionic defines ALIGN in sys/param.h */
16 #define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1) macro
/external/iproute2/tc/
H A Dm_xt.c42 #ifndef ALIGN
43 #define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1) macro
H A Dm_xt_old.c43 #ifndef ALIGN
44 #define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1) macro
/external/iptables/libiptc/
H A Dlibip4tc.c115 #define ALIGN XT_ALIGN macro
235 assert(ALIGN(m->u.match_size) == m->u.match_size);
260 assert(e->next_offset == ALIGN(e->next_offset));
261 assert(e->target_offset == ALIGN(e->target_offset));
262 assert(t->target.u.target_size == ALIGN(t->target.u.target_size));
267 == ALIGN(sizeof(STRUCT_STANDARD_TARGET)));
299 == ALIGN(sizeof(struct ipt_error_target)));
462 assert(t->target.u.target_size == ALIGN(sizeof(*t)));
463 assert(e->next_offset == sizeof(*e) + ALIGN(sizeof(*t)));
H A Dlibip6tc.c110 #define ALIGN XT_ALIGN macro
399 t->target.u.target_size, ALIGN(sizeof(*t)));
400 assert(t->target.u.target_size == ALIGN(sizeof(*t)));
401 assert(e->next_offset == sizeof(*e) + ALIGN(sizeof(*t)));
/external/grub/netboot/
H A Ddepca.c404 ** DESC_ALIGN. ALIGN aligns the start address of the private memory area
409 #define ALIGN ALIGN8 /* Keep the LANCE happy... */ macro
555 mem_start = (mem_start + ALIGN) & ~ALIGN;
/external/opencv/cv/include/
H A Dcv.hpp132 enum { ALIGN=32 }; enumerator in enum:CvBaseImageFilter::__anon8216
/external/valgrind/main/VEX/pub/
H A Dlibvex.h352 Int ALIGN; local
353 ALIGN = sizeof(void*)-1;
354 nbytes = (nbytes + ALIGN) & ~ALIGN;
/external/bluetooth/glib/glib/
H A Dgslice.c106 #define ALIGN(size, base) ((base) * (gsize) (((size) + (base) - 1) / (base))) macro
118 /* optimized version of ALIGN (size, P2ALIGNMENT) */
124 #define P2ALIGN(size) ALIGN (size, P2ALIGNMENT)
1157 guint8 *amem = (guint8*) ALIGN ((gsize) mem, sys_page_size);
/external/opencv/cv/src/
H A Dcvlkpyramid.cpp86 const int ALIGN = 8; local
137 int tstep = cvAlign(levelSize.width,ALIGN) * elem_size;
190 step[0][i] = cvAlign( levelSize.width, ALIGN ) * elem_size;
/external/openssh/
H A Ddefines.h658 # define ALIGN(p) (((unsigned)p + ALIGNBYTES) & ~ALIGNBYTES) macro
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 5808 milliseconds