Lines Matching refs:Do
32 : ClampedNegFastOp<T>::Do(value);
81 static constexpr V Do(T x, U y) {
83 return ClampedAddFastOp<T, U>::template Do<V>(x, y);
91 return BASE_NUMERICS_LIKELY((CheckedAddOp<T, U>::Do(x, y, &result)))
107 static constexpr V Do(T x, U y) {
110 return ClampedSubFastOp<T, U>::template Do<V>(x, y);
118 return BASE_NUMERICS_LIKELY((CheckedSubOp<T, U>::Do(x, y, &result)))
134 static constexpr V Do(T x, U y) {
137 return ClampedMulFastOp<T, U>::template Do<V>(x, y);
142 return BASE_NUMERICS_LIKELY((CheckedMulOp<T, U>::Do(x, y, &result)))
158 static constexpr V Do(T x, U y) {
160 if (BASE_NUMERICS_LIKELY((CheckedDivOp<T, U>::Do(x, y, &result))))
178 static constexpr V Do(T x, U y) {
180 return BASE_NUMERICS_LIKELY((CheckedModOp<T, U>::Do(x, y, &result)))
198 static constexpr V Do(T x, U shift) {
222 static constexpr V Do(T x, U shift) {
243 static constexpr V Do(T x, U y) {
260 static constexpr V Do(T x, U y) {
277 static constexpr V Do(T x, U y) {
293 static constexpr V Do(T x, U y) {
310 static constexpr V Do(T x, U y) {
326 static constexpr V Do(T x, U y) { \