Definition at line 97 of file svm.cpp. References lru_head, Cache::head_t::next, and Cache::head_t::prev. Referenced by get_data(), and swap_index(). 00098 { 00099 // insert to last position 00100 h->next = &lru_head; 00101 h->prev = lru_head.prev; 00102 h->prev->next = h; 00103 h->next->prev = h; 00104 }
|