Searched refs:lValue (Results 1 - 6 of 6) sorted by relevance

/openjdk10/jdk/src/java.desktop/unix/native/libjsound/
H A DPLATFORM_API_LinuxOS_ALSA_Ports.c569 long lValue = 0; local
577 channel, &lValue);
582 channel, &lValue);
584 fValue = scaleVolumeValueToNormalized(lValue, min, max);
591 long lValue = 0; local
598 lValue = scaleVolumeValueToHardware(value, min, max);
600 channel, lValue);
604 lValue = scaleVolumeValueToHardware(value, min, max);
606 channel, lValue);
H A DPLATFORM_API_BsdOS_ALSA_Ports.c569 long lValue = 0; local
577 channel, &lValue);
582 channel, &lValue);
584 fValue = scaleVolumeValueToNormalized(lValue, min, max);
591 long lValue = 0; local
598 lValue = scaleVolumeValueToHardware(value, min, max);
600 channel, lValue);
604 lValue = scaleVolumeValueToHardware(value, min, max);
606 channel, lValue);
/openjdk10/jdk/test/jdk/internal/math/FloatingDecimal/
H A DOldFloatingDecimalForTest.java1278 long lValue;
1302 lValue = (long)iValue;
1304 lValue = lValue*10L + (long)((int)digits[i]-(int)'0');
1306 dValue = (double)lValue;
1309 * lValue now contains a long integer with the value of
1494 OldFDBigIntForTest bigD0 = new OldFDBigIntForTest( lValue, digits, kDigits, nDigits );
1722 long lValue = (long)iValue;
1724 lValue = lValue*1
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/math/
H A DFloatingDecimal.java1068 long lValue = (long) iValue;
1070 lValue = lValue * 10L + (long) ((int) digits[i] - (int) '0');
1072 double dValue = (double) lValue;
1075 // lValue now contains a long integer with the value of
1248 FDBigInteger bigD0 = new FDBigInteger(lValue, digits, kDigits, nDigits);
1480 long lValue = (long) iValue;
1482 lValue = lValue * 10L + (long) ((int) digits[i] - (int) '0');
1484 double dValue = (double) lValue;
[all...]
H A DFDBigInteger.java196 * @param lValue The starting value.
205 @ ensures this.value() == \old(lValue * pow10(nDigits - kDigits) + (\sum int i; kDigits <= i && i < nDigits; (digits[i] - '0') * pow10(nDigits - i - 1)));
207 public FDBigInteger(long lValue, char[] digits, int kDigits, int nDigits) { argument
210 data[0] = (int) lValue; // starting value
211 data[1] = (int) (lValue >>> 32);
1221 * FDBigInteger(long lValue, char[] digits, int kDigits, int nDigits)
/openjdk10/jdk/src/java.desktop/windows/native/libjsound/
H A DPLATFORM_API_WinOS_Ports.c1095 ret = ((float) controlID->signedValue.lValue) / controlID->max;
1117 controlID->signedValue.lValue = (INT32) ((value * controlID->max) + 0.5f);

Completed in 166 milliseconds