Home
last modified time | relevance | path

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

/hardware/google/gfxstream/guest/mesa/src/util/
Dralloc.c403 size_t existing_length; in cat() local
406 existing_length = strlen(*dest); in cat()
407 both = resize(*dest, existing_length + n + 1); in cat()
411 memcpy(both + existing_length, str, n); in cat()
412 both[existing_length + n] = '\0'; in cat()
433 size_t existing_length, size_t str_size) in ralloc_str_append() argument
438 both = resize(*dest, existing_length + str_size + 1); in ralloc_str_append()
442 memcpy(both + existing_length, str, str_size); in ralloc_str_append()
443 both[existing_length + str_size] = '\0'; in ralloc_str_append()
487 size_t existing_length; in ralloc_vasprintf_append() local
[all …]
Dralloc.h373 size_t existing_length, size_t str_size);