Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:FLAC__uint64

54 		*aligned_address = (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((FLAC__int64)32)));
62 else if(sizeof(void*) == sizeof(FLAC__uint64))
63 *aligned_address = (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((FLAC__int64)32)));
132 FLAC__bool FLAC__memory_alloc_aligned_uint64_array(unsigned elements, FLAC__uint64 **unaligned_pointer, FLAC__uint64 **aligned_pointer)
134 FLAC__uint64 *pu; /* unaligned pointer */
136 FLAC__uint64 *pa; /* aligned pointer */
148 pu = (FLAC__uint64*)FLAC__memory_alloc_aligned(sizeof(*pu) * elements, &u.pv);