Advertisement
tinyevil

Untitled

Aug 27th, 2019
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.86 KB | None | 0 0
  1. static constexpr uword PoolSizes[] = {
  2.     #if defined(OCTO_PLATFORM_32)
  3.     4,
  4.     #endif
  5.     8, 12, 16, 20, 24, 28, 32, 36, 44, 52, 60, 68, 76, 84, 96, 108, 124,
  6.     140, 156, 168, 184, 204, 224, 240, 256, 272, 292, 312, 340, 372, 408,
  7.     452, 480, 512, 544, 584, 628, 680, 744, 816, 908, 944, 1024, 1116,
  8.     1228, 1364, 1488, 1636, 1752, 1860, 2048, 2272, 2456, 2728, 2924, 3072,
  9.     3412, 3684, 4548, 4912, 5460, 5732, 6144, 6824, 7372, 8192, 9008, 9556,
  10.     10240, 11264, 13652, 15016, 17748, 18432, 22528, 24576, 26624, 28672,
  11.     30720, 34816,
  12. };
  13. static constexpr uword PoolPages[] = {
  14.     #if defined(OCTO_PLATFORM_32)
  15.     1,
  16.     #endif
  17.     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  18.     1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 1, 3, 3, 1, 4,
  19.     2, 3, 5, 1, 5, 3, 2, 5, 3, 5, 9, 10, 6, 4, 7, 3, 5, 9, 2, 11, 7, 5, 11,
  20.     10, 11, 13, 9, 11, 6, 13, 7, 15, 17
  21. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement