HomeSort by relevance Sort by last modified time
    Searched refs:memalign (Results 1 - 25 of 217) sorted by null

1 2 3 4 5 6 7 8 9

  /external/u-boot/lib/
linux_compat.c 21 p = memalign(ARCH_DMA_MINALIGN, size);
32 ret = memalign(ARCH_DMA_MINALIGN, sizeof(struct kmem_cache));
40 return memalign(ARCH_DMA_MINALIGN, obj->sz);
  /external/u-boot/arch/nds32/include/asm/
dma-mapping.h 13 *handle = (unsigned long)memalign(ARCH_DMA_MINALIGN, len);
  /external/u-boot/arch/nios2/include/asm/
dma-mapping.h 4 #include <memalign.h>
  /external/compiler-rt/test/scudo/
memalign.cpp 24 p = memalign(alignment, size);
39 p = memalign(alignment - 1, size);
mismatch.cpp 33 int *p = (int *)memalign(0x10, 0x10);
realloc.cpp 4 // RUN: not %run %t memalign 2>&1 | FileCheck %s
10 // As a final test, make sure that a chunk allocated by memalign cannot be
58 if (!strcmp(argv[1], "memalign")) {
59 // A chunk coming from memalign cannot be reallocated.
60 p = memalign(16, size);
  /external/u-boot/arch/arm/include/asm/
dma-mapping.h 16 *handle = (unsigned long)memalign(ARCH_DMA_MINALIGN, len);
  /external/u-boot/arch/x86/include/asm/
dma-mapping.h 16 *handle = (unsigned long)memalign(ARCH_DMA_MINALIGN, len);
  /external/libchrome/base/memory/
aligned_memory.cc 25 // memalign() on Android returns pointers which can safely be used with
29 ptr = memalign(alignment, size);
  /external/speex/libspeexdsp/
kiss_fft.h 28 #define KISS_FFT_MALLOC(nbytes) memalign(16,nbytes)
  /external/pdfium/third_party/libopenjpeg20/
opj_malloc.h 124 extern void* memalign(size_t, size_t);
126 #define opj_aligned_malloc(size) memalign(16, (size))
128 #define opj_aligned_32_malloc(size) memalign(32, (size))
  /external/compiler-rt/test/asan/TestCases/Posix/
large_allocator_unpoisons_on_free.cc 16 return memalign(boundary, size);
  /external/jemalloc/include/jemalloc/internal/
public_namespace.h 21 #define je_memalign JEMALLOC_N(memalign)
  /external/jemalloc_new/include/jemalloc/internal/
public_namespace.h 21 #define je_memalign JEMALLOC_N(memalign)
  /bionic/tests/
bionic_allocator_test.cpp 220 ptr = allocator.memalign(0x100, 0x100);
232 ptr = allocator.memalign(0x100, 0x10);
243 ptr = allocator.memalign(0x100, 0x2000);
249 ptr = allocator.memalign(0x1000, 0x2000);
256 ptr = allocator.memalign(0x2000, 0x4000);
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 88 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) {
158 void *(*memalign)(uptr alignment, uptr bytes); member in struct:MallocDebugK
168 void *(*memalign)(uptr alignment, uptr bytes); member in struct:MallocDebugL
177 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)};
181 WRAP(malloc), WRAP(malloc_usable_size), WRAP(memalign),
  /external/linux-kselftest/tools/testing/selftests/powerpc/copyloops/
validate.c 69 src = memalign(BUFLEN, BUFLEN);
70 dst = memalign(BUFLEN, BUFLEN);
  /bionic/libc/include/
malloc.h 82 * [memalign(3)](http://man7.org/linux/man-pages/man3/memalign.3.html) allocates
90 void* memalign(size_t __alignment, size_t __byte_count) __mallocfunc __BIONIC_ALLOC_SIZE(2) __wur;
218 * is called to implement memalign(). By default this points to the system's
  /bionic/libc/private/
bionic_malloc_dispatch.h 64 MallocMemalign memalign; member in struct:MallocDispatch
  /external/bcc/tests/python/
test_tools_memleak_leaker_app.c 41 if (strcmp(kind, "memalign") == 0) {
42 printf("leaking via memalign, %p\n", memalign(512, amount));
  /external/compiler-rt/lib/scudo/
scudo_interceptors.cpp 47 INTERCEPTOR(void*, memalign, uptr alignment, uptr size) {
  /external/e2fsprogs/lib/ext2fs/
inline.c 59 *p = memalign(align, size);
  /external/gemmlowp/internal/
platform.h 81 return memalign(alignment, size);
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.h 32 # define memalign je_memalign macro
jemalloc_mangle_jet.h 32 # define memalign jet_memalign macro

Completed in 997 milliseconds

1 2 3 4 5 6 7 8 9