Home
last modified time | relevance | path

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

/external/flac/src/libFLAC/
Dmemory.c46 void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address) in FLAC__memory_alloc_aligned() argument
50 FLAC__ASSERT(0 != aligned_address); in FLAC__memory_alloc_aligned()
55 *aligned_address = (void*)(((uintptr_t)x + 31L) & -32L); in FLAC__memory_alloc_aligned()
58 *aligned_address = x; in FLAC__memory_alloc_aligned()
/external/webrtc/rtc_base/memory/
Daligned_malloc_unittest.cc43 const uintptr_t aligned_address = reinterpret_cast<uintptr_t>(scoped.get()); in TEST() local
44 const uintptr_t misaligned_address = aligned_address - left_misalignment; in TEST()
/external/llvm-project/lldb/source/Expression/
DIRMemoryMap.cpp297 lldb::addr_t aligned_address = LLDB_INVALID_ADDRESS; in Malloc() local
389 aligned_address = (allocation_address + mask) & (~mask); in Malloc()
392 std::piecewise_construct, std::forward_as_tuple(aligned_address), in Malloc()
393 std::forward_as_tuple(allocation_address, aligned_address, in Malloc()
399 WriteMemory(aligned_address, zero_buf.data(), size, write_error); in Malloc()
424 (uint64_t)permissions, policy_string, aligned_address); in Malloc()
427 return aligned_address; in Malloc()
/external/flac/src/libFLAC/include/private/
Dmemory.h48 void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address);