| 192 | } |
| 193 | |
| 194 | uint32_t ComponentFrameStorage::ComponentSizeBucket() const |
| 195 | { |
| 196 | auto cappedSize = std::min<uint16_t>(ComponentSizeInBytes, 0x40); |
| 197 | return ComponentSizeBuckets[cappedSize]; |
| 198 | } |
| 199 | |
| 200 | uint16_t ComponentFrameStorage::ComponentsOnPage(uint32_t page) const |
| 201 | { |
nothing calls this directly
no outgoing calls
no test coverage detected