Home
last modified time | relevance | path

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

/qemu/target/sparc/
H A Dvis_helper.c401 int32_t from_fixed = scaled >> 7; in helper_fpack16() local
403 val = (from_fixed < 0 ? 0 : in helper_fpack16()
404 from_fixed > 255 ? 255 : from_fixed); in helper_fpack16()
423 int64_t from_fixed = scaled >> 23; in helper_fpack32() local
425 val = (from_fixed < 0 ? 0 : in helper_fpack32()
426 (from_fixed > 255) ? 255 : from_fixed); in helper_fpack32()
444 int64_t from_fixed = scaled >> 16; in helper_fpackfix() local
446 val = (from_fixed < -32768 ? -32768 : in helper_fpackfix()
447 from_fixed > 32767 ? 32767 : from_fixed); in helper_fpackfix()