HomeSort by relevance Sort by last modified time
    Searched refs:intBitsToFloat (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/
NumberUtils.java 36 // This mask avoids using bits in the NaN range. See Float.intBitsToFloat javadocs.
38 return Numbers.intBitsToFloat(value & 0xfeffffff);
41 public static float intBitsToFloat (int value) {
42 return Numbers.intBitsToFloat(value);
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
NumberUtils.java 33 * means the full range of alpha cannot be used. See {@link Float#intBitsToFloat(int)} javadocs. */
35 return Float.intBitsToFloat(value & 0xfeffffff);
38 public static float intBitsToFloat (int value) {
39 return Float.intBitsToFloat(value);
LittleEndianInputStream.java 95 return Float.intBitsToFloat(readInt());
  /art/test/575-checker-isnan/src/
Main.java 57 expectFalse(isNaN32(Float.intBitsToFloat(0x00400000)));
58 expectFalse(isNaN32(Float.intBitsToFloat(0x80400000)));
59 expectFalse(isNaN32(Float.intBitsToFloat(0x00000001)));
60 expectFalse(isNaN32(Float.intBitsToFloat(0x80000001)));
67 Float.intBitsToFloat(0x7f800001),
68 Float.intBitsToFloat(0x7fa00000),
69 Float.intBitsToFloat(0x7fc00000),
70 Float.intBitsToFloat(0x7fffffff),
71 Float.intBitsToFloat(0xff800001),
72 Float.intBitsToFloat(0xffa00000)
    [all...]
  /art/test/577-checker-fp2int/src/
Main.java 58 expectEquals32(i, f2int(Float.intBitsToFloat(i)));
63 Float.intBitsToFloat(0x7f800001),
64 Float.intBitsToFloat(0x7fa00000),
65 Float.intBitsToFloat(0x7fc00000),
66 Float.intBitsToFloat(0x7fffffff),
67 Float.intBitsToFloat(0xff800001),
68 Float.intBitsToFloat(0xffa00000),
69 Float.intBitsToFloat(0xffc00000),
70 Float.intBitsToFloat(0xffffffff)
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstFloat.java 64 Float.intBitsToFloat(bits) + '}';
80 return Float.toString(Float.intBitsToFloat(getIntBits()));
89 return Float.intBitsToFloat(getIntBits());
  /dalvik/dx/src/com/android/dx/rop/cst/
CstFloat.java 64 Float.intBitsToFloat(bits) + '}';
80 return Float.toString(Float.intBitsToFloat(getIntBits()));
89 return Float.intBitsToFloat(getIntBits());
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstFloat.java 64 Float.intBitsToFloat(bits) + '}';
80 return Float.toString(Float.intBitsToFloat(getIntBits()));
89 return Float.intBitsToFloat(getIntBits());
  /libcore/luni/src/test/java/libcore/java/lang/
OldFloatTest.java 68 assertEquals(Float.POSITIVE_INFINITY, Float.intBitsToFloat(0x7f800000));
69 assertEquals(Float.NEGATIVE_INFINITY, Float.intBitsToFloat(0xff800000));
71 assertEquals(Float.NaN, Float.intBitsToFloat(0x7f800001));
72 assertEquals(Float.NaN, Float.intBitsToFloat(0x7fffffff));
73 assertEquals(Float.NaN, Float.intBitsToFloat(0xff800001));
74 assertEquals(Float.NaN, Float.intBitsToFloat(0xffffffff));
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/google/gwt/corp/compatibility/
CompatibilityImpl.java 31 public float intBitsToFloat (int i) {
32 return Numbers.intBitsToFloat(i);
Compatibility.java 33 float intBitsToFloat (int i);
52 public static float intBitsToFloat (int i) {
53 return impl.intBitsToFloat(i);
Numbers.java 76 public static final float intBitsToFloat (int i) {
  /art/test/477-long-to-float-conversion-precision/src/
Main.java 35 assertFloatEquals(Float.intBitsToFloat(-555858671), $opt$LongToFloat(-8008112895877447681L));
  /art/test/580-checker-round/src/
Main.java 83 Float.intBitsToFloat(0x7f800001),
84 Float.intBitsToFloat(0x7fa00000),
85 Float.intBitsToFloat(0x7fc00000),
86 Float.intBitsToFloat(0x7fffffff),
87 Float.intBitsToFloat(0xff800001),
88 Float.intBitsToFloat(0xffa00000),
89 Float.intBitsToFloat(0xffc00000),
90 Float.intBitsToFloat(0xffffffff)
  /external/replicaisland/src/com/replica/replicaisland/
Utils.java 77 // intBitsToFloat() converts bits as follows:
84 return Float.intBitsToFloat(byteArrayToInt(b));
  /libcore/benchmarks/src/benchmarks/regression/
FloatBenchmark.java 46 result = Float.intBitsToFloat(i);
  /libcore/ojluni/src/main/native/
Float.c 63 NATIVE_METHOD(Float, intBitsToFloat, "(I)F"),
  /libcore/ojluni/src/main/java/sun/misc/
FpUtils.java 179 return Float.intBitsToFloat(((n + FloatConsts.EXP_BIAS) <<
223 return Float.intBitsToFloat((Float.floatToRawIntBits(sign) &
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/
StringByteBuffer.java 82 return Numbers.intBitsToFloat(getInt());
86 return Numbers.intBitsToFloat(getInt(index));
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
EndianUtils.java 97 return Float.intBitsToFloat( swapInteger( Float.floatToIntBits( value ) ) );
252 return Float.intBitsToFloat( readSwappedInteger( data, offset ) );
443 return Float.intBitsToFloat( readSwappedInteger( input ) );
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
FloatTest.java 176 float r = Float.intBitsToFloat(bits);
185 float f = Float.intBitsToFloat(i);
220 * java.lang.Float#intBitsToFloat(int)
225 float r = Float.intBitsToFloat(bits);
490 float expected = Float.intBitsToFloat(expecteds[i]);
539 float expected = Float.intBitsToFloat(expecteds[i]);
589 float expected = Float.intBitsToFloat(expecteds[i]);
639 float expected = Float.intBitsToFloat(expecteds[i]);
689 float expected = Float.intBitsToFloat(expecteds[i]);
    [all...]
  /art/test/082-inline-execute/src/
Main.java     [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 149 return Float.intBitsToFloat(bits);
  /external/guava/guava/src/com/google/common/io/
LittleEndianDataInputStream.java 156 return Float.intBitsToFloat(readInt());
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractByteHasherTest.java 84 hasher.putFloat(Float.intBitsToFloat(0x04030201));

Completed in 774 milliseconds

1 2 3 4