HomeSort by relevance Sort by last modified time
    Searched full:mema (Results 1 - 3 of 3) sorted by null

  /external/bluetooth/glib/tests/
slice-color.c 38 access_memory3 (guint **mema,
49 memd[j][o] = mema[j][o] + memb[j][o];
66 guint **mema = g_new (guint*, n); local
68 mema[j] = g_slice_alloc (block_size);
77 fill_memory (mema, n, 2);
80 access_memory3 (mema, memb, memc, n, 3);
82 accu = access_memory3 (mema, memb, memc, n, repeats);
90 g_slice_free1 (block_size, mema[j]);
95 g_free (mema);
  /bionic/libc/bionic/
dlmalloc.h 550 mspace_merge_objects will merge allocated memory mema and memb
551 together, provided memb immediately follows mema. It is roughly as
552 if memb has been freed and mema has been realloced to a larger size.
553 On successfully merging, mema will be returned. If either argument
554 is null or memb does not immediately follow mema, null will be
557 Both mema and memb should have been previously allocated using
558 malloc or a related routine such as realloc. If either mema or memb
562 void* mspace_merge_objects(mspace msp, void* mema, void* memb);
dlmalloc.c     [all...]

Completed in 130 milliseconds