Searched refs:init_bytes (Results 1 – 2 of 2) sorted by relevance
15562 unsigned HOST_WIDE_INT init_bytes = TREE_STRING_LENGTH (src); in c_getstr() local15565 if (init_bytes > array_size) in c_getstr()15566 init_bytes = array_size; in c_getstr()15571 if (init_bytes > array_size) in c_getstr()15572 init_bytes = array_size; in c_getstr()15574 if (init_bytes == 0 || offset >= array_size) in c_getstr()15582 if (offset < init_bytes) in c_getstr()15583 *strsize = init_bytes - offset; in c_getstr()15593 if (string[init_bytes - 1] != '\0') in c_getstr()15597 return offset < init_bytes ? string + offset : ""; in c_getstr()
16522 unsigned HOST_WIDE_INT init_bytes = TREE_STRING_LENGTH (src); in getbyterep() local16526 if (init_bytes > array_size) in getbyterep()16527 init_bytes = array_size; in getbyterep()16529 if (init_bytes == 0 || offset >= array_size) in getbyterep()16537 if (offset < init_bytes) in getbyterep()16538 *strsize = init_bytes - offset; in getbyterep()16548 if (string[init_bytes - 1] != '\0') in getbyterep()16552 return offset < init_bytes ? string + offset : ""; in getbyterep()