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

Side by Side Diff: base/hash.h

Issue 1538743002: Switch to standard integer types in base/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DEPS roll too Created 4 years, 12 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 | « base/guid_win.cc ('k') | base/hash.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 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_HASH_H_ 5 #ifndef BASE_HASH_H_
6 #define BASE_HASH_H_ 6 #define BASE_HASH_H_
7 7
8 #include <stddef.h>
9 #include <stdint.h>
10
8 #include <limits> 11 #include <limits>
9 #include <string> 12 #include <string>
10 13
11 #include "base/base_export.h" 14 #include "base/base_export.h"
12 #include "base/basictypes.h"
13 #include "base/logging.h" 15 #include "base/logging.h"
14 16
15 namespace base { 17 namespace base {
16 18
17 // WARNING: This hash function should not be used for any cryptographic purpose. 19 // WARNING: This hash function should not be used for any cryptographic purpose.
18 BASE_EXPORT uint32 SuperFastHash(const char* data, int len); 20 BASE_EXPORT uint32_t SuperFastHash(const char* data, int len);
19 21
20 // Computes a hash of a memory buffer |data| of a given |length|. 22 // Computes a hash of a memory buffer |data| of a given |length|.
21 // WARNING: This hash function should not be used for any cryptographic purpose. 23 // WARNING: This hash function should not be used for any cryptographic purpose.
22 inline uint32 Hash(const char* data, size_t length) { 24 inline uint32_t Hash(const char* data, size_t length) {
23 if (length > static_cast<size_t>(std::numeric_limits<int>::max())) { 25 if (length > static_cast<size_t>(std::numeric_limits<int>::max())) {
24 NOTREACHED(); 26 NOTREACHED();
25 return 0; 27 return 0;
26 } 28 }
27 return SuperFastHash(data, static_cast<int>(length)); 29 return SuperFastHash(data, static_cast<int>(length));
28 } 30 }
29 31
30 // Computes a hash of a string |str|. 32 // Computes a hash of a string |str|.
31 // WARNING: This hash function should not be used for any cryptographic purpose. 33 // WARNING: This hash function should not be used for any cryptographic purpose.
32 inline uint32 Hash(const std::string& str) { 34 inline uint32_t Hash(const std::string& str) {
33 return Hash(str.data(), str.size()); 35 return Hash(str.data(), str.size());
34 } 36 }
35 37
36 } // namespace base 38 } // namespace base
37 39
38 #endif // BASE_HASH_H_ 40 #endif // BASE_HASH_H_
OLDNEW
« no previous file with comments | « base/guid_win.cc ('k') | base/hash.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698