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

  /external/skia/src/core/
SkHalf.cpp 15 uint16_t halfExponent(SkHalf h) {
76 if (halfExponent(h) == 0)
87 if (halfExponent(h) == 0x1f)
91 o.fUInt |= ((127 - 15 + halfExponent(h)) << 23);
  /external/skqp/src/core/
SkHalf.cpp 15 uint16_t halfExponent(SkHalf h) {
76 if (halfExponent(h) == 0)
87 if (halfExponent(h) == 0x1f)
91 o.fUInt |= ((127 - 15 + halfExponent(h)) << 23);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Float16Utils.java 313 short halfExponent = (short) ((unbiasedExponent + 15) << 10);
315 short halfValue = (short) (halfExponent | halfMantissa);

Completed in 2081 milliseconds