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

12

/external/chromium_org/third_party/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/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/chromium_org/third_party/opus/src/celt/
H A Dstack_alloc.h55 * @def ALIGN(stack, size)
134 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) macro
135 #define PUSH(stack, size, type) (VALGRIND_MAKE_MEM_NOACCESS(stack, global_stack_top-stack),ALIGN((stack),sizeof(type)/sizeof(char)),VALGRIND_MAKE_MEM_UNDEFINED(stack, ((size)*sizeof(type)/sizeof(char))),(stack)+=(2*(size)*sizeof(type)/sizeof(char)),(type*)((stack)-(2*(size)*sizeof(type)/sizeof(char))))
141 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) macro
142 #define PUSH(stack, size, type) (ALIGN((stack),sizeof(type)/sizeof(char)),(stack)+=(size)*(sizeof(type)/sizeof(char)),(type*)((stack)-(size)*(sizeof(type)/sizeof(char))))
/external/libopus/celt/
H A Dstack_alloc.h55 * @def ALIGN(stack, size)
134 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) macro
135 #define PUSH(stack, size, type) (VALGRIND_MAKE_MEM_NOACCESS(stack, global_stack_top-stack),ALIGN((stack),sizeof(type)/sizeof(char)),VALGRIND_MAKE_MEM_UNDEFINED(stack, ((size)*sizeof(type)/sizeof(char))),(stack)+=(2*(size)*sizeof(type)/sizeof(char)),(type*)((stack)-(2*(size)*sizeof(type)/sizeof(char))))
141 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) macro
142 #define PUSH(stack, size, type) (ALIGN((stack),sizeof(type)/sizeof(char)),(stack)+=(size)*(sizeof(type)/sizeof(char)),(type*)((stack)-(size)*(sizeof(type)/sizeof(char))))
/external/owasp/sanitizer/src/main/org/owasp/html/examples/
H A DEbayPolicyExample.java96 private static final Pattern ALIGN = Pattern.compile( field in class:EbayPolicyExample
133 .allowAttributes("align").matching(ALIGN).onElements("p")
164 .allowAttributes("align").matching(ALIGN)
183 .allowAttributes("align").matching(ALIGN)
/external/qemu/distrib/libsparse/src/
H A Dsparse_defs.h43 #define ALIGN(x, y) ((y) * DIV_ROUND_UP((x), (y))) 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/iproute2/tc/
H A Dm_xt.c41 #ifndef ALIGN
42 #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/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dextensions.c40 #define ALIGN(value, alignment) (((value) + alignment - 1) & ~(alignment - 1)) macro
731 extra_exts = calloc(ALIGN(strlen(env_const) + 2, 4), sizeof(char));
867 exts = (char *) calloc(ALIGN(length + 1, 4), sizeof(char));
/external/e2fsprogs/lib/ext2fs/
H A Dcrc32c.c38 #define ALIGN(x, a) __ALIGN_KERNEL((x), (a)) macro
39 #define PTR_ALIGN(p, a) ((__typeof__(p))ALIGN((unsigned long)(p), (a)))
/external/mesa3d/src/mesa/main/
H A Dextensions.c40 #define ALIGN(value, alignment) (((value) + alignment - 1) & ~(alignment - 1)) macro
731 extra_exts = calloc(ALIGN(strlen(env_const) + 2, 4), sizeof(char));
867 exts = (char *) calloc(ALIGN(length + 1, 4), sizeof(char));
/external/qemu/distrib/ext4_utils/src/
H A Dext4_utils.h65 #define ALIGN(x, y) ((y) * DIV_ROUND_UP((x), (y))) macro
/external/chromium_org/third_party/boringssl/src/crypto/poly1305/
H A Dpoly1305_vec.c28 #define ALIGN(x) __attribute__((aligned(x))) macro
38 static const uint32_t ALIGN(16) poly1305_x64_sse2_message_mask[4] = {
40 static const uint32_t ALIGN(16) poly1305_x64_sse2_5[4] = {5, 0, 5, 0};
41 static const uint32_t ALIGN(16) poly1305_x64_sse2_1shl128[4] = {(1 << 24), 0,
/external/iptables/libiptc/
H A Dlibip4tc.c110 #define ALIGN XT_ALIGN macro
230 assert(ALIGN(m->u.match_size) == m->u.match_size);
255 assert(e->next_offset == ALIGN(e->next_offset));
256 assert(e->target_offset == ALIGN(e->target_offset));
257 assert(t->target.u.target_size == ALIGN(t->target.u.target_size));
262 == ALIGN(sizeof(STRUCT_STANDARD_TARGET)));
294 == ALIGN(sizeof(struct ipt_error_target)));
448 assert(t->target.u.target_size == ALIGN(sizeof(*t)));
449 assert(e->next_offset == sizeof(*e) + ALIGN(sizeof(*t)));
H A Dlibip6tc.c108 #define ALIGN XT_ALIGN macro
397 t->target.u.target_size, ALIGN(sizeof(*t)));
398 assert(t->target.u.target_size == ALIGN(sizeof(*t)));
399 assert(e->next_offset == sizeof(*e) + ALIGN(sizeof(*t)));
/external/chromium_org/third_party/qcms/src/
H A Dqcmsint.h43 #define ALIGN __declspec(align(16)) macro
45 #define ALIGN __attribute__(( aligned (16) )) macro
54 float ALIGN matrix[3][4];
/external/opencv/cv/include/
H A Dcv.hpp132 enum { ALIGN=32 }; enumerator in enum:CvBaseImageFilter::__anon28071
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_context.h363 #define ALIGN(value, alignment) (((value) + alignment - 1) & ~(alignment - 1)) macro
374 * \sa ALIGN()
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_context.h363 #define ALIGN(value, alignment) (((value) + alignment - 1) & ~(alignment - 1)) macro
374 * \sa ALIGN()
/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/valgrind/main/VEX/pub/
H A Dlibvex.h504 Int ALIGN; local
505 ALIGN = offsetof(struct align,x) - 1;
506 nbytes = (nbytes + ALIGN) & ~ALIGN;
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 7258 milliseconds

12