Lines Matching refs:sign
18 Floor and Cast are very similar, but Cast applies its sign after all other
81 // apply the sign after we check for overflow
84 // apply the sign before we right-shift
120 // apply the sign after we check for overflow
123 // apply the sign before we right-shift
150 // apply the sign after we check for overflow
153 // apply the sign before we right-shift
181 // record the sign and make value positive
182 int sign = SkExtractSign(value);
183 value = SkApplySign(value, sign);
203 data.fSignBitInt = SkLeftShift(sign, 31) | SkLeftShift(shift, 23) | (value & ~MATISSA_MAGIC_BIG);