Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: webrtc/rtc_base/mod_ops.h

Issue 2963273002: Update includes for webrtc/{base => rtc_base} rename (3/3) (Closed)
Patch Set: git cl format Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/rtc_base/messagequeue_unittest.cc ('k') | webrtc/rtc_base/mod_ops_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_RTC_BASE_MOD_OPS_H_ 11 #ifndef WEBRTC_RTC_BASE_MOD_OPS_H_
12 #define WEBRTC_RTC_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/rtc_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
23 RTC_DCHECK_LT(a, M); 23 RTC_DCHECK_LT(a, M);
24 unsigned long t = M - b % M; // NOLINT 24 unsigned long t = M - b % M; // NOLINT
25 unsigned long res = a - t; // NOLINT 25 unsigned long res = a - t; // NOLINT
26 if (t > a) 26 if (t > a)
27 return res + M; 27 return res + M;
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_RTC_BASE_MOD_OPS_H_ 135 #endif // WEBRTC_RTC_BASE_MOD_OPS_H_
OLDNEW
« no previous file with comments | « webrtc/rtc_base/messagequeue_unittest.cc ('k') | webrtc/rtc_base/mod_ops_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698