| 59 | } |
| 60 | template<class IntType> |
| 61 | forceinline IntType |
| 62 | floor_div_px(IntType x, IntType y) { |
| 63 | assert(x >= 0); |
| 64 | return (y >= 0) ? floor_div_pp(x,y) : -ceil_div_pp(x,-y); |
| 65 | } |
| 66 | |
| 67 | template<class IntType> |
| 68 | forceinline IntType |
no test coverage detected