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

1 23 4 5 6 7 8

  /external/jemalloc/include/jemalloc/
jemalloc_mangle.h 16 # define posix_memalign je_posix_memalign macro
jemalloc_mangle_jet.h 16 # define posix_memalign jet_posix_memalign macro
  /external/libchrome/base/allocator/
allocator_shim_override_libc_symbols.h 51 SHIM_ALWAYS_EXPORT int posix_memalign(void** r, size_t a, size_t s) __THROW {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getstack/
1-1.c 56 if (posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE),
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getstacksize/
1-1.c 55 if (posix_memalign(&saddr, sysconf(_SC_PAGE_SIZE), stack_size) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstack/
1-1.c 66 if (posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE),
6-1.c 62 if (posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE),
7-1.c 63 if (posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE),
2-1.c 89 * be according to POSIX), posix_memalign will fail with EINVAL.
93 if ((rc = posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE),
95 printf(ERROR_PREFIX "posix_memalign: %s\n", strerror(rc));
4-1.c 78 if (posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE),
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstacksize/
1-1.c 56 rc = posix_memalign(&saddr, sysconf(_SC_PAGE_SIZE), stack_size);
2-1.c 81 * be according to POSIX), posix_memalign will fail with EINVAL.
85 if ((rc = posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE),
87 printf(ERROR_PREFIX "posix_memalign: %s", strerror(rc));
  /external/syslinux/com32/lib/sys/module/
elfutils.c 82 return posix_memalign(memptr, alignment, size);
  /external/tensorflow/tensorflow/compiler/aot/
runtime.cc 38 // posix_memalign requires that the requested alignment be at least
43 if (posix_memalign(&ptr, minimum_alignment, size) != 0)
  /external/v8/src/
allocation.cc 61 // posix_memalign is not exposed in some Android versions, so we fall back to
65 if (posix_memalign(&ptr, alignment, size)) ptr = NULL;
  /external/valgrind/memcheck/tests/amd64/
insn-pcmpistri.c 3 #define _XOPEN_SOURCE 600 /* for posix_memalign() */
44 posix_memalign(&space, 16, roundup);
  /external/valgrind/tests/
power_insn_available.c 49 err = posix_memalign ((void **)&test_block, MAX_DCBZL_SZB, 4 * MAX_DCBZL_SZB);
51 fprintf(stderr, "posix_memalign() failed (err = %d [%s])\n", err, strerror(err));
  /external/libchrome/base/process/
memory_linux.cc 123 // posix_memalign has a unique signature and doesn't have a __libc_ variant.
124 int posix_memalign(void** ptr, size_t alignment, size_t size)
127 int posix_memalign(void** ptr, size_t alignment, size_t size) { function
  /external/ltp/testcases/kernel/io/aio/aio02/
aio_tio.c 115 if (posix_memalign(&bufptr, alignment, AIO_BLKSIZE)) {
116 perror(" posix_memalign failed ");
129 if (posix_memalign(&bufptr, alignment, AIO_BLKSIZE)) {
130 perror(" posix_memalign failed ");
  /external/tensorflow/tensorflow/contrib/hvx/hexagon_controller/src_soc_interface/
soc_interface.c 162 posix_memalign((void**)&s_node_inputs_array, 128,
164 posix_memalign((void**)&s_node_outputs_array, 128,
  /bionic/tests/
buffer_tests.cpp 356 ASSERT_TRUE(posix_memalign(reinterpret_cast<void**>(&memory), pagesize,
377 ASSERT_TRUE(posix_memalign(reinterpret_cast<void**>(&memory), pagesize,
407 ASSERT_TRUE(posix_memalign(reinterpret_cast<void**>(&memory1), pagesize,
415 ASSERT_TRUE(posix_memalign(reinterpret_cast<void**>(&memory2), pagesize,
  /external/dng_sdk/source/
dng_memory.cpp 176 int err = ::posix_memalign( (void **) &fMalloc, 16, (size_t) PhysicalSize() );
  /external/fec/
viterbi29_sse2.c 65 if(posix_memalign(&p, sizeof(__m128i),sizeof(struct v29)))
  /external/ltp/testcases/kernel/io/ltp-aiodio/
dio_append.c 92 TEST(posix_memalign(&bufptr, 4096, 64 * 1024));
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 129 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) {
131 // Printf("posix_memalign: %zx %zu\n", alignment, size);
169 int (*posix_memalign)(void **memptr, uptr alignment, uptr size); member in struct:MallocDebugL
182 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),

Completed in 884 milliseconds

1 23 4 5 6 7 8