| 80 | return x - (div(x) * y); |
| 81 | } |
| 82 | __host__ __device__ __forceinline__ void divmod(int32_t x, int32_t& q, int32_t& mod) const |
| 83 | { |
| 84 | q = div(x); |
| 85 | mod = x - (q * y); |
| 86 | } |
| 87 | __host__ __device__ __forceinline__ int32_t get() const |
| 88 | { |
| 89 | return y; |