Searched refs:ALIGN_SIZE (Results 1 - 8 of 8) sorted by relevance

/external/lzma/xz-embedded/
H A Dxz_lzma2.h191 #define ALIGN_SIZE (1 << ALIGN_BITS) macro
192 #define ALIGN_MASK (ALIGN_SIZE - 1)
H A Dxz_dec_lzma2.c202 uint16_t dist_align[ALIGN_SIZE];
/external/aac/libAACenc/src/
H A DaacEnc_ram.h176 #define BUF_SIZE_0 ( ALIGN_SIZE(sizeof(QC_OUT_CHANNEL)*(8)) )
177 #define BUF_SIZE_1 ( ALIGN_SIZE(maxSize(sizeof(PSY_DYNAMIC), \
/external/chromium_org/third_party/libjpeg_turbo/
H A Djmemmgr.c69 * multiples of ALIGN_SIZE.
70 * By default, we define ALIGN_SIZE as sizeof(double). This is necessary on some
73 * you can save a few bytes by making ALIGN_SIZE smaller.
77 * aligned well. Put "#define ALIGN_SIZE 4" in jconfig.h if you have
81 #ifndef ALIGN_SIZE /* so can override from jconfig.h */
83 #define ALIGN_SIZE SIZEOF(double) macro
85 #define ALIGN_SIZE 16 /* Most SIMD implementations require this */ macro
243 * allocate ALIGN_SIZE-1 extra space per pool to have room for alignment
272 * Round up the requested size to a multiple of ALIGN_SIZE in order
277 sizeofobject = round_up_pow2(sizeofobject, ALIGN_SIZE);
[all...]
/external/aac/libSYS/include/
H A Dmachine_type.h256 * ALIGN_SIZE
262 * - ALIGN_SIZE(3) returns 8
263 * - ALIGN_SIZE(8) returns 8
264 * - ALIGN_SIZE(9) returns 16
266 #define ALIGN_SIZE(a) ((a)+ (((INT)ALIGNMENT_DEFAULT - ((INT)(a) & (ALIGNMENT_DEFAULT-1)) ) & (ALIGNMENT_DEFAULT-1))) macro
/external/pcre/dist/sljit/
H A DsljitExecAllocator.c144 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7) & ~7) macro
185 size = ALIGN_SIZE(size);
/external/chromium_org/third_party/libxml/src/
H A Dxmlmemory.c104 #define ALIGN_SIZE 16 macro
106 #define ALIGN_SIZE sizeof(double) macro
109 #define RESERVE_SIZE (((HDR_SIZE + (ALIGN_SIZE-1)) \
110 / ALIGN_SIZE ) * ALIGN_SIZE)
/external/libxml2/
H A Dxmlmemory.c104 #define ALIGN_SIZE 16 macro
106 #define ALIGN_SIZE sizeof(double) macro
109 #define RESERVE_SIZE (((HDR_SIZE + (ALIGN_SIZE-1)) \
110 / ALIGN_SIZE ) * ALIGN_SIZE)

Completed in 1135 milliseconds