Home | History | Annotate | Download | only in core

Lines Matching full: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
111 // apply the sign after we check for overflow
114 // apply the sign before we right-shift
141 // apply the sign after we check for overflow
144 // apply the sign before we right-shift
162 // record the sign and make value positive
163 int sign = SkExtractSign(value);
164 value = SkApplySign(value, sign);
184 data.fSignBitInt = (sign << 31) | (shift << 23) | (value & ~MATISSA_MAGIC_BIG);
195 // record the sign and make value positive
196 int sign = SkExtractSign(value);
197 value = SkApplySign(value, sign);
204 data.fSignBitInt = (sign << 31) | (shift << 23) | (value & ~MATISSA_MAGIC_BIG);