Home
last modified time | relevance | path

Searched refs:posix_memalign (Results 1 – 21 of 21) sorted by relevance

/external/chromium/sdch/open-vcdiff/testdata/
Dconfigure.ac.v0.138 AC_CHECK_FUNCS([memalign posix_memalign])
Dconfigure.ac.v0.240 AC_CHECK_FUNCS([memalign posix_memalign])
/external/chromium/sdch/open-vcdiff/
Dconfigure.ac50 AC_CHECK_FUNCS([memalign posix_memalign])
Dconfigure21082 for ac_func in memalign posix_memalign
/external/chromium/base/
Dprocess_util_linux.cc584 int posix_memalign(void** ptr, size_t alignment, size_t size)
587 int posix_memalign(void** ptr, size_t alignment, size_t size) { in posix_memalign() function
Dprocess_util_unittest.cc485 ASSERT_DEATH(EXPECT_EQ(ENOMEM, posix_memalign(&value_, 8, test_size_)), ""); in TEST_F()
/external/qemu/
Dosdep.c195 ret = posix_memalign(&ptr, alignment, size);
/external/chromium/sdch/open-vcdiff/src/
Dconfig.h.in33 /* Define to 1 if you have the `posix_memalign' function. */
Dvcencoder_test.cc558 posix_memalign(&two_pages, page_size, 2 * page_size); in TEST_F()
590 posix_memalign(&two_pages, page_size, 2 * page_size); in TEST_F()
Dvcdecoder3_test.cc482 posix_memalign(&two_pages, page_size, 2 * page_size); in TEST_F()
515 posix_memalign(&two_pages, page_size, 2 * page_size); in TEST_F()
/external/bluetooth/glib/
DChangeLog.pre-2-10183 posix_memalign() in case we actually are going to use it, because
187 testing for posix_memalign() funcitonality, since this may break the
252 * configure.in: free the memory allocated in posix_memalign() tests.
281 * glib/gslice.c: only use posix_memalign() if it's known to work,
284 * configure.in: check for broken posix_memalign() implementations
403 that we have posix_memalign(). (#323937, Bogdan Nicula)
828 * configure.in: check for availability of posix_memalign(3), memalign(3)
Dconfig.h.win32.in339 /* Define to 1 if you have the `posix_memalign' function. */
652 /* define if posix_memalign() can allocate any size */
Dconfigure.in563 AC_CHECK_FUNCS(posix_memalign)
1156 dnl *** posix_memalign ***
1158 AC_MSG_CHECKING(for a compliant posix_memalign() implementation)
1164 #include <stdlib.h> /* posix_memalign() should be defined here */
1168 if (posix_memalign (&mem, boundary, size) != 0 || !mem)
1192 …AC_DEFINE(POSIX_MEMALIGN_WITH_COMPLIANT_ALLOCS, 1, [define if posix_memalign() can allocate any si…
/external/e2fsprogs/misc/
Dbadblocks.c105 if (posix_memalign(&ret, sys_page_size, size) < 0) in allocate_buffer()
/external/blktrace/btreplay/
Dbtreplay.c327 if (posix_memalign(&buf, pgsize, nbytes)) { in buf_alloc()
/external/webkit/JavaScriptCore/runtime/
DCollector.cpp240 posix_memalign(&address, BLOCK_SIZE, BLOCK_SIZE); in allocateBlock()
/external/bluetooth/glib/glib/
Dgslice.c1136 err = posix_memalign (&aligned_memory, alignment, memsize); in allocator_memalign()
/external/e2fsprogs/
Dconfigure.in732 …8 fchown mallinfo fdatasync strnlen strptime strdup sysconf pathconf posix_memalign memalign vallo…
Dconfigure14846 …8 fchown mallinfo fdatasync strnlen strptime strdup sysconf pathconf posix_memalign memalign vallo…
/external/webkit/JavaScriptCore/wtf/
DFastMalloc.cpp3996 extern "C" int posix_memalign(void** result_ptr, size_t align, size_t size) in CreateCacheIfNecessary() function
4082 return posix_memalign(r, a, s); in CreateCacheIfNecessary()
/external/webkit/JavaScriptCore/
DChangeLog-2007-10-14708 … - posix_memalign takes a void** as its first parameter. My port makes use of this function call.
17127 (KXMLCore::posix_memalign):