Lines Matching refs:result
87 # whose content is defined by the result of a call to "EmitOne".
215 result = abs(a) / abs(b)
216 if (a < 0) != (b < 0): result = -result
217 return result
228 result = a % b
229 if a < 0 and result > 0:
230 result -= abs(b)
231 if a > 0 and result < 0:
232 result += abs(b)
233 return result
342 result = 0
345 result = result or r
346 return result