HomeSort by relevance Sort by last modified time
    Searched refs:posix_memalign (Results 76 - 100 of 178) sorted by null

1 2 34 5 6 7 8

  /external/ltp/testcases/kernel/device-drivers/tbio/tbio_user/
tbio.c 148 rc = posix_memalign(&bif.data, 512, 1024);
150 tst_resm(TINFO, "posix_memalign failed");
187 rc = posix_memalign(&bif.data, 512, 1024);
189 tst_resm(TINFO, "posix_memalign failed");
234 rc = posix_memalign(&bif.data, 512, 2048);
236 tst_resm(TINFO, "posix_memalign failed");
  /external/scrypt/lib/crypto/
crypto_scrypt-neon.c 228 if ((errno = posix_memalign(&B0, 64, 128 * r * p)) != 0)
231 if ((errno = posix_memalign(&XY0, 64, 256 * r + 64)) != 0)
235 if ((errno = posix_memalign(&V0, 64, 128 * r * N)) != 0)
crypto_scrypt-sse.c 302 if ((errno = posix_memalign(&B0, 64, 128 * r * p)) != 0)
305 if ((errno = posix_memalign(&XY0, 64, 256 * r + 64)) != 0)
309 if ((errno = posix_memalign(&V0, 64, 128 * r * N)) != 0)
  /bionic/libc/bionic/
malloc_common.cpp 60 Malloc(posix_memalign),
144 extern "C" int posix_memalign(void** memptr, size_t alignment, size_t size) { function
145 auto _posix_memalign = __libc_globals->malloc_dispatch.posix_memalign;
149 return Malloc(posix_memalign)(memptr, alignment, size);
300 if (!InitMallocFunction<MallocPosixMemalign>(impl_handler, &table->posix_memalign, prefix,
301 "posix_memalign")) {
  /external/ltp/testcases/kernel/io/ltp-aiodio/
aiodio_append.c 104 TEST(posix_memalign(&bufptr, 4096, AIO_SIZE));
ltp-diorh.c 131 err = posix_memalign((void **)&iobuf, pagesize, bufsize);
dio_sparse.c 63 TEST(posix_memalign(&bufptr, align, writesize));
  /external/tensorflow/tensorflow/core/platform/posix/
port.cc 82 // posix_memalign requires that the requested alignment be at least
90 int err = posix_memalign(&ptr, minimum_alignment, size);
  /external/valgrind/memcheck/tests/
memalign2.c 2 // These #defines attempt to ensure that posix_memalign() is declared, and
23 // Mac OS X has neither memalign() nor posix_memalign(); do nothing.
82 # define PM(a,b,c) posix_memalign((void**)a, b, c)
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 101 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) {
284 INTERCEPT_FUNCTION(posix_memalign);
  /external/jemalloc/include/jemalloc/
jemalloc_protos.h.in 16 JEMALLOC_EXPORT int JEMALLOC_NOTHROW @je_@posix_memalign(void **memptr,
  /external/valgrind/massif/tests/
deep-B.stderr.exp 12 Massif: posix_memalign
deep-C.stderr.exp 12 Massif: posix_memalign
realloc.stderr.exp 12 Massif: posix_memalign
  /frameworks/av/media/libaudioprocessing/
RecordBufferConverter.cpp 112 (void)posix_memalign(&mBuf, 32, mBufFrames * mBufFrameSize);
226 (void)posix_memalign(&mBuf, 32, mBufFrames * mBufFrameSize);
  /bionic/tests/headers/posix/
stdlib_h.c 110 FUNCTION(posix_memalign, int (*f)(void**, size_t, size_t));
  /build/kati/
strutil_test.cc 167 if (posix_memalign(&buffer, pagesize, pagesize * 2) != 0) {
168 perror("posix_memalign failed");
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
stdlib.h 162 int posix_memalign(void **, size_t, size_t); /* (ADV) */
  /external/compiler-rt/lib/builtins/
emutls.c 18 /* Default is not to use posix_memalign, so systems like Android
48 if (posix_memalign(&base, align, size) != 0)
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 121 int posix_memalign(void **memptr, size_t alignment, size_t size) { function
  /external/dlmalloc/
malloc.h 56 #define dlposix_memalign posix_memalign
186 int posix_memalign(void** pp, size_t alignment, size_t n);
  /external/libcxx/src/
new.cpp 193 while (::posix_memalign(&p, static_cast<size_t>(alignment), size) != 0)
196 // If posix_memalign fails and there is a new_handler,
205 p = nullptr; // posix_memalign doesn't initialize 'p' on failure
  /external/libcxxabi/src/
stdlib_new_delete.cpp 152 while (::posix_memalign(&p, static_cast<size_t>(alignment), size) != 0)
155 // If posix_memalign fails and there is a new_handler,
164 p = nullptr; // posix_memalign doesn't initialize 'p' on failure
  /external/linux-kselftest/tools/testing/selftests/powerpc/mm/
subpage_prot.c 157 FAIL_IF(posix_memalign(&mallocblock, 64 * 1024, mallocsize));
  /external/mesa3d/src/mesa/main/
imports.c 88 int err = posix_memalign(& mem, alignment, bytes);

Completed in 694 milliseconds

1 2 34 5 6 7 8