Searched defs:n_structs (Results 1 – 2 of 2) sorted by relevance
| /third_party/glib/glib/ |
| D | gmem.h | 234 # define _G_NEW(struct_type, n_structs, func) \ argument 248 # define _G_RENEW(struct_type, mem, n_structs, func) \ argument 267 #define _G_NEW(struct_type, n_structs, func) \ argument 269 #define _G_RENEW(struct_type, mem, n_structs, func) \ argument 290 #define g_new(struct_type, n_structs) _G_NEW (struct_type, n_structs, malloc) argument 307 #define g_new0(struct_type, n_structs) _G_NEW (struct_type, n_structs, malloc0) argument 321 #define g_renew(struct_type, mem, n_structs) _G_RENEW (struct_type, mem, n_structs, realloc) argument 335 #define g_try_new(struct_type, n_structs) _G_NEW (struct_type, n_structs, try_malloc) argument 350 #define g_try_new0(struct_type, n_structs) _G_NEW (struct_type, n_structs, try_malloc0) argument 366 #define g_try_renew(struct_type, mem, n_structs) _G_RENEW (struct_type, mem, n_structs, try_realloc) argument
|
| D | galloca.h | 101 #define g_newa(struct_type, n_structs) ((struct_type*) g_alloca (sizeof (struct_type) * (gsize) (n_… argument
|