mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 06:43:32 +00:00
Bug 1816044 - Fix an ascii-art table r=glandium DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D169413
This commit is contained in:
parent
3892246c6c
commit
b9df18d3cb
@ -1147,28 +1147,28 @@ struct arena_t {
|
||||
// mBins is used to store rings of free regions of the following sizes,
|
||||
// assuming a 16-byte quantum, 4kB pagesize, and default MALLOC_OPTIONS.
|
||||
//
|
||||
// mBins[i] | size |
|
||||
// --------+------+
|
||||
// 0 | 2 |
|
||||
// 1 | 4 |
|
||||
// 2 | 8 |
|
||||
// --------+------+
|
||||
// 3 | 16 |
|
||||
// 4 | 32 |
|
||||
// 5 | 48 |
|
||||
// 6 | 64 |
|
||||
// : :
|
||||
// : :
|
||||
// 33 | 496 |
|
||||
// 34 | 512 |
|
||||
// --------+------+
|
||||
// 35 | 768 |
|
||||
// 36 | 1024 |
|
||||
// : :
|
||||
// : :
|
||||
// 46 | 3584 |
|
||||
// 47 | 3840 |
|
||||
// --------+------+
|
||||
// | mBins[i] | size |
|
||||
// +----------+------+
|
||||
// | 0 | 2 |
|
||||
// | 1 | 4 |
|
||||
// | 2 | 8 |
|
||||
// +----------+------+
|
||||
// | 3 | 16 |
|
||||
// | 4 | 32 |
|
||||
// | 5 | 48 |
|
||||
// | 6 | 64 |
|
||||
// | : :
|
||||
// | : :
|
||||
// | 33 | 496 |
|
||||
// | 34 | 512 |
|
||||
// +----------+------+
|
||||
// | 35 | 768 |
|
||||
// | 36 | 1024 |
|
||||
// | : :
|
||||
// | : :
|
||||
// | 46 | 3584 |
|
||||
// | 47 | 3840 |
|
||||
// +----------+------+
|
||||
arena_bin_t mBins[1]; // Dynamically sized.
|
||||
|
||||
explicit arena_t(arena_params_t* aParams, bool aIsPrivate);
|
||||
|
Loading…
Reference in New Issue
Block a user