Changeset 21018 in webkit for trunk/JavaScriptCore/kjs/collector.cpp
- Timestamp:
- Apr 22, 2007, 9:10:47 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/collector.cpp
r21017 r21018 69 69 70 70 template<size_t bytesPerWord> struct CellSize; 71 template<> struct CellSize<sizeof(uint32_t)> { static const size_t m_value = 4 8; }; // 32-bit72 template<> struct CellSize<sizeof(uint64_t)> { static const size_t m_value = 80; }; // 64-bit71 template<> struct CellSize<sizeof(uint32_t)> { static const size_t m_value = 40; }; // 32-bit 72 template<> struct CellSize<sizeof(uint64_t)> { static const size_t m_value = 64; }; // 64-bit 73 73 74 74 const size_t BLOCK_SIZE = (16 * 4096); // 64k
Note:
See TracChangeset
for help on using the changeset viewer.