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

1 2

  /external/jemalloc/test/integration/
xallocx.c 8 p = mallocx(42, 0);
9 assert_ptr_not_null(p, "Unexpected mallocx() error");
24 p = mallocx(42, 0);
25 assert_ptr_not_null(p, "Unexpected mallocx() error");
40 p = mallocx(42, 0);
41 assert_ptr_not_null(p, "Unexpected mallocx() error");
mallocx.c 15 p = mallocx(sz, 0);
16 assert_ptr_not_null(p, "Unexpected mallocx() error");
22 p = mallocx(sz, 0);
23 assert_ptr_not_null(p, "Unexpected mallocx() error");
28 p = mallocx(sz, MALLOCX_ZERO);
29 assert_ptr_not_null(p, "Unexpected mallocx() error");
58 ps[i] = mallocx(sz, MALLOCX_ALIGN(alignment) |
61 "mallocx() error for alignment=%zu, "
MALLOCX_ARENA.c 41 p = mallocx(1, MALLOCX_ARENA(arena_ind));
42 assert_ptr_not_null(p, "Unexpected mallocx() error");
rallocx.c 13 p = mallocx(1, 0);
14 assert_ptr_not_null(p, "Unexpected mallocx() error");
77 p = mallocx(start_size, MALLOCX_ZERO);
78 assert_ptr_not_null(p, "Unexpected mallocx() error");
119 p = mallocx(1, MALLOCX_ALIGN(align));
120 assert_ptr_not_null(p, "Unexpected mallocx() error");
145 p = mallocx(1, MALLOCX_LG_ALIGN(lg_align)|MALLOCX_ZERO);
146 assert_ptr_not_null(p, "Unexpected mallocx() error");
chunk.c 41 p = mallocx(42, 0);
  /external/jemalloc/test/unit/
prof_gdump.c 36 p = mallocx(chunksize, 0);
37 assert_ptr_not_null(p, "Unexpected mallocx() failure");
41 q = mallocx(chunksize, 0);
42 assert_ptr_not_null(q, "Unexpected mallocx() failure");
quarantine.c 17 p = mallocx(QUARANTINE_SIZE*2, 0);
18 assert_ptr_not_null(p, "Unexpected mallocx() failure");
44 void *p = mallocx(SZ, 0);
45 assert_ptr_not_null(p, "Unexpected mallocx() failure");
81 s = (char *)mallocx(1, 0);
82 assert_ptr_not_null((void *)s, "Unexpected mallocx() failure");
90 s = (char *)mallocx(1, 0);
91 assert_ptr_not_null((void *)s, "Unexpected mallocx() failure");
prof_accum.h 20 p = mallocx(1, 0); \
33 assert_ptr_not_null(p, "Unexpected mallocx() failure"); \
junk.c 68 s = (char *)mallocx(sz_min, 0);
69 assert_ptr_not_null((void *)s, "Unexpected mallocx() failure");
151 p1 = mallocx(arena_maxclass, 0);
152 assert_ptr_not_null(p1, "Unexpected mallocx() failure");
189 s = (char *)mallocx(1, 0);
190 assert_ptr_not_null((void *)s, "Unexpected mallocx() failure");
198 s = (char *)mallocx(1, 0);
199 assert_ptr_not_null((void *)s, "Unexpected mallocx() failure");
prof_idump.c 38 p = mallocx(1, 0);
39 assert_ptr_not_null(p, "Unexpected mallocx() failure");
zero.c 15 s = (char *)mallocx(sz_min, 0);
16 assert_ptr_not_null((void *)s, "Unexpected mallocx() failure");
stats.c 67 p = mallocx(arena_maxclass+1, 0);
68 assert_ptr_not_null(p, "Unexpected mallocx() failure");
111 little = mallocx(SMALL_MAXCLASS, 0);
112 assert_ptr_not_null(little, "Unexpected mallocx() failure");
113 large = mallocx(arena_maxclass, 0);
114 assert_ptr_not_null(large, "Unexpected mallocx() failure");
175 p = mallocx(SMALL_MAXCLASS, 0);
176 assert_ptr_not_null(p, "Unexpected mallocx() failure");
222 p = mallocx(arena_maxclass, 0);
223 assert_ptr_not_null(p, "Unexpected mallocx() failure")
    [all...]
mq.c 56 p = mallocx(sizeof(mq_msg_t), 0);
57 assert_ptr_not_null(p, "Unexpected mallocx() failure");
ckh.c 114 p[i] = mallocx(i+1, 0);
115 assert_ptr_not_null(p[i], "Unexpected mallocx() failure");
  /external/jemalloc/android/test/
run_integration.sh 10 $test_dir/mallocx
  /external/jemalloc/include/jemalloc/internal/
public_symbols.txt 9 mallocx:je_mallocx
public_namespace.h 9 #define je_mallocx JEMALLOC_N(mallocx)
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.h 20 # define mallocx je_mallocx macro
jemalloc_mangle_jet.h 20 # define mallocx jet_mallocx macro
jemalloc_protos.h.in 20 JEMALLOC_EXPORT void *@je_@mallocx(size_t size, int flags);
jemalloc.h 181 # define mallocx je_mallocx macro
  /external/jemalloc/
Android.mk 227 test/integration/mallocx.c \
Makefile.in 138 $(srcroot)test/integration/mallocx.c \
ChangeLog 60 mallocx()/rallocx() avoid the strict aliasing pitfall that
  /external/jemalloc/doc/
jemalloc.xml.in 36 <refname>mallocx</refname>
96 <funcdef>void *<function>mallocx</function></funcdef>
227 <para>The <function>mallocx<parameter/></function>,
281 <para>The <function>mallocx<parameter/></function> function allocates at
317 <function>mallocx<parameter/></function> function, and returns the real
319 <function>mallocx<parameter/></function> function call. Behavior is
    [all...]

Completed in 320 milliseconds

1 2