Home | History | Annotate | Download | only in x86_64

Lines Matching defs:pow

59 //  pow(-0,y) = -INF and raises the divide-by-zero exception for y an odd 
61 // pow(-0,y) = +INF and raises the divide-by-zero exception for y < 0 and
63 // pow(-0,y) = -0 for y an odd integer > 0.
64 // pow(-0,y) = +0 for y > 0 and not an odd integer.
65 // pow(-1,-INF) = 1.
66 // pow(+1,y) = 1 for any y, even a NaN.
67 // pow(x,-0) = 1 for any x, even a NaN.
68 // pow(x,y) = a NaN and raises the invalid exception for finite x < 0 and
70 // pow(x,-INF) = +INF for |x|<1.
71 // pow(x,-INF) = +0 for |x|>1.
72 // pow(x,+INF) = +0 for |x|<1.
73 // pow(x,+INF) = +INF for |x|>1.
74 // pow(-INF,y) = -0 for y an odd integer < 0.
75 // pow(-INF,y) = +0 for y < 0 and not an odd integer.
76 // pow(-INF,y) = -INF for y an odd integer > 0.
77 // pow(-INF,y) = +INF for y > 0 and not an odd integer.
78 // pow(+INF,y) = +0 for y <0.
79 // pow(+INF,y) = +INF for y >0.
84 # -- Begin pow
85 ENTRY(pow)
1071 END(pow)
1072 # -- End pow