Lines Matching refs:alignment
47 static size_t alignment; variable
73 size_t alignment; member
103 void *p = aligned_alloc (alignment, allocation_size); in allocate_1()
104 return (struct allocate_result) {p, alignment}; in allocate_1()
108 void *p = memalign (alignment, allocation_size); in allocate_1()
109 return (struct allocate_result) {p, alignment}; in allocate_1()
114 if (posix_memalign (&p, alignment, allocation_size)) in allocate_1()
121 alignment, allocation_size); in allocate_1()
125 return (struct allocate_result) {p, alignment}; in allocate_1()
159 if ((((uintptr_t) r.pointer) & (r.alignment - 1)) != 0) in allocate()
162 (int) allocation_function, allocation_size, r.alignment); in allocate()
302 if (alignment_sensitive[af] != (alignment != 0)) in run_allocation_functions()
400 alignment = 128; in do_test()