Home
last modified time | relevance | path

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

/external/flac/libFLAC/
Dmemory.c45 void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address) in FLAC__memory_alloc_aligned() argument
49 FLAC__ASSERT(0 != aligned_address); in FLAC__memory_alloc_aligned()
54 *aligned_address = (void*)(((uintptr_t)x + 31L) & -32L); in FLAC__memory_alloc_aligned()
57 *aligned_address = x; in FLAC__memory_alloc_aligned()
/external/lldb/source/Expression/
DIRMemoryMap.cpp241 lldb::addr_t aligned_address = LLDB_INVALID_ADDRESS; in Malloc() local
314 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()
/external/flac/libFLAC/include/private/
Dmemory.h48 void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address);