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

Side by Side Diff: Source/wtf/QuantizedAllocation.cpp

Issue 54883002: Fix more warnings. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 22 matching lines...) Expand all
33 33
34 namespace WTF { 34 namespace WTF {
35 35
36 unsigned short QuantizedAllocation::table[QuantizedAllocation::kTableSize]; 36 unsigned short QuantizedAllocation::table[QuantizedAllocation::kTableSize];
37 37
38 void QuantizedAllocation::init() 38 void QuantizedAllocation::init()
39 { 39 {
40 size_t currAllocation = 0; 40 size_t currAllocation = 0;
41 size_t currRounding = kMinRounding; 41 size_t currRounding = kMinRounding;
42 size_t currRoundingLimit = kMinRoundingLimit / 2; 42 size_t currRoundingLimit = kMinRoundingLimit / 2;
43 size_t numCurrRounding = 0;
Nico 2013/10/31 15:40:59 cevans: fyi, in case this was supposed to do somet
44 for (size_t i = 0; i < kTableSize; ++i) { 43 for (size_t i = 0; i < kTableSize; ++i) {
45 table[i] = currRounding - 1; 44 table[i] = currRounding - 1;
46 currAllocation += kMinRoundingLimit; 45 currAllocation += kMinRoundingLimit;
47 if (currAllocation == currRoundingLimit * 2) { 46 if (currAllocation == currRoundingLimit * 2) {
48 currRoundingLimit *= 2; 47 currRoundingLimit *= 2;
49 currRounding *= 2; 48 currRounding *= 2;
50 } 49 }
51 } 50 }
52 } 51 }
53 52
54 } // namespace WTF 53 } // namespace WTF
OLDNEW
« Source/testing/runner/EventSender.cpp ('K') | « Source/wtf/PageAllocator.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698