Home
last modified time | relevance | path

Searched refs:aligned_address (Results 1 – 2 of 2) sorted by relevance

/external/flac/libFLAC/
Dmemory.c40 void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address) in FLAC__memory_alloc_aligned() argument
44 FLAC__ASSERT(0 != aligned_address); in FLAC__memory_alloc_aligned()
52 *aligned_address = (void*)(((unsigned)x + 31) & -32); in FLAC__memory_alloc_aligned()
54 *aligned_address = (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((FLAC__int64)32))); in FLAC__memory_alloc_aligned()
61 *aligned_address = (void*)(((unsigned)x + 31) & -32); in FLAC__memory_alloc_aligned()
63 *aligned_address = (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((FLAC__int64)32))); in FLAC__memory_alloc_aligned()
69 *aligned_address = x; in FLAC__memory_alloc_aligned()
/external/flac/libFLAC/include/private/
Dmemory.h47 void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address);