Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for satan (0.09 sec)

  1. src/math/atan2_s390x.s

    	MOVD	$0, R3
    	CMPUBEQ	R3, R1, xIsPosZero
    
    	MOVD	$PosInf, R4
    	CMPUBEQ	R4, R2, yIsPosInf
    
    	MOVD	$NegInf, R4
    	CMPUBEQ	R4, R2, yIsNegInf
    	BR	Normal
    xIsNegZero:
    	// special case Atan(-0, y>=0) = -0
    	MOVD	$0, R4
    	CMPBLE	R4, R2, returnX
    
    	//special case Atan2(-0, y<=-0) = -Pi
    	MOVD	$NegZero, R4
    	CMPBGE	R4, R2, returnNegPi
    	BR	Normal
    xIsPosZero:
    	//special case Atan2(0, 0) = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 04:06:34 UTC 2020
    - 6.9K bytes
    - Viewed (0)
Back to top