Home
last modified time | relevance | path

Searched defs:HashT (Results 1 – 1 of 1) sorted by relevance

/AOO41X/main/binaryurp/source/
H A Dcache.hxx95 struct HashT{ size_t operator()( const LruListIt& rA) const { return hash(*rA;);}; in operator ()() argument
96 …ruct EqualT{ bool operator()( const LruListIt& rA, const LruListIt& rB) const { return *rA==*rB;}}; in operator ()()
97 …typedef ::std::unordered_map< LruListIt, IdxType, HashT, EqualT > LruItMap; // a map into a LruList in operator ()()
99 …truct CmpT{ bool operator()( const LruListIt& rA, const LruListIt& rB) const { return (*rA<*rB);}}; in operator ()()
100 typedef ::std::map< LruListIt, IdxType, CmpT > LruItMap; // a map into a LruList in operator ()()
103 std::size_t size_; in operator ()()
104 LruItMap map_; in operator ()()
105 LruList list_; in operator ()()