OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_BASE_MOD_OPS_H_ | 11 #ifndef WEBRTC_RTC_BASE_MOD_OPS_H_ |
12 #define WEBRTC_BASE_MOD_OPS_H_ | 12 #define WEBRTC_RTC_BASE_MOD_OPS_H_ |
13 | 13 |
14 #include <limits> | 14 #include <limits> |
15 #include <type_traits> | 15 #include <type_traits> |
16 | 16 |
17 #include "webrtc/base/checks.h" | 17 #include "webrtc/base/checks.h" |
18 | 18 |
19 namespace webrtc { | 19 namespace webrtc { |
20 | 20 |
21 template <unsigned long M> // NOLINT | 21 template <unsigned long M> // NOLINT |
22 inline unsigned long Add(unsigned long a, unsigned long b) { // NOLINT | 22 inline unsigned long Add(unsigned long a, unsigned long b) { // NOLINT |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 | 125 |
126 template <typename T> | 126 template <typename T> |
127 inline T MinDiff(T a, T b) { | 127 inline T MinDiff(T a, T b) { |
128 static_assert(std::is_unsigned<T>::value, | 128 static_assert(std::is_unsigned<T>::value, |
129 "Type must be an unsigned integer."); | 129 "Type must be an unsigned integer."); |
130 return std::min(ForwardDiff(a, b), ReverseDiff(a, b)); | 130 return std::min(ForwardDiff(a, b), ReverseDiff(a, b)); |
131 } | 131 } |
132 | 132 |
133 } // namespace webrtc | 133 } // namespace webrtc |
134 | 134 |
135 #endif // WEBRTC_BASE_MOD_OPS_H_ | 135 #endif // WEBRTC_RTC_BASE_MOD_OPS_H_ |
OLD | NEW |