Searched refs:ALIGN_SIZE (Results 1 – 9 of 9) sorted by relevance
88 #ifndef ALIGN_SIZE /* so can override from jconfig.h */90 #define ALIGN_SIZE sizeof(double) macro92 #define ALIGN_SIZE 32 /* Most of the SIMD instructions we support require macro286 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 …]
38 #define ALIGN_SIZE (2 * sizeof(void*)) macro43 #define ROUND_TO_ALIGN(n) ((n+(ALIGN_SIZE-1)) & (~(ALIGN_SIZE-1)))
44 if (ALIGN_SIZE(size) > srcBlob->size - *srcOffset - sizeof(uint32_t)) { in CmGetBlobFromBuffer()51 *srcOffset += ALIGN_SIZE(blob->size); in CmGetBlobFromBuffer()
238 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7u) & ~(sljit_uw)7) macro279 size = ALIGN_SIZE(size); in sljit_malloc_exec()
284 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7u) & ~(sljit_uw)7) macro327 size = ALIGN_SIZE(size); in sljit_malloc_exec()
55 #define ALIGN_SIZE(size) ((((uint32_t)(size) + 3) >> 2) << 2) macro
2250 #undef ALIGN_SIZE in TT_Get_MM_Var()2251 #define ALIGN_SIZE( n ) \ in TT_Get_MM_Var() macro2254 mmvar_size = ALIGN_SIZE( sizeof ( FT_MM_Var ) ); in TT_Get_MM_Var()2255 axis_flags_size = ALIGN_SIZE( num_axes * in TT_Get_MM_Var()2257 axis_size = ALIGN_SIZE( num_axes * in TT_Get_MM_Var()2259 namedstyle_size = ALIGN_SIZE( num_instances * in TT_Get_MM_Var()2261 next_coords_size = ALIGN_SIZE( num_instances * in TT_Get_MM_Var()
313 #undef ALIGN_SIZE in T1_Get_MM_Var()314 #define ALIGN_SIZE( n ) \ in T1_Get_MM_Var() macro317 mmvar_size = ALIGN_SIZE( sizeof ( FT_MM_Var ) ); in T1_Get_MM_Var()318 axis_flags_size = ALIGN_SIZE( mmaster.num_axis * in T1_Get_MM_Var()
1166 #define ALIGN_SIZE (1 << ALIGN_BITS) macro1167 #define ALIGN_MASK (ALIGN_SIZE - 1)1358 uint16_t dist_align[ALIGN_SIZE];