Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 |
| OLD | NEW |