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.cc321 static float DecodeImmSingle(uint8_t small_float) { in DecodeImmSingle() argument
322 int mantissa = (small_float & 0x0f) + 0x10; in DecodeImmSingle()
323 int sign = ((small_float & 0x80) == 0) ? 1 : -1; in DecodeImmSingle()
325 int exponent = (((small_float >> 4) & 0x7) + 4) & 0x7; in DecodeImmSingle()