Home | History | Annotate | Download | only in SparseExtra

Lines Matching defs:KeyType

21   typedef int KeyType;
22 typedef std::map<KeyType,Scalar> Type;
27 static void setInvalidKey(Type&, const KeyType&) {}
49 typedef int KeyType;
50 typedef std::unordered_map<KeyType,Scalar> Type;
55 static void setInvalidKey(Type&, const KeyType&) {}
66 typedef int KeyType;
67 typedef google::dense_hash_map<KeyType,Scalar> Type;
72 static void setInvalidKey(Type& map, const KeyType& k)
84 typedef int KeyType;
85 typedef google::sparse_hash_map<KeyType,Scalar> Type;
90 static void setInvalidKey(Type&, const KeyType&) {}
164 typedef typename MapTraits<ScalarWrapper>::KeyType KeyType;
198 KeyType ik = (1<<(OuterPacketBits+m_keyBitsOffset));
211 KeyType keyBitsMask = (1<<m_keyBitsOffset)-1;
299 const KeyType key = (KeyType(outerMinor)<<m_keyBitsOffset) | inner;