Lines Matching full:distance
238 static int $opt$ShlInt(int value, int distance) {
239 return value << distance;
242 static long $opt$ShlLong(long value, int distance) {
243 return value << distance;
246 static int $opt$ShrInt(int value, int distance) {
247 return value >> distance;
250 static long $opt$ShrLong(long value, int distance) {
251 return value >> distance;
254 static int $opt$UShrInt(int value, int distance) {
255 return value >>> distance;
258 static long $opt$UShrLong(long value, int distance) {
259 return value >>> distance;