Home | History | Annotate | Download | only in core

Lines Matching defs: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
164 // record the sign and make value positive
165 int sign = SkExtractSign(value);
166 value = SkApplySign(value, sign);
186 data.fSignBitInt = (sign << 31) | (shift << 23) | (value & ~MATISSA_MAGIC_BIG);
197 // record the sign and make value positive
198 int sign = SkExtractSign(value);
199 value = SkApplySign(value, sign);
206 data.fSignBitInt = (sign << 31) | (shift << 23) | (value & ~MATISSA_MAGIC_BIG);