HomeSort by relevance Sort by last modified time
    Searched refs:memalign (Results 76 - 100 of 163) sorted by null

1 2 34 5 6 7

  /external/chromium_org/third_party/tcmalloc/vendor/src/
libc_override_redefine.h 74 void* memalign(size_t a, size_t s) __THROW { return tc_memalign(a, s); }
libc_override_osx.h 196 // support either memalign() or posix_memalign(). If you need them
240 // Switch to version 6 on OSX 10.6 to support memalign.
243 tcmalloc_zone.memalign = &mz_memalign;
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/
SDL_ps3yuv.c 136 hwdata->converter_parms = (struct yuv2rgb_parms_t *) memalign(16, sizeof(struct yuv2rgb_parms_t));
137 hwdata->scaler_parms = (struct scale_parms_t *) memalign(16, sizeof(struct scale_parms_t));
165 hwdata->pixels = (Uint8 *) memalign(16, width * height + ((width * height) >> 1));
258 hwdata->scaler_out = (Uint8 *) memalign(16, dst->w * dst->h + ((dst->w * dst->h) >> 1));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
malloc.h 71 extern void *memalign __MALLOC_P ((size_t __alignment, size_t __size))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
malloc.h 71 extern void *memalign __MALLOC_P ((size_t __alignment, size_t __size))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
malloc.h 71 extern void *memalign __MALLOC_P ((size_t __alignment, size_t __size))
  /system/extras/tests/memtest/
bandwidth.h 115 _src = reinterpret_cast<char*>(memalign(64, _size));
120 _dst = reinterpret_cast<char*>(memalign(64, _size));
438 _buffer = reinterpret_cast<char*>(memalign(64, _size));
  /external/valgrind/main/coregrind/m_replacemalloc/
vg_replace_malloc.c 86 10110 MEMALIGN
187 __builtin_delete, calloc, realloc, memalign, and friends.
674 /*---------------------- memalign ----------------------*/
701 #define MEMALIGN(soname, fnname) \
711 MALLOC_TRACE("memalign(al %llu, size %llu)", \
727 MEMALIGN(VG_Z_LIBC_SONAME, memalign);
728 MEMALIGN(SO_SYN_MALLOC, memalign);
731 MEMALIGN(VG_Z_LIBC_SONAME, memalign)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
libc_override_gcc_and_weak.h 86 void* memalign(size_t align, size_t s) __THROW ALIAS(tc_memalign);
libc_override_osx.h 196 // support either memalign() or posix_memalign(). If you need them
240 // Switch to version 6 on OSX 10.6 to support memalign.
243 tcmalloc_zone.memalign = &mz_memalign;
  /external/e2fsprogs/e2fsck/
mtrace.h 71 extern __ptr_t memalign __P ((size_t __alignment, size_t __size));
173 /* List of blocks allocated with `memalign' (or `valloc'). */
  /external/eigen/unsupported/test/mpreal/
dlmalloc.h 50 #define dlmemalign memalign
146 memalign(size_t alignment, size_t n);
153 bother calling memalign with an argument of 8 or less.
155 Overreliance on memalign is a sure way to fragment space.
161 Equivalent to memalign(pagesize, n), where pagesize is the page
500 mspace_memalign behaves as memalign, but operates within
  /external/qemu/
oslib-posix.c 57 ptr = qemu_oom_check(memalign(alignment, size));
  /bionic/tests/
malloc_test.cpp 45 // Memalign test where the alignment is any value.
48 char *ptr = (char*)memalign(alignment, 100);
59 // Memalign and then realloc the pointer a couple of times.
61 char *ptr = (char*)memalign(alignment, 100);
  /external/chromium_org/sdch/open-vcdiff/
configure.ac 46 AC_CHECK_FUNCS([memalign posix_memalign])
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 85 INTERCEPTOR(void*, memalign, uptr alignment, uptr size) {
171 INTERCEPTOR(void *, __libc_memalign, uptr align, uptr s) ALIAS("memalign");
264 INTERCEPT_FUNCTION(memalign);
  /external/open-vcdiff/
configure.ac 46 AC_CHECK_FUNCS([memalign posix_memalign])
  /external/valgrind/main/massif/tests/
deep-B.stderr.exp 11 Massif: memalign
realloc.stderr.exp 11 Massif: memalign
deep-C.stderr.exp 11 Massif: memalign
  /bionic/libc/upstream-dlmalloc/
malloc.h 55 #define dlmemalign memalign
172 memalign(size_t alignment, size_t n);
179 bother calling memalign with an argument of 8 or less.
181 Overreliance on memalign is a sure way to fragment space.
188 argument. Differs from memalign only in that it (1) assigns the
197 Equivalent to memalign(pagesize, n), where pagesize is the page
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 111 void *memalign(size_t alignment, size_t size) { function
139 void *__libc_memalign(size_t alignment, size_t size) ALIAS("memalign");
  /external/libvpx/libvpx/vpx_mem/
vpx_mem.h 108 # define memalign vpx_memalign macro
  /external/valgrind/unittest/
thread_wrappers_pthread.h 63 #include <malloc.h> // memalign
106 #define memalign(A,B) malloc(B) macro
110 *out = memalign(al, size);
  /frameworks/av/media/libstagefright/codecs/aacenc/
Android.mk 36 src/memalign.c

Completed in 695 milliseconds

1 2 34 5 6 7