Lines Matching full:alignment
80 // We enforce a maximum alignment, to keep fields smaller and generally prevent
82 void NORETURN reportAlignmentTooBig(uptr Alignment, uptr MaxAlignment) { in reportAlignmentTooBig() argument
84 Report.append("invalid allocation alignment: %zu exceeds maximum supported " in reportAlignmentTooBig()
85 "alignment of %zu\n", in reportAlignmentTooBig()
86 Alignment, MaxAlignment); in reportAlignmentTooBig()
155 void NORETURN reportAlignmentNotPowerOfTwo(uptr Alignment) { in reportAlignmentNotPowerOfTwo() argument
158 "invalid allocation alignment: %zu, alignment must be a power of two\n", in reportAlignmentNotPowerOfTwo()
159 Alignment); in reportAlignmentNotPowerOfTwo()
169 void NORETURN reportInvalidPosixMemalignAlignment(uptr Alignment) { in reportInvalidPosixMemalignAlignment() argument
172 "invalid alignment requested in posix_memalign: %zu, alignment must be a " in reportInvalidPosixMemalignAlignment()
174 Alignment, sizeof(void *)); in reportInvalidPosixMemalignAlignment()
184 void NORETURN reportInvalidAlignedAllocAlignment(uptr Alignment, uptr Size) { in reportInvalidAlignedAllocAlignment() argument
186 Report.append("invalid alignment requested in aligned_alloc: %zu, alignment " in reportInvalidAlignedAllocAlignment()
188 "multiple of alignment\n", in reportInvalidAlignedAllocAlignment()
189 Alignment, Size); in reportInvalidAlignedAllocAlignment()