Lines Matching refs:from_fixed
493 int from_fixed = scaled >> 7; in pformat() local
495 val = ((from_fixed < 0) ? in pformat()
497 (from_fixed > 255) ? in pformat()
498 255 : from_fixed); in pformat()
516 s64 from_fixed = scaled >> 23; in pformat() local
518 val = ((from_fixed < 0) ? in pformat()
520 (from_fixed > 255) ? in pformat()
521 255 : from_fixed); in pformat()
539 s64 from_fixed = scaled >> 16; in pformat() local
541 val = ((from_fixed < -32768) ? in pformat()
543 (from_fixed > 32767) ? in pformat()
544 32767 : from_fixed); in pformat()