Lines Matching refs:left
50 #define Sgl_leftshiftby1_withextent(left,right,result) \
51 Shiftdouble(Sall(left),Extall(right),31,Sall(result))
53 #define Sgl_rightshiftby1_withextent(left,right,dst) \
54 Shiftdouble(Sall(left),Extall(right),1,Extall(right))
220 /* The left argument is never smaller than the right argument */
224 /* Subtract right augmented with extension from left augmented with zeros and
226 #define Sgl_subtract_withextension(left,right,extent,result) \
227 /* sgl_floating_point left,right,result; extension extent */ \
228 Sgl_subtract(left,right,result); \
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)
361 /* The left argument is never smaller than the right argument */
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)