Home | History | Annotate | Download | only in gdb.base

Lines Matching refs:arena

23 static char arena[256];
26 will always return the same pointer (to arena). This does mean we can't
28 simple test. On each malloc call the contents of arena are reset, which
35 /* Reset the contents of arena, and ensure there's a null-character at
37 memset (arena, 'X', sizeof (arena));
38 arena [sizeof (arena) - 1] = '\0';
39 if (size > sizeof (arena))
41 return arena;