示例#1
0
        // private static int Value(long slot) {
        //   return OverflowTable.Value(slot);
        // }

        private static long Slot(int low, int high)
        {
            return(OverflowTable.Combine(low, high));
        }
示例#2
0
 private static int Count(long slot)
 {
     return(OverflowTable.Count(slot));
 }
示例#3
0
 private static int High(long slot)
 {
     return(OverflowTable.High(slot));
 }
示例#4
0
 private static int Tag(int word)
 {
     return(OverflowTable.Tag(word));
 }
示例#5
0
        //////////////////////////////////////////////////////////////////////////////

        private static int Low(long slot)
        {
            return(OverflowTable.Low(slot));
        }