Home | History | Annotate | Download | only in wtf

Lines Matching refs:UPPER

124 // The types K and V provide upper bounds on the number of valid keys
175 // We are going to pack a value and the upper part of a key into
176 // an entry of type T. The UPPER type is for the upper part of a key,
178 typedef T UPPER;
182 static UPPER EntryToUpper(T t) { return t & kUpperMask; }
184 // If v is a V and u is an UPPER then you can create an entry by
185 // doing u | v. kHashbits determines where in a K to find the upper
188 static UPPER KeyToUpper(K k) {
196 static K UpperToPartialKey(UPPER u) {