Searched refs:multiple_of_p (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | fold-const.c | 107 static int multiple_of_p PARAMS ((tree, tree, tree)); 4203 || (multiple_of_p (ctype, op0, c) 4204 && multiple_of_p (ctype, op1, c)))) 5737 && multiple_of_p (type, arg0, arg1)) 7204 multiple_of_p (type, top, bottom) in multiple_of_p() function 7218 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom) 7219 || multiple_of_p (type, TREE_OPERAND (top, 1), bottom)); 7223 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom) 7224 && multiple_of_p (type, TREE_OPERAND (top, 1), bottom)); 7241 return multiple_of_p (type, t1, bottom); [all …]
|
| H A D | FSFChangeLog | 77 * fold-const.c (multiple_of_p): New function.
|
| H A D | ChangeLog.0 | 12643 * fold-const.c (multiple_of_p): New function.
|
| H A D | ChangeLog.5 | 9870 (multiple_of_p): Handle LSHIFT_EXPR with small constant shift.
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | fold-const.c | 130 static int multiple_of_p (tree, tree, tree); 5729 || (multiple_of_p (ctype, op0, c) in extract_muldiv_1() 5730 && multiple_of_p (ctype, op1, c)))) in extract_muldiv_1() 10096 && multiple_of_p (type, arg0, arg1)) in fold_binary() 12282 multiple_of_p (tree type, tree top, tree bottom) in multiple_of_p() function 12300 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom) in multiple_of_p() 12301 || multiple_of_p (type, TREE_OPERAND (top, 1), bottom)); in multiple_of_p() 12305 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom) in multiple_of_p() 12306 && multiple_of_p (type, TREE_OPERAND (top, 1), bottom)); in multiple_of_p() 12324 return multiple_of_p (type, t1, bottom); in multiple_of_p() [all …]
|