• Home
  • Raw
  • Download

Lines Matching refs:gsize

62 		  gsize    n_bytes)  in standard_realloc()
82 standard_malloc (gsize n_bytes) in standard_malloc()
89 gsize n_bytes) in standard_realloc()
100 standard_calloc (gsize n_blocks, in standard_calloc()
101 gsize n_bytes) in standard_calloc()
123 g_malloc (gsize n_bytes) in g_malloc()
143 g_malloc0 (gsize n_bytes) in g_malloc0()
164 gsize n_bytes) in g_realloc()
194 g_try_malloc (gsize n_bytes) in g_try_malloc()
205 g_try_malloc0 (gsize n_bytes) in g_try_malloc0()
219 gsize n_bytes) in g_try_realloc()
233 fallback_calloc (gsize n_blocks, in fallback_calloc()
234 gsize n_block_bytes) in fallback_calloc()
236 gsize l = n_blocks * n_block_bytes; in fallback_calloc()
304 static gsize profile_allocs = 0;
305 static gsize profile_zinit = 0;
306 static gsize profile_frees = 0;
309 static volatile gsize g_trap_free_size = 0;
310 static volatile gsize g_trap_realloc_size = 0;
311 static volatile gsize g_trap_malloc_size = 0;
318 gsize n_bytes, in profiler_log()
395 gsize local_allocs; in g_mem_profile()
396 gsize local_zinit; in g_mem_profile()
397 gsize local_frees; in g_mem_profile()
436 profiler_try_malloc (gsize n_bytes) in profiler_try_malloc()
438 gsize *p; in profiler_try_malloc()
445 p = standard_malloc (sizeof (gsize) * 2 + n_bytes); in profiler_try_malloc()
461 profiler_malloc (gsize n_bytes) in profiler_malloc()
472 profiler_calloc (gsize n_blocks, in profiler_calloc()
473 gsize n_block_bytes) in profiler_calloc()
475 gsize l = n_blocks * n_block_bytes; in profiler_calloc()
476 gsize *p; in profiler_calloc()
483 p = standard_calloc (1, sizeof (gsize) * 2 + l); in profiler_calloc()
504 gsize *p = mem; in profiler_free()
537 gsize n_bytes) in profiler_try_realloc()
539 gsize *p = mem; in profiler_try_realloc()
552 p + 2, (gsize) n_bytes, p[0]); in profiler_try_realloc()
559 p = standard_realloc (mem ? p : NULL, sizeof (gsize) * 2 + n_bytes); in profiler_try_realloc()
579 gsize n_bytes) in profiler_realloc()
616 gsize area_size, in g_mem_chunk_new()