Home
last modified time | relevance | path

Searched refs:offset_node (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgimple-fold.c2637 tree mem_size, offset_node; in gimple_fold_builtin_memchr() local
2638 string_constant (arg1, &offset_node, &mem_size, NULL); in gimple_fold_builtin_memchr()
2639 unsigned HOST_WIDE_INT offset = (offset_node == NULL_TREE) in gimple_fold_builtin_memchr()
2640 ? 0 : tree_to_uhwi (offset_node); in gimple_fold_builtin_memchr()
H A Dfold-const.c15526 tree offset_node; in c_getstr() local
15532 src = string_constant (src, &offset_node, &mem_size, NULL); in c_getstr()
15537 if (offset_node != NULL_TREE) in c_getstr()
15539 if (!tree_fits_uhwi_p (offset_node)) in c_getstr()
15542 offset = tree_to_uhwi (offset_node); in c_getstr()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgimple-fold.cc2893 tree mem_size, offset_node; in gimple_fold_builtin_memchr() local
2894 byte_representation (arg1, &offset_node, &mem_size, NULL); in gimple_fold_builtin_memchr()
2895 unsigned HOST_WIDE_INT offset = (offset_node == NULL_TREE) in gimple_fold_builtin_memchr()
2896 ? 0 : tree_to_uhwi (offset_node); in gimple_fold_builtin_memchr()
H A Dfold-const.cc16483 tree offset_node; in getbyterep() local
16490 src = byte_representation (src, &offset_node, &mem_size, NULL); in getbyterep()
16492 src = string_constant (src, &offset_node, &mem_size, NULL); in getbyterep()
16497 if (offset_node != NULL_TREE) in getbyterep()
16499 if (!tree_fits_uhwi_p (offset_node)) in getbyterep()
16502 offset = tree_to_uhwi (offset_node); in getbyterep()