Lines Matching refs:size_t
31 static constexpr size_t KB = 1024;
32 static constexpr size_t MB = KB * KB;
33 static constexpr size_t GB = KB * KB * KB;
36 static constexpr size_t kWordSize = sizeof(word);
37 static constexpr size_t kPointerSize = sizeof(void*);
39 static constexpr size_t kBitsPerByte = 8;
40 static constexpr size_t kBitsPerByteLog2 = 3;
42 static constexpr size_t kWordHighBitMask = static_cast<size_t>(1) << (kBitsPerWord - 1);
45 static constexpr size_t kStackAlignment = 16;
52 static constexpr size_t kObjectAlignment = 8;
53 static constexpr size_t kLargeObjectAlignment = kPageSize;