Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dfold-const.c15562 unsigned HOST_WIDE_INT init_bytes = TREE_STRING_LENGTH (src); in c_getstr() local
15565 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()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dfold-const.cc16522 unsigned HOST_WIDE_INT init_bytes = TREE_STRING_LENGTH (src); in getbyterep() local
16526 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()