Searched refs:lvalue (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DFormattedFloatingDecimal.java296 * all the significant bits, after scaling, are held in lvalue.
301 * lvalue is a finite number (not Inf, nor NaN)
302 * lvalue > 0L (not zero, nor negative).
310 developLongDigits( int decExponent, long lvalue, long insignificant ){ argument
323 long residue = lvalue % pow10;
324 lvalue /= pow10;
328 lvalue++;
331 if ( lvalue <= Integer.MAX_VALUE ){
332 assert lvalue > 0L : lvalue; // lvalu
[all...]
H A DFloatingDecimal.java288 * all the significant bits, after scaling, are held in lvalue.
293 * lvalue is a finite number (not Inf, nor NaN)
294 * lvalue > 0L (not zero, nor negative).
302 developLongDigits( int decExponent, long lvalue, long insignificant ){ argument
315 long residue = lvalue % pow10;
316 lvalue /= pow10;
320 lvalue++;
323 if ( lvalue <= Integer.MAX_VALUE ){
324 assert lvalue > 0L : lvalue; // lvalu
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DBasisLibrary.java585 final String lvalue = dom.getStringValueX(lnode);
598 if (compareStrings(lvalue, dom.getStringValueX(rnode), op,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java1342 LocationValue lvalue = (LocationValue) sv;
1343 Location loc = lvalue.getLocation();

Completed in 43 milliseconds