HomeSort by relevance Sort by last modified time
    Searched refs:rawbits_to_float (Results 1 - 15 of 15) sorted by null

  /external/vixl/src/vixl/
utils.cc 46 float rawbits_to_float(uint32_t bits) { function in namespace:vixl
98 return rawbits_to_float(bits);
utils.h 105 float rawbits_to_float(uint32_t bits);
166 return rawbits_to_float(float_to_rawbits(num) | kFP32QuietNaNMask);
  /external/v8/src/arm64/
utils-arm64.h 41 static inline float rawbits_to_float(uint32_t bits) { function in namespace:v8::internal
98 return rawbits_to_float(float_to_rawbits(num) | kSQuietNanMask);
instructions-arm64.cc 155 return rawbits_to_float(result);
simulator-arm64.cc     [all...]
  /external/vixl/src/vixl/a64/
instructions-a64.cc 36 const float kFP32PositiveInfinity = rawbits_to_float(0x7f800000);
37 const float kFP32NegativeInfinity = rawbits_to_float(0xff800000);
46 const float kFP32DefaultNaN = rawbits_to_float(0x7fc00000);
198 return rawbits_to_float(result);
instructions-a64.h 393 return rawbits_to_float(Literal32());
logic-a64.cc 61 return rawbits_to_float(bits);
224 return rawbits_to_float((sign << 31) |
353 return rawbits_to_float((sign << 31) | (exponent << 23) | payload);
    [all...]
simulator-a64.cc 116 VIXL_ASSERT(IsSignallingNaN(rawbits_to_float(nan_bits & kSRegMask)));
    [all...]
  /external/v8/test/cctest/
test-utils-arm64.h 81 return rawbits_to_float(sreg_bits(code));
test-assembler-arm64.cc     [all...]
  /external/vixl/test/
test-utils-a64.h 102 return rawbits_to_float(sreg_bits(code));
test-utils-a64.cc 46 const float kFP32SignallingNaN = rawbits_to_float(0x7f800001);
50 const float kFP32QuietNaN = rawbits_to_float(0x7fc00001);
test-assembler-a64.cc     [all...]
test-simulator-a64.cc 133 // Overloaded versions of rawbits_to_double and rawbits_to_float for use in the
136 return rawbits_to_float(bits);
    [all...]

Completed in 573 milliseconds