Home | History | Annotate | Download | only in asm

Lines Matching refs:saturate

52     // the fixed point number, and saturate our input to that
53 const int saturate = 32 - FractionalShift;
57 // The following ARM code will Saturate the passed value to the number of
65 asm("ssat %[output],%[saturate],%[value]\n\t"
69 [saturate] "n" (saturate),
78 // Here we are being passed an unsigned value to saturate,
83 const int saturate = 31 - FractionalShift;
85 // The following ARM code will Saturate the passed value to the number of
95 asm("usat %[output],%[saturate],%[value]\n\t"
99 [saturate] "n" (saturate),