Searched refs:aligned_address (Results 1 – 4 of 4) sorted by relevance
40 void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address) in FLAC__memory_alloc_aligned() argument44 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()
43 const uintptr_t aligned_address = reinterpret_cast<uintptr_t> (scoped.get()); in TEST() local44 const uintptr_t misaligned_address = aligned_address - left_misalignment; in TEST()
241 lldb::addr_t aligned_address = LLDB_INVALID_ADDRESS; in Malloc() local314 aligned_address = (allocation_address + mask) & (~mask); in Malloc()316 m_allocations[aligned_address] = Allocation(allocation_address, in Malloc()317 aligned_address, in Malloc()348 aligned_address); in Malloc()351 return aligned_address; in Malloc()
47 void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address);