Home
last modified time | relevance | path

Searched refs:ALIGN_SIZE (Results 1 – 14 of 14) sorted by relevance

/external/libjpeg-turbo/
Djmemmgr.c88 #ifndef ALIGN_SIZE /* so can override from jconfig.h */
90 #define ALIGN_SIZE sizeof(double) macro
92 #define ALIGN_SIZE 16 /* Most SIMD implementations require this */ macro
288 sizeofobject = round_up_pow2(sizeofobject, ALIGN_SIZE); in alloc_small()
291 if ((sizeof(small_pool_hdr) + sizeofobject + ALIGN_SIZE - 1) > in alloc_small()
310 min_request = sizeof(small_pool_hdr) + sizeofobject + ALIGN_SIZE - 1; in alloc_small()
341 if ((size_t)data_ptr % ALIGN_SIZE) /* ...and adjust for alignment */ in alloc_small()
342 data_ptr += ALIGN_SIZE - (size_t)data_ptr % ALIGN_SIZE; in alloc_small()
382 sizeofobject = round_up_pow2(sizeofobject, ALIGN_SIZE); in alloc_large()
385 if ((sizeof(large_pool_hdr) + sizeofobject + ALIGN_SIZE - 1) > in alloc_large()
[all …]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
DLZMACoder.java30 static final int ALIGN_SIZE = 1 << ALIGN_BITS; field in LZMACoder
31 static final int ALIGN_MASK = ALIGN_SIZE - 1;
52 final short[] distAlign = new short[ALIGN_SIZE];
DLZMAEncoder.java46 private static final int ALIGN_PRICE_UPDATE_INTERVAL = ALIGN_SIZE;
62 private final int[] alignPrices = new int[ALIGN_SIZE];
474 for (int i = 0; i < ALIGN_SIZE; ++i) in updateAlignPrices()
/external/libmicrohttpd/src/microhttpd/
Dmemorypool.c38 #define ALIGN_SIZE (2 * sizeof(void*)) macro
43 #define ROUND_TO_ALIGN(n) ((n+(ALIGN_SIZE-1)) & (~(ALIGN_SIZE-1)))
/external/xz-embedded/linux/lib/xz/
Dxz_lzma2.h191 #define ALIGN_SIZE (1 << ALIGN_BITS) macro
192 #define ALIGN_MASK (ALIGN_SIZE - 1)
Dxz_dec_lzma2.c202 uint16_t dist_align[ALIGN_SIZE];
/external/kernel-headers/original/uapi/linux/
Dtarget_core_user.h44 #define ALIGN_SIZE 64 /* Should be enough for most CPUs */ macro
56 __u32 cmd_tail __attribute__((__aligned__(ALIGN_SIZE)));
/external/aac/libAACenc/src/
DaacEnc_ram.h201 #define BUF_SIZE_0 (ALIGN_SIZE(sizeof(QC_OUT_CHANNEL) * (8)))
203 (ALIGN_SIZE(maxSize(maxSize(sizeof(PSY_DYNAMIC), \
/external/libxml2/
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/pcre/dist2/src/sljit/
DsljitExecAllocator.c144 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7) & ~7) macro
185 size = ALIGN_SIZE(size); in sljit_malloc_exec()
/external/aac/libSYS/include/
Dmachine_type.h304 #define ALIGN_SIZE(a) \ macro
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
Ddpath.c20 #define ALIGN_SIZE(a) ((a % MIN_ALIGNMENT_SIZE) ? MIN_ALIGNMENT_SIZE - (a % MIN_ALIGNMENT_SIZE) :… macro
345 Size += ALIGN_SIZE(Size); in UnpackDevicePath()
373 Size += ALIGN_SIZE(Size); in UnpackDevicePath()
/external/freetype/src/truetype/
Dttgxvar.c2069 #undef ALIGN_SIZE in TT_Get_MM_Var()
2070 #define ALIGN_SIZE( n ) \ in TT_Get_MM_Var() macro
2073 mmvar_size = ALIGN_SIZE( sizeof ( FT_MM_Var ) ); in TT_Get_MM_Var()
2074 axis_flags_size = ALIGN_SIZE( num_axes * in TT_Get_MM_Var()
2076 axis_size = ALIGN_SIZE( num_axes * in TT_Get_MM_Var()
2078 namedstyle_size = ALIGN_SIZE( num_instances * in TT_Get_MM_Var()
2080 next_coords_size = ALIGN_SIZE( num_instances * in TT_Get_MM_Var()
/external/toybox/toys/pending/
Dxzcat.c1166 #define ALIGN_SIZE (1 << ALIGN_BITS) macro
1167 #define ALIGN_MASK (ALIGN_SIZE - 1)
1358 uint16_t dist_align[ALIGN_SIZE];