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

1 2 3 4 56 7 8

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/src/
fallback_malloc.cpp 216 if (::posix_memalign(&dest, alignof(__aligned_type), size) == 0)
  /external/jemalloc/test/src/
SFMT.c 547 * @note \b memalign or \b posix_memalign is available to get aligned
583 * @note \b memalign or \b posix_memalign is available to get aligned
613 if (posix_memalign(&p, sizeof(w128_t), sizeof(sfmt_t)) != 0) {
648 if (posix_memalign(&p, sizeof(w128_t), sizeof(sfmt_t)) != 0) {
  /frameworks/av/media/libaudioprocessing/
AudioResamplerDyn.cpp 100 (void)posix_memalign(
267 int ret = posix_memalign(
BufferProviders.cpp 59 (void)posix_memalign(&mLocalBufferData, 32, mLocalBufferFrameCount * mOutputFrameSize);
448 if (posix_memalign(&newmem, 32, pBuffer->frameCount * mFrameSize) == OK) {
  /art/runtime/
monitor.h 154 int error = posix_memalign(&result, LockWord::kMonitorIdAlignment, size);
  /external/jemalloc/include/jemalloc/
jemalloc.h 335 # define posix_memalign je_posix_memalign macro
  /external/jemalloc/test/unit/
decay.c 74 /* posix_memalign(). */
76 assert_d_eq(posix_memalign(&p, sizeof(size_t), huge0), 0,
77 "Unexpected posix_memalign() failure");
80 "Expected ticker to tick during posix_memalign()");
  /external/ltp/testcases/kernel/io/direct_io/
dma_thread_diotest.c 422 if (posix_memalign((void **)&buffer, PAGE_SIZE, READSIZE + align) != 0)
423 tst_brkm(TBROK, cleanup, "call posix_memalign failed");
  /external/swiftshader/third_party/subzero/crosstest/
test_vector_ops_main.cpp 26 // posix_memalign() and should be freed with free().
55 if (posix_memalign(&Dest, VECTOR_ALIGNMENT, sizeof(TestVectors))) {
  /external/swiftshader/third_party/subzero/runtime/
szrt_asan.c 204 int err = posix_memalign(&rz_left, SHADOW_SCALE,
  /frameworks/native/libs/ui/
FenceTime.cpp 38 if (posix_memalign(&p, alignof(FenceTime), byteCount)) {
  /system/core/storaged/
storaged.cpp 226 if (posix_memalign(reinterpret_cast<void**>(&data),
  /external/ltp/testcases/kernel/io/ltp-aiodio/
aiocp.c 144 if (posix_memalign(&buf, alignment, iosize))
  /external/valgrind/drd/tests/
tsan_thread_wrappers_pthread.h 607 int posix_memalign(void **out, size_t al, size_t size) { function
  /external/compiler-rt/lib/asan/tests/
asan_test.cc 78 int pm_res = posix_memalign((void**)&pm, kPageSize, kPageSize);
392 int pm_res = posix_memalign(&ptr, 1<<20, 0);
    [all...]
  /external/linux-kselftest/tools/testing/selftests/vm/
userfaultfd.c 130 if (posix_memalign(alloc_area, page_size, nr_pages * page_size)) {
1063 if (posix_memalign(&area, page_size, page_size)) {
    [all...]
  /external/valgrind/massif/tests/
peak2.stderr.exp 12 Massif: posix_memalign
  /frameworks/native/vulkan/libvulkan/
driver.cpp 615 // Vulkan requires 'alignment' to be a power of two, but posix_memalign
617 int ret = posix_memalign(&ptr, std::max(alignment, sizeof(void*)), size);
644 if (posix_memalign(&new_ptr, std::max(alignment, sizeof(void*)), size) != 0)
    [all...]
  /prebuilts/ndk/r16/sources/android/support/
Android.mk 121 src/posix_memalign.cpp \
  /external/ImageMagick/MagickCore/
memory.c 264 if (posix_memalign(&memory,alignment,extent) != 0)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdlib.h 508 extern int posix_memalign (void **__memptr, size_t __alignment, size_t __size)
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 777 TSAN_INTERCEPTOR(int, posix_memalign, void **memptr, uptr align, uptr sz) {
778 SCOPED_INTERCEPTOR_RAW(posix_memalign, memptr, align, sz);
    [all...]
  /external/stressapptest/src/
worker.cc     [all...]
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 168 INTERCEPTOR(int, posix_memalign, void **memptr, SIZE_T alignment, SIZE_T size) {
    [all...]
  /frameworks/native/vulkan/nulldrv/
null_driver.cpp 197 // Vulkan requires 'alignment' to be a power of two, but posix_memalign
199 int ret = posix_memalign(&ptr, std::max(alignment, sizeof(void*)), size);
224 if (posix_memalign(&new_ptr, std::max(alignment, sizeof(void*)), size) != 0)
    [all...]

Completed in 1411 milliseconds

1 2 3 4 56 7 8