Home | History | Annotate | Download | only in core

Lines Matching full:sign

11     Floor and Cast are very similar, but Cast applies its sign after all other
74 // apply the sign after we check for overflow
77 // apply the sign before we right-shift
104 // apply the sign after we check for overflow
107 // apply the sign before we right-shift
134 // apply the sign after we check for overflow
137 // apply the sign before we right-shift
157 // record the sign and make value positive
158 int sign = SkExtractSign(value);
159 value = SkApplySign(value, sign);
179 data.fSignBitInt = (sign << 31) | (shift << 23) | (value & ~MATISSA_MAGIC_BIG);
190 // record the sign and make value positive
191 int sign = SkExtractSign(value);
192 value = SkApplySign(value, sign);
199 data.fSignBitInt = (sign << 31) | (shift << 23) | (value & ~MATISSA_MAGIC_BIG);