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

1 2

  /external/ltp/utils/benchmark/ebizzy-0.3/
ebizzy.h 22 #define mallopt(arg1, arg2) do { } while (0); macro
ebizzy.c 220 mallopt(M_MMAP_MAX, 0);
  /external/swiftshader/third_party/subzero/src/
main.cpp 38 mallopt(M_GRANULARITY, 16 * 1024 * 1024);
  /external/ltp/testcases/kernel/syscalls/mallopt/
mallopt01.c 25 * mallopt
28 * malloc(3x), mallopt(3x), mallinfo(3x).
97 * Test mallopt's M_MXFAST and M_NLBLKS cmds.
100 if (mallopt(M_MXFAST, MAX_FAST_SIZE) == 0)
101 tst_resm(TFAIL, "mallopt(M_MXFAST, %d) failed", (int)MAX_FAST_SIZE);
103 tst_resm(TPASS, "mallopt(M_MXFAST, %d) succeeded", (int)MAX_FAST_SIZE);
105 if (mallopt(M_NLBLKS, 50) == 0)
106 tst_resm(TFAIL, "mallopt(M_NLBLKS, 50) failed");
108 tst_resm(TPASS, "mallopt(M_NLBLKS, 50) succeeded");
117 if (mallopt(M_MXFAST, 0) == 0
    [all...]
  /bionic/libc/private/
bionic_malloc_dispatch.h 73 MallocMallopt mallopt; member in struct:MallocDispatch
  /bionic/libc/include/
malloc.h 80 /* mallopt options */
83 int mallopt(int, int) __INTRODUCED_IN(26);
  /external/compiler-rt/lib/scudo/
scudo_interceptors.cpp 71 INTERCEPTOR(int, mallopt, int cmd, int value) {
  /external/ltp/testcases/kernel/syscalls/
Makefile 40 linkat kill mallopt memmap mq_notify mq_open mq_timedreceive \
  /bionic/libc/bionic/
malloc_common.cpp 71 Malloc(mallopt),
105 extern "C" int mallopt(int param, int value) { function
106 auto _mallopt = __libc_globals->malloc_dispatch.mallopt;
110 return Malloc(mallopt)(param, value);
259 if (!InitMallocFunction<MallocMallopt>(malloc_impl_handler, &table->mallopt,
260 prefix, "mallopt")) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
malloc.h 110 /* SVID2/XPG mallopt options */
124 /* mallopt options that actually do something */
135 extern int mallopt __MALLOC_P ((int __param, int __val));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
malloc.h 119 /* SVID2/XPG mallopt options */
133 /* mallopt options that actually do something */
144 extern int mallopt (int __param, int __val) __THROW;
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 140 INTERCEPTOR(int, mallopt, int cmd, int value) {
290 INTERCEPT_FUNCTION(mallopt);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 149 void mallopt() { function
  /external/dlmalloc/
malloc.h 61 #define dlmallopt mallopt
203 mallopt(int parameter_number, int parameter_value)
205 (parameter-number, parameter-value) pair. mallopt then sets the
208 0. SVID/XPG/ANSI defines four standard param numbers for mallopt,
211 options in mallopt:
540 setting with mallopt(M_GRANULARITY, value).
585 An alias for mallopt.
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 125 INTERCEPTOR(int, mallopt, int cmd, int value) {
  /external/valgrind/coregrind/m_replacemalloc/
vg_replace_malloc.c 89 10140 MALLOPT
    [all...]
  /bionic/libc/malloc_debug/
malloc_debug.cpp 644 return g_dispatch->mallopt(param, value);
  /bionic/tests/
malloc_test.cpp 496 ASSERT_EQ(0, mallopt(-1000, 1));
497 // mallopt doesn't set errno.
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 46 #define mallopt(a, b) macro
102 extern "C" int mallopt(int param, int value);
    [all...]
  /frameworks/base/core/jni/
com_android_internal_os_Zygote.cpp 233 mallopt(M_DECAY_TIME, 1);
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 269 INTERCEPTOR(int, mallopt, int cmd, int value) {
272 #define MSAN_MAYBE_INTERCEPT_MALLOPT INTERCEPT_FUNCTION(mallopt)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
sysmodule.c 681 mallopt(M_DEBUG, flag);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
sysmodule.c 677 mallopt(M_DEBUG, flag);
    [all...]
  /external/python/cpython2/Python/
sysmodule.c 681 mallopt(M_DEBUG, flag);
    [all...]
  /bionic/libc/malloc_debug/tests/
malloc_debug_unit_tests.cpp 132 mallopt,
    [all...]

Completed in 2892 milliseconds

1 2