Home
last modified time | relevance | path

Searched refs:small_float (Results 1 – 1 of 1) sorted by relevance

/art/compiler/dex/quick/arm64/
Dtarget_arm64.cc326 static float DecodeImmSingle(uint8_t small_float) { in DecodeImmSingle() argument
327 int mantissa = (small_float & 0x0f) + 0x10; in DecodeImmSingle()
328 int sign = ((small_float & 0x80) == 0) ? 1 : -1; in DecodeImmSingle()
330 int exponent = (((small_float >> 4) & 0x7) + 4) & 0x7; in DecodeImmSingle()