Skip to main content

Module indices

Module indices 

Source
Expand description

Various kinds of associativity and Indices implementations.

Structs§

HashDirectMapped
Direct-mapped (i.e. one-way associative) caching based on the key’s Hash implementation.
HashEightWay
Eight-way set associative caching based on the key’s Hash implementation.
HashFourWay
Four-way set associative caching based on the key’s Hash implementation.
HashSixteenWay
Sixteen-way set associative caching based on the key’s Hash implementation.
HashThirtyTwoWay
32-way set associative caching based on the key’s Hash implementation.
HashTwoWay
Two-way set associative caching based on the key’s Hash implementation.
PointerDirectMapped
Direct-mapped (i.e. one-way associative) caching based on the key’s pointer value.
PointerEightWay
Eight-way set associative caching based on the key’s pointer value.
PointerFourWay
Four-way set associative caching based on the key’s pointer value.
PointerSixteenWay
Sixteen-way set associative caching based on the key’s pointer value.
PointerThirtyTwoWay
32-way set associative caching based on the key’s pointer value.
PointerTwoWay
Two-way set associative caching based on the key’s pointer value.