Lines Matching refs:ALIGN_SIZE
88 #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()
393 ALIGN_SIZE - 1); in alloc_large()
397 ALIGN_SIZE - 1; in alloc_large()
410 if ((size_t)data_ptr % ALIGN_SIZE) /* ...and adjust for alignment */ in alloc_large()
411 data_ptr += ALIGN_SIZE - (size_t)data_ptr % ALIGN_SIZE; in alloc_large()
445 if ((ALIGN_SIZE % sizeof(JSAMPLE)) != 0) in alloc_sarray()
453 samplesperrow = (JDIMENSION)round_up_pow2(samplesperrow, (2 * ALIGN_SIZE) / in alloc_sarray()
505 if ((sizeof(JBLOCK) % ALIGN_SIZE) != 0) in alloc_barray()
1104 if ((ALIGN_SIZE & (ALIGN_SIZE - 1)) != 0) in jinit_memory_mgr()
1113 (MAX_ALLOC_CHUNK % ALIGN_SIZE) != 0) in jinit_memory_mgr()