Searched refs:align2 (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10.1/ksh-23/ksh/src/lib/libast/features/
H A Dalign.c70 int align2; local
107 align2 = roundof(align0, 4);
108 for (bits2 = bits1; i < align2; i++)
118 if (bits2 == (align2 - 1))
123 if (align0 == align2)
143 if (align1 == align2)
179 printf("#define ALIGN_BOUND2 %d\n", align2);
180 printf("#define ALIGN_ALIGN2(x) ALIGN_TRUNC2((x)+%d)\n", align2 - 1);
/macosx-10.10.1/libauto-186/
H A DLarge.cpp66 usword_t allocation_size = align2(size, allocate_quantum_small_log2);
72 usword_t slop_size = align2(header_size + allocation_size, page_size_log2) - (header_size + allocation_size);
77 usword_t wb_size = (layout & AUTO_UNSCANNED) ? 0 : align2(WriteBarrier::bytes_needed(allocation_size), allocate_quantum_small_log2);
80 usword_t vm_size = align2(header_size + allocation_size + guard_size + wb_size, page_size_log2);
H A DRegion.h71 return align2(sizeof(Region), page_size_log2);
H A DLarge.h111 static inline usword_t side_data_size() { return align2(sizeof(Large), allocate_quantum_small_log2); }
H A DDefinitions.h305 // align2
309 static inline const usword_t align2(usword_t x, usword_t y) { usword_t m = mask(y); return (x + m) & ~m; } function in namespace:Auto
523 usword_t needed = align2(size, page_size_log2);
547 usword_t needed = align2(size, page_size_log2);
H A DZone.h522 if (size <= allocate_quantum_large) return align2(size, allocate_quantum_medium_log2);
523 return align2(size, allocate_quantum_small_log2);
H A DSubzone.h171 return align2(sizeof(Subzone) - sizeof(unsigned char) + subzone_side_data_max(quantum_log2), quantum_log2);
H A DZone.cpp295 size = align2(size, allocate_quantum_large_log2);
336 size = align2(size, allocate_quantum_large_log2);

Completed in 182 milliseconds