HomeSort by relevance Sort by last modified time
    Searched refs:posix_memalign (Results 101 - 125 of 142) sorted by null

1 2 3 45 6

  /external/fec/
viterbi615_sse2.c 55 if(posix_memalign(&p, sizeof(__m128i),sizeof(struct v615)))
  /external/jemalloc/
Android.mk 296 test/integration/posix_memalign.c \
  /external/valgrind/coregrind/m_replacemalloc/
vg_replace_malloc.c 91 10160 POSIX_MEMALIGN
    [all...]
  /frameworks/av/services/audioflinger/
FastCapture.cpp 137 (void)posix_memalign(&mReadBuffer, 32, bufferSize);
138 memset(mReadBuffer, 0, bufferSize); // if posix_memalign fails, will segv here.
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);
376 if (posix_memalign(&newmem, 32, pBuffer->frameCount * mFrameSize) == OK) {
  /bionic/tests/
malloc_test.cpp 105 ASSERT_EQ(EINVAL, posix_memalign(&ptr, 17, 1024));
110 ASSERT_NE(0, posix_memalign(&ptr, 16, SIZE_MAX));
  /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) {
  /art/runtime/
monitor.h 146 int error = posix_memalign(&result, LockWord::kMonitorIdAlignment, size);
  /external/jemalloc/include/jemalloc/
jemalloc.h 335 # define posix_memalign je_posix_memalign macro
  /external/jemalloc/test/unit/
decay.c 66 /* posix_memalign(). */
68 assert_d_eq(posix_memalign(&p, sizeof(size_t), huge0), 0,
69 "Unexpected posix_memalign() failure");
72 "Expected ticker to tick during posix_memalign()");
  /external/mesa3d/src/mesa/main/
imports.c 89 int err = posix_memalign(& mem, alignment, bytes);
  /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);
390 int pm_res = posix_memalign(&ptr, 1<<20, 0);
    [all...]
  /external/valgrind/massif/tests/
peak2.stderr.exp 12 Massif: posix_memalign
  /frameworks/native/vulkan/libvulkan/
driver.cpp 437 // Vulkan requires 'alignment' to be a power of two, but posix_memalign
439 int ret = posix_memalign(&ptr, std::max(alignment, sizeof(void*)), size);
466 if (posix_memalign(&new_ptr, std::max(alignment, sizeof(void*)), size) != 0)
  /bionic/libc/malloc_debug/
malloc_debug.cpp 589 return g_dispatch->posix_memalign(memptr, alignment, size);
  /external/ImageMagick/MagickCore/
memory.c 264 if (posix_memalign(&memory,alignment,extent) != 0)
    [all...]
  /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...]
  /frameworks/native/vulkan/nulldrv/
null_driver.cpp 195 // Vulkan requires 'alignment' to be a power of two, but posix_memalign
197 int ret = posix_memalign(&ptr, std::max(alignment, sizeof(void*)), size);
222 if (posix_memalign(&new_ptr, std::max(alignment, sizeof(void*)), size) != 0)
    [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 954 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...]

Completed in 3496 milliseconds

1 2 3 45 6