Lines Matching refs:result
26 /* sgl_and_signs ANDs the sign bits of each argument and puts the result
50 #define Sgl_leftshiftby1_withextent(left,right,result) \
51 Shiftdouble(Sall(left),Extall(right),31,Sall(result))
225 * store into result and extension. */
226 #define Sgl_subtract_withextension(left,right,extent,result) \
227 /* sgl_floating_point left,right,result; extension extent */ \
228 Sgl_subtract(left,right,result); \
230 Sall(result) = Sall(result)-1
235 #define Sgl_xortointp1(left,right,result) \
236 result = Sall(left) XOR Sall(right);
238 #define Sgl_xorfromintp1(left,right,result) \
239 Sall(result) = left XOR Sall(right)
264 /* set result to infinity or largest number */ \
406 #define Sglext_xortointp1(left,right,result) Sgl_xortointp1(left,right,result)
407 #define Sglext_xorfromintp1(left,right,result) \
408 Sgl_xorfromintp1(left,right,result)