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

Side by Side Diff: media/base/djb2.cc

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 5 years 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "media/base/djb2.h" 5 #include "media/base/djb2.h"
6 6
7 uint32 DJB2Hash(const void* buf, size_t len, uint32 seed) { 7 uint32_t DJB2Hash(const void* buf, size_t len, uint32_t seed) {
8 const uint8* src = reinterpret_cast<const uint8*>(buf); 8 const uint8_t* src = reinterpret_cast<const uint8_t*>(buf);
9 uint32 hash = seed; 9 uint32_t hash = seed;
10 for (size_t i = 0; i < len; ++i) { 10 for (size_t i = 0; i < len; ++i) {
11 hash = hash * 33 + src[i]; 11 hash = hash * 33 + src[i];
12 } 12 }
13 return hash; 13 return hash;
14 } 14 }
OLDNEW
« no previous file with comments | « media/base/djb2.h ('k') | media/base/djb2_unittest.cc » ('j') | media/cdm/stub/stub_cdm.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698