Searched refs:smallDist (Results 1 – 4 of 4) sorted by relevance
41 private boolean changePair(int smallDist, int bigDist) { in changePair() argument42 return smallDist < (bigDist >>> 7); in changePair()
1030 boolean ChangePair(int smallDist, int bigDist) in ChangePair() argument1033 return (smallDist < (1 << (32 - kDif)) && bigDist >= (smallDist << kDif)); in ChangePair()
1030 bool ChangePair(UInt32 smallDist, UInt32 bigDist) in ChangePair() argument1033 return (smallDist < ((UInt32)(1) << (32 - kDif)) && bigDist >= (smallDist << kDif)); in ChangePair()
1552 #define ChangePair(smallDist, bigDist) (((bigDist) >> 7) > (smallDist)) argument