Home
last modified time | relevance | path

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

/third_party/mesa3d/src/util/
Dralloc.c406 size_t existing_length; in cat() local
409 existing_length = strlen(*dest); in cat()
410 both = resize(*dest, existing_length + n + 1); in cat()
414 memcpy(both + existing_length, str, n); in cat()
415 both[existing_length + n] = '\0'; in cat()
436 size_t existing_length, size_t str_size) in ralloc_str_append() argument
441 both = resize(*dest, existing_length + str_size + 1); in ralloc_str_append()
445 memcpy(both + existing_length, str, str_size); in ralloc_str_append()
446 both[existing_length + str_size] = '\0'; in ralloc_str_append()
490 size_t existing_length; in ralloc_vasprintf_append() local
[all …]
Dralloc.h373 size_t existing_length, size_t str_size);