| 79 | |
| 80 | template<class IntType> |
| 81 | forceinline IntType |
| 82 | ceil_div_xx(IntType x, IntType y) { |
| 83 | return (x >= 0) ? ceil_div_px(x,y) : -floor_div_px(-x,y); |
| 84 | } |
| 85 | template<class IntType> |
| 86 | forceinline IntType |
| 87 | floor_div_xx(IntType x, IntType y) { |
no test coverage detected