HomeSort by relevance Sort by last modified time
    Searched refs:posix_memalign (Results 1 - 19 of 19) sorted by null

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/
mm_malloc.h 29 /* We can't depend on <stdlib.h> since the prototype of posix_memalign
32 extern int posix_memalign (void **, size_t, size_t);
34 extern "C" int posix_memalign (void **, size_t, size_t) throw ();
45 if (posix_memalign (&ptr, alignment, size) == 0)
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/
mm_malloc.h 32 /* We can't depend on <stdlib.h> since the prototype of posix_memalign
35 extern int posix_memalign (void **, size_t, size_t);
37 extern "C" int posix_memalign (void **, size_t, size_t) throw ();
48 if (posix_memalign (&ptr, alignment, size) == 0)
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/install-tools/include/
mm_malloc.h 32 /* We can't depend on <stdlib.h> since the prototype of posix_memalign
35 extern int posix_memalign (void **, size_t, size_t);
37 extern "C" int posix_memalign (void **, size_t, size_t) throw ();
48 if (posix_memalign (&ptr, alignment, size) == 0)
  /external/chromium/sdch/open-vcdiff/
configure.ac 50 AC_CHECK_FUNCS([memalign posix_memalign])
configure     [all...]
  /external/chromium/sdch/open-vcdiff/testdata/
configure.ac.v0.1 38 AC_CHECK_FUNCS([memalign posix_memalign])
configure.ac.v0.2 40 AC_CHECK_FUNCS([memalign posix_memalign])
  /external/chromium/base/
process_util_linux.cc 583 // posix_memalign has a unique signature and doesn't have a __libc_ variant.
584 int posix_memalign(void** ptr, size_t alignment, size_t size)
587 int posix_memalign(void** ptr, size_t alignment, size_t size) { function
process_util_unittest.cc 481 TEST_F(OutOfMemoryTest, Posix_memalign) {
482 // Grab the return value of posix_memalign to silence a compiler warning
485 ASSERT_DEATH(EXPECT_EQ(ENOMEM, posix_memalign(&value_, 8, test_size_)), "");
  /external/qemu/
osdep.c 195 ret = posix_memalign(&ptr, alignment, size);
  /external/chromium/sdch/open-vcdiff/src/
vcencoder_test.cc 18 #include <stdlib.h> // free, posix_memalign
41 #define _XOPEN_SOURCE 600 // posix_memalign
558 posix_memalign(&two_pages, page_size, 2 * page_size);
590 posix_memalign(&two_pages, page_size, 2 * page_size);
    [all...]
vcdecoder3_test.cc 18 #include <stdlib.h> // free, posix_memalign
31 #define _XOPEN_SOURCE 600 // posix_memalign
482 posix_memalign(&two_pages, page_size, 2 * page_size);
515 posix_memalign(&two_pages, page_size, 2 * page_size);
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
stdlib.h 507 extern int posix_memalign (void **__memptr, size_t __alignment, size_t __size)
  /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 105 if (posix_memalign(&ret, sys_page_size, size) < 0)
  /external/bluetooth/glib/glib/
gslice.c 28 #define _XOPEN_SOURCE 600 /* posix_memalign() */
30 #include <stdlib.h> /* posix_memalign() */
77 * - the page allocator. on most modern systems, posix_memalign(3) or
    [all...]
  /external/webkit/JavaScriptCore/runtime/
Collector.cpp 238 #elif HAVE(POSIX_MEMALIGN)
240 posix_memalign(&address, BLOCK_SIZE, BLOCK_SIZE);
328 #elif HAVE(POSIX_MEMALIGN)
    [all...]
  /external/webkit/JavaScriptCore/wtf/
FastMalloc.cpp     [all...]
  /external/e2fsprogs/
configure     [all...]

Completed in 482 milliseconds