Home
last modified time | relevance | path

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

1234

/third_party/musl/ndk-test/sanitize/scudo/src/
Dmemalign.c32 posix_memalign(&p, alignment, size); in main()
76 err = posix_memalign(&p, 3, size); in main()
80 err = posix_memalign(&p, 2, size); in main()
86 posix_memalign(&p, 0x100, sizeof(int)); in main()
/third_party/musl/libc-test/src/functionalext/supplement/malloc/
Dposix_memalign.c34 int rev = posix_memalign(&memory, TEST_MEMALIGN_ALIGN, block[i]); in posix_memalign_0100()
51 int rev = posix_memalign(&memory, 1, 1); in posix_memalign_0200()
Dtest_src_functionalext_supplement_malloc.gni16 "posix_memalign",
/third_party/ltp/testcases/kernel/device-drivers/tbio/tbio_user/
Dtbio.c148 rc = posix_memalign(&bif.data, 512, 1024); in tbio_to_dev()
187 rc = posix_memalign(&bif.data, 512, 1024); in tbio_from_dev()
234 rc = posix_memalign(&bif.data, 512, 2048); in tbio_split_to_dev()
/third_party/ffmpeg/libavutil/
Dmem.c50 #define posix_memalign AV_JOIN(MALLOC_PREFIX, posix_memalign) macro
56 int posix_memalign(void **ptr, size_t align, size_t size);
86 if (posix_memalign(&ptr, ALIGN, size)) in av_malloc()
/third_party/ltp/testcases/kernel/io/aio/
Daio02.c131 if (posix_memalign(&bufptr, alignment, AIO_BLKSIZE)) { in io_tio()
145 if (posix_memalign(&bufptr, alignment, AIO_BLKSIZE)) { in io_tio()
Daio01.c384 posix_memalign((void **)&srcbuf, bufsize, bufsize)) != 0) in setup()
389 posix_memalign((void **)&dstbuf, bufsize, bufsize)) != 0) in setup()
/third_party/musl/src/malloc/
Dposix_memalign.c4 int posix_memalign(void **res, size_t align, size_t len) in posix_memalign() function
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb.hh217 #define posix_memalign hb_memalign_impl macro
553 #if !defined(posix_memalign) && !defined(HAVE_POSIX_MEMALIGN)
554 #define posix_memalign _hb_memalign macro
/third_party/musl/
Ddynamic.list14 posix_memalign;
/third_party/flutter/skia/third_party/externals/angle2/src/common/
Daligned_memory.cpp39 if (posix_memalign(&ptr, alignment, size)) in AlignedAlloc()
/third_party/skia/third_party/externals/angle2/src/common/
Daligned_memory.cpp39 if (posix_memalign(&ptr, alignment, size)) in AlignedAlloc()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstacksize/
D4-1.c47 if (posix_memalign(&saddr, sysconf(_SC_PAGE_SIZE), stack_size) != 0) { in main()
D1-1.c56 rc = posix_memalign(&saddr, sysconf(_SC_PAGE_SIZE), stack_size); in main()
D2-1.c85 if ((rc = posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE), in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstack/
D6-1.c56 if (posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE), in main()
D7-1.c57 if (posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE), in main()
D1-1.c66 if (posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE), in main()
D4-1.c78 if (posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE), in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getstacksize/
D1-1.c55 if (posix_memalign(&saddr, sysconf(_SC_PAGE_SIZE), stack_size) != 0) { in main()
/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dpthread_attr_setstack.c48 ret = posix_memalign(&stackAddr, pageSize, THREAD_STACK_LEN); in pthread_attr_setstack_0100()
Dpthread_create.c94 ret = posix_memalign(&stackAddr, pageSize, PTHREADSTACK); in pthread_create_0400()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getstack/
D1-1.c56 if (posix_memalign(&stack_addr, sysconf(_SC_PAGE_SIZE), in main()
/third_party/mesa3d/src/util/
Dos_memory_aligned.h58 if(posix_memalign(&ptr, alignment, size) != 0) in os_malloc_aligned()
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_memory.cpp176 int err = ::posix_memalign( (void **) &fMalloc, 16, (size_t) PhysicalSize() ); in dng_malloc_block()

1234