|
ra8-firmware 0.1.0
Bare-metal firmware for the Renesas RA8 family (RA8D2 / RA8P1)
|
LRU recency list threaded through prev/next frame-index arrays. More...
Data Fields | |
| int32_t * | prev |
| prev[f] – frame nearer MRU, or -1. | |
| int32_t * | next |
| next[f] – frame nearer LRU, or -1. | |
| int32_t | head |
| Most-recently-used frame, or -1. | |
| int32_t | tail |
| Least-recently-used frame (the victim). | |
LRU recency list threaded through prev/next frame-index arrays.
Definition at line 241 of file policies.c.
| int32_t cb_lru_t::head |
Most-recently-used frame, or -1.
Definition at line 244 of file policies.c.
Referenced by internal_lru_init(), internal_lru_to_head(), and internal_lru_unlink().
| int32_t* cb_lru_t::next |
next[f] – frame nearer LRU, or -1.
Definition at line 243 of file policies.c.
Referenced by internal_lru_init(), internal_lru_to_head(), and internal_lru_unlink().
| int32_t* cb_lru_t::prev |
prev[f] – frame nearer MRU, or -1.
Definition at line 242 of file policies.c.
Referenced by internal_lru_init(), internal_lru_to_head(), and internal_lru_unlink().
| int32_t cb_lru_t::tail |
Least-recently-used frame (the victim).
Definition at line 245 of file policies.c.
Referenced by internal_lru_init(), internal_lru_to_head(), internal_lru_unlink(), and internal_lru_victim().