Searched refs:ALIGN_SIZE (Results 1 – 8 of 8) sorted by relevance
81 #ifndef ALIGN_SIZE /* so can override from jconfig.h */83 #define ALIGN_SIZE SIZEOF(double) macro85 #define ALIGN_SIZE 16 /* Most SIMD implementations require this */ macro277 sizeofobject = round_up_pow2(sizeofobject, ALIGN_SIZE); in alloc_small()280 if ((SIZEOF(small_pool_hdr) + sizeofobject + ALIGN_SIZE - 1) > MAX_ALLOC_CHUNK) in alloc_small()298 min_request = SIZEOF(small_pool_hdr) + sizeofobject + ALIGN_SIZE - 1; in alloc_small()329 if ((size_t)data_ptr % ALIGN_SIZE) /* ...and adjust for alignment */ in alloc_small()330 data_ptr += ALIGN_SIZE - (size_t)data_ptr % ALIGN_SIZE; in alloc_small()366 sizeofobject = round_up_pow2(sizeofobject, ALIGN_SIZE); in alloc_large()369 if ((SIZEOF(large_pool_hdr) + sizeofobject + ALIGN_SIZE - 1) > MAX_ALLOC_CHUNK) in alloc_large()[all …]
191 #define ALIGN_SIZE (1 << ALIGN_BITS) macro192 #define ALIGN_MASK (ALIGN_SIZE - 1)
202 uint16_t dist_align[ALIGN_SIZE];
176 #define BUF_SIZE_0 ( ALIGN_SIZE(sizeof(QC_OUT_CHANNEL)*(8)) )177 #define BUF_SIZE_1 ( ALIGN_SIZE(maxSize(sizeof(PSY_DYNAMIC), \
104 #define ALIGN_SIZE 16 macro106 #define ALIGN_SIZE sizeof(double) macro109 #define RESERVE_SIZE (((HDR_SIZE + (ALIGN_SIZE-1)) \110 / ALIGN_SIZE ) * ALIGN_SIZE)
144 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7) & ~7) macro185 size = ALIGN_SIZE(size); in sljit_malloc_exec()
266 #define ALIGN_SIZE(a) ((a)+ (((INT)ALIGNMENT_DEFAULT - ((INT)(a) & (ALIGNMENT_DEFAULT-1)) ) & (ALIG… macro