Lines Matching refs:left
386 /* The left argument is never smaller than the right argument */
392 /* Subtract right augmented with extension from left augmented with zeros and
408 #define Dbl_xortointp1(left,right,result) \
409 result = Dallp1(left) XOR Dallp1(right)
411 #define Dbl_xorfromintp1(left,right,result) \
412 Dallp1(result) = left XOR Dallp1(right)
414 #define Dbl_swap_lower(left,right) \
415 Dallp2(left) = Dallp2(left) XOR Dallp2(right); \
416 Dallp2(right) = Dallp2(left) XOR Dallp2(right); \
417 Dallp2(left) = Dallp2(left) XOR Dallp2(right)
621 /* The left argument is never smaller than the right argument */
707 #define Dblext_xortointp1(left,right,result) Dbl_xortointp1(left,right,result)
709 #define Dblext_xorfromintp1(left,right,result) \
710 Dbl_xorfromintp1(left,right,result)