Searched refs:offset_node (Results 1 – 2 of 2) sorted by relevance
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | builtins.c | 239 tree offset_node; local 244 src = string_constant (src, &offset_node); 251 if (offset_node && TREE_CODE (offset_node) != INTEGER_CST) 269 return size_diffop (size_int (max), offset_node); 274 if (offset_node == 0) 276 else if (! host_integerp (offset_node, 0)) 279 offset = tree_low_cst (offset_node, 0); 305 tree offset_node; local 307 src = string_constant (src, &offset_node); 311 if (offset_node == 0) [all …]
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | builtins.c | 358 tree offset_node; in c_strlen() local 379 src = string_constant (src, &offset_node); in c_strlen() 386 if (offset_node && TREE_CODE (offset_node) != INTEGER_CST) in c_strlen() 404 return size_diffop (size_int (max), offset_node); in c_strlen() 409 if (offset_node == 0) in c_strlen() 411 else if (! host_integerp (offset_node, 0)) in c_strlen() 414 offset = tree_low_cst (offset_node, 0); in c_strlen() 439 tree offset_node; in c_getstr() local 441 src = string_constant (src, &offset_node); in c_getstr() 445 if (offset_node == 0) in c_getstr() [all …]
|