Home
last modified time | relevance | path

Searched refs:buffer_allocated (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/libcxxrt/
H A Dexception.cc443 static bool buffer_allocated[16]; variable
484 if (!buffer_allocated[i]) in emergency_malloc()
487 buffer_allocated[i] = true; in emergency_malloc()
536 buffer_allocated[buffer] = false; in emergency_malloc_free()
/freebsd-12.1/contrib/gdb/gdb/
H A Dtarget.c769 int buffer_allocated; in target_read_string() local
774 buffer_allocated = 4; in target_read_string()
775 buffer = xmalloc (buffer_allocated); in target_read_string()
798 if (bufptr - buffer + tlen > buffer_allocated) in target_read_string()
802 buffer_allocated *= 2; in target_read_string()
803 buffer = xrealloc (buffer, buffer_allocated); in target_read_string()