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

1 2 3

  /external/qemu/qobject/
qbool.c 34 qb = g_malloc(sizeof(*qb));
qfloat.c 34 qf = g_malloc(sizeof(*qf));
qint.c 33 qi = g_malloc(sizeof(*qi));
qlist.c 34 qlist = g_malloc(sizeof(*qlist));
67 entry = g_malloc(sizeof(*entry));
qstring.c 51 qstring = g_malloc(sizeof(*qstring));
56 qstring->string = g_malloc(qstring->capacity + 1);
  /external/qemu/distrib/mini-glib/src/
glib-mini-win32.c 49 char* result = g_malloc(utf8_len + 1);
glib-mini.c 41 void* g_malloc(size_t size) { function
54 void* ptr = g_malloc(size);
88 char* copy = g_malloc(len + 1);
101 copy = g_malloc(size + 1);
130 char* buffer = g_malloc(capacity);
157 char* result = g_malloc(len + 1);
235 return (GSList*) g_malloc(sizeof(GSList));
  /external/qemu/distrib/mini-glib/include/
glib.h 78 void* g_malloc(size_t size);
83 #define g_new(type, count) ((type*) g_malloc(sizeof(type) * (count)))
  /external/qemu/
os-win32.c 44 char *string = g_malloc(length);
async.c 102 bh = g_malloc(sizeof(*bh));
dma-helpers.c 15 qsg->sg = g_malloc(alloc_hint * sizeof(ScatterGatherEntry));
  /external/qemu/hw/nvram/
fw_cfg.c 209 copy = g_malloc(sizeof(value));
218 copy = g_malloc(sizeof(value));
227 copy = g_malloc(sizeof(value));
  /external/qemu/android/
shaper.c 75 packet = g_malloc(packet_size);
165 NetShaper shaper = g_malloc(sizeof(*shaper));
462 NetDelay delay = g_malloc(sizeof(*delay));
550 session = g_malloc( sizeof(*session) );
  /external/qemu/block/
qcow2-snapshot.c 99 sn->id_str = g_malloc(id_str_size + 1);
105 sn->name = g_malloc(name_size + 1);
279 l1_table = g_malloc(s->l1_size * sizeof(uint64_t));
293 snapshots1 = g_malloc((s->nb_snapshots + 1) * sizeof(QCowSnapshot));
qcow2-refcount.c 64 s->refcount_block_cache = g_malloc(s->cluster_size);
66 s->refcount_table = g_malloc(refcount_table_size2);
778 l2_table = g_malloc(l2_size);
944 l2_table = g_malloc(l2_size);
    [all...]
raw.c 150 b = g_malloc(sizeof(*b));
248 /* It's really 0, but we need to make g_malloc() happy */
  /external/qemu/hw/core/
loader.c 269 ptr = g_malloc(size);
381 p = g_malloc(size);
506 data = g_malloc(hdr->ih_size);
520 data = g_malloc(max_bytes);
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/
vpx_mem.c 56 g_malloc_func g_malloc; member in struct:GLOBAL_FUNC_POINTERS
65 # define VPX_MALLOC_L g_func->g_malloc
649 g_func->g_malloc = g_malloc_l;
vpx_mem_tracker.c 60 static mem_track_malloc_func g_malloc = malloc; variable
67 # define MEM_TRACK_MALLOC g_malloc
709 g_malloc = g_malloc_l;
  /external/libvpx/libvpx/vpx_mem/
vpx_mem.c 55 g_malloc_func g_malloc; member in struct:GLOBAL_FUNC_POINTERS
64 # define VPX_MALLOC_L g_func->g_malloc
625 g_func->g_malloc = g_malloc_l;
vpx_mem_tracker.c 60 static mem_track_malloc_func g_malloc = malloc; variable
67 # define MEM_TRACK_MALLOC g_malloc
709 g_malloc = g_malloc_l;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/
vpx_mem.c 55 g_malloc_func g_malloc; member in struct:GLOBAL_FUNC_POINTERS
64 # define VPX_MALLOC_L g_func->g_malloc
625 g_func->g_malloc = g_malloc_l;
vpx_mem_tracker.c 60 static mem_track_malloc_func g_malloc = malloc; variable
67 # define MEM_TRACK_MALLOC g_malloc
709 g_malloc = g_malloc_l;
  /external/qemu/util/
iov.c 230 buf = g_malloc(size);
263 qiov->iov = g_malloc(alloc_hint * sizeof(struct iovec));
  /external/qemu/hw/mips/
mips_r4k.c 129 params_buf = g_malloc(params_size);

Completed in 818 milliseconds

1 2 3