Home
last modified time | relevance | path

Searched refs:ALIGN_SIZE (Results 1 – 15 of 15) 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 32 /* Most of the SIMD instructions we support require macro
286 sizeofobject = round_up_pow2(sizeofobject, ALIGN_SIZE); in alloc_small()
289 if ((sizeof(small_pool_hdr) + sizeofobject + ALIGN_SIZE - 1) > in alloc_small()
308 min_request = sizeof(small_pool_hdr) + sizeofobject + ALIGN_SIZE - 1; in alloc_small()
339 if ((size_t)data_ptr % ALIGN_SIZE) /* ...and adjust for alignment */ in alloc_small()
340 data_ptr += ALIGN_SIZE - (size_t)data_ptr % ALIGN_SIZE; in alloc_small()
380 sizeofobject = round_up_pow2(sizeofobject, ALIGN_SIZE); in alloc_large()
383 if ((sizeof(large_pool_hdr) + sizeofobject + ALIGN_SIZE - 1) > in alloc_large()
[all …]
/external/xz-java/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.java48 private static final int ALIGN_PRICE_UPDATE_INTERVAL = ALIGN_SIZE;
64 private final int[] alignPrices = new int[ALIGN_SIZE];
513 for (int i = 0; i < ALIGN_SIZE; ++i) in updateAlignPrices()
/external/libaom/libaom/av1/encoder/x86/
Dhash_sse42.c16 #define ALIGN_SIZE 8 macro
17 #define ALIGN_MASK (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.h45 #define ALIGN_SIZE 64 /* Should be enough for most CPUs */ macro
58 __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.c151 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7) & ~7) macro
192 size = ALIGN_SIZE(size); in sljit_malloc_exec()
DsljitProtExecAllocator.c235 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7) & ~7) macro
278 size = ALIGN_SIZE(size); in sljit_malloc_exec()
/external/aac/libSYS/include/
Dmachine_type.h304 #define ALIGN_SIZE(a) \ macro
/external/freetype/src/truetype/
Dttgxvar.c2095 #undef ALIGN_SIZE in TT_Get_MM_Var()
2096 #define ALIGN_SIZE( n ) \ in TT_Get_MM_Var() macro
2099 mmvar_size = ALIGN_SIZE( sizeof ( FT_MM_Var ) ); in TT_Get_MM_Var()
2100 axis_flags_size = ALIGN_SIZE( num_axes * in TT_Get_MM_Var()
2102 axis_size = ALIGN_SIZE( num_axes * in TT_Get_MM_Var()
2104 namedstyle_size = ALIGN_SIZE( num_instances * in TT_Get_MM_Var()
2106 next_coords_size = ALIGN_SIZE( num_instances * in TT_Get_MM_Var()
/external/u-boot/arch/arm/mach-imx/
Dhab.c15 #define ALIGN_SIZE 0x1000 macro
/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];