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

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

Definition at line 90 of file svm.cpp.

References Cache::head_t::next, and Cache::head_t::prev.

Referenced by get_data(), and swap_index().

00091 {
00092         // delete from current location
00093         h->prev->next = h->next;
00094         h->next->prev = h->prev;
00095 }


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