Home
last modified time | relevance | path

Searched refs:bn (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/main/native/
Djava_math_NativeBN.cpp33 static void bn_check_top(const BIGNUM* bn) { in bn_check_top() argument
37 if (bn != NULL && bn->top != 0 && bn->d[bn->top-1] == 0) { in bn_check_top()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DByteTest.java568 byte bn = Byte.parseByte("-128", 10);
569 assertTrue("Invalid parse of dec byte", b == (byte) 127 && (bn == (byte) -128));