Searched refs:n2 (Results 1 – 10 of 10) sorted by relevance
42 long n2 = System.nanoTime(); in testNanoTime1() local46 long nanos = n2 - n1; in testNanoTime1()64 long n2 = System.nanoTime(); in testNanoTime2() local66 long nanos = n2 - n1; in testNanoTime2()
41 int n1=s1.length(), n2=s2.length(); in compare() local42 int minLen = n1 < n2 ? n1 : n2; in compare()55 return n1 - n2; in compare()
66 long n2 = System.nanoTime(); in testNanoTime1() local70 long nanos = n2 - n1; in testNanoTime1()88 long n2 = System.nanoTime(); in testNanoTime2() local90 long nanos = n2 - n1; in testNanoTime2()
273 int n2; field in OldAndroidPipedStreamTest.Fibonacci280 n2 = 0; in next()284 int ret = n1 + n2; in next()285 n2 = n1; in next()
149 int n2 = 20; in testNextBytesbyteArray02() local152 byte[][] bytes2 = new byte[5][n2]; in testNextBytesbyteArray02()164 int i3 = k / n2; in testNextBytesbyteArray02()165 int i4 = k % n2; in testNextBytesbyteArray02()
209 Attributes.Name n1 = new Attributes.Name("name"), n2 = new Attributes.Name("Name"); in test_equalsLjava_lang_Object() local210 assertEquals(n1, n2); in test_equalsLjava_lang_Object()
678 int n2 = 32 - n; in primitiveRightShift() local682 val[i] = (c << n2) | (b >>> n); in primitiveRightShift()694 int n2 = 32 - n; in primitiveLeftShift() local698 val[i] = (b << n) | (c >>> n2); in primitiveLeftShift()1461 int n2 = 32 - shift; in copyAndShift() local1466 dst[dstFrom+i] = (b << shift) | (c >>> n2); in copyAndShift()1502 int n2 = 32 - shift; in divideMagnitude() local1506 remarr[i] = (b << shift) | (c >>> n2); in divideMagnitude()
2547 int n2 = 32 - n; in primitiveRightShift() local2551 a[i] = (c << n2) | (b >>> n); in primitiveRightShift()2561 int n2 = 32 - n; in primitiveLeftShift() local2565 a[i] = (b << n) | (c >>> n2); in primitiveLeftShift()
1196 int n2 = s2.length(); in compare() local1197 int min = Math.min(n1, n2); in compare()1214 return n1 - n2; in compare()
4136 PrefixTree n2 = newNode(k.substring(prefixLen), v, null); in add0() local4137 child.sibling = n2; in add0()