/frameworks/av/services/audioflinger/tests/ |
test-mixer.cpp | 225 (void) posix_memalign(&outputAddr, 32, outputSize); 233 (void) posix_memalign(&auxAddr, 32, auxSize);
|
/bionic/tests/ |
stdlib_test.cpp | 137 TEST(stdlib, posix_memalign) { 140 ASSERT_EQ(0, posix_memalign(&p, 512, 128)); 145 ASSERT_EQ(EINVAL, posix_memalign(&p, 81, 128));
|
malloc_test.cpp | 105 ASSERT_EQ(EINVAL, posix_memalign(&ptr, 17, 1024)); 110 ASSERT_NE(0, posix_memalign(&ptr, 16, SIZE_MAX));
|
/frameworks/av/services/audioflinger/ |
FastMixer.cpp | 191 (void)posix_memalign(&mMixerBuffer, 32, mMixerBufferSize); 196 (void)posix_memalign(&mSinkBuffer, 32, mSinkBufferSize);
|
FastCapture.cpp | 134 (void)posix_memalign(&mReadBuffer, 32, frameCount * Format_frameSize(mFormat));
|
AudioResamplerDyn.cpp | 96 (void)posix_memalign(reinterpret_cast<void**>(&state), 32, stateCount*sizeof(*state)); 221 (void)posix_memalign(reinterpret_cast<void**>(&buf), 32, (c.mL+1)*c.mHalfNumCoefs*sizeof(TC));
|
BufferProviders.cpp | 59 (void)posix_memalign(&mLocalBufferData, 32, mLocalBufferFrameCount * mOutputFrameSize); 377 if (posix_memalign(&newmem, 32, pBuffer->frameCount * mFrameSize) == OK) {
|
/art/runtime/ |
monitor.h | 140 int error = posix_memalign(&result, LockWord::kMonitorIdAlignment, size);
|
/external/compiler-rt/lib/asan/ |
asan_malloc_mac.cc | 141 INTERCEPTOR(int, posix_memalign, void **memptr, size_t alignment, size_t size) {
|
/external/jemalloc/ |
Android.mk | 254 test/integration/posix_memalign.c \
|
/external/jemalloc/include/jemalloc/ |
jemalloc.h | 195 # define posix_memalign je_posix_memalign macro
|
/external/jemalloc/test/src/ |
SFMT.c | 547 * @note \b memalign or \b posix_memalign is available to get aligned 583 * @note \b memalign or \b posix_memalign is available to get aligned 613 if (posix_memalign(&p, sizeof(w128_t), sizeof(sfmt_t)) != 0) { 648 if (posix_memalign(&p, sizeof(w128_t), sizeof(sfmt_t)) != 0) {
|
/external/mesa3d/src/mesa/main/ |
imports.c | 89 int err = posix_memalign(& mem, alignment, bytes);
|
/bionic/libc/bionic/ |
malloc_debug_leak.cpp | 492 return g_malloc_dispatch->posix_memalign(memptr, alignment, size);
|
malloc_debug_check.cpp | 568 return g_malloc_dispatch->posix_memalign(memptr, alignment, size);
|
/external/valgrind/drd/tests/ |
tsan_thread_wrappers_pthread.h | 607 int posix_memalign(void **out, size_t al, size_t size) { function
|
/external/compiler-rt/lib/asan/tests/ |
asan_test.cc | 78 int pm_res = posix_memalign((void**)&pm, kPageSize, kPageSize); 387 int pm_res = posix_memalign(&ptr, 1<<20, 0); [all...] |
/external/valgrind/coregrind/m_replacemalloc/ |
vg_replace_malloc.c | 91 10160 POSIX_MEMALIGN 887 /*---------------------- posix_memalign ----------------------*/ 889 #define POSIX_MEMALIGN(soname, fnname) \ [all...] |
/external/valgrind/massif/tests/ |
peak2.stderr.exp | 12 Massif: posix_memalign
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
stdlib.h | 507 extern int posix_memalign (void **__memptr, size_t __alignment, size_t __size) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
stdlib.h | 508 extern int posix_memalign (void **__memptr, size_t __alignment, size_t __size) [all...] |
/external/compiler-rt/lib/msan/ |
msan_interceptors.cc | 165 INTERCEPTOR(int, posix_memalign, void **memptr, SIZE_T alignment, SIZE_T size) { [all...] |
/system/core/libbacktrace/ |
backtrace_test.cpp | 920 if (posix_memalign(reinterpret_cast<void**>(&memory), pagesize, 2 * pagesize) != 0) { 1017 if (posix_memalign(reinterpret_cast<void**>(&memory), pagesize, 2 * pagesize) != 0) { [all...] |
/external/blktrace/btreplay/ |
btreplay.c | 327 if (posix_memalign(&buf, pgsize, nbytes)) { 328 fatal("posix_memalign", ERR_SYSCALL, "Allocation failed\n"); [all...] |
/external/e2fsprogs/misc/ |
badblocks.c | 124 if (posix_memalign(&ret, sys_page_size, size) < 0) [all...] |