Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

void Cache::lru_insert ( head_t h  )  [private]

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 }


Generated on Fri Mar 19 10:31:56 2010 for ImpalaSrc by  doxygen 1.5.1