Searched refs:yisint (Results 1 - 2 of 2) sorted by relevance

/seL4-test-master/projects/musllibc/src/math/
H A Dpow.c96 int32_t i,j,k,yisint,n; local
117 * yisint = 0 ... y is not an integer
118 * yisint = 1 ... y is an odd int
119 * yisint = 2 ... y is an even int
121 yisint = 0;
124 yisint = 2; /* even integer y */
130 yisint = 2 - (j&1);
134 yisint = 2 - (j&1);
179 if (((ix-0x3ff00000)|yisint) == 0) {
181 } else if (yisint
[all...]
H A Dpowf.c52 int32_t i,j,k,yisint,n; local
71 * yisint = 0 ... y is not an integer
72 * yisint = 1 ... y is an odd int
73 * yisint = 2 ... y is an even int
75 yisint = 0;
78 yisint = 2; /* even integer y */
83 yisint = 2 - (j & 1);
112 if (((ix-0x3f800000)|yisint) == 0) {
114 } else if (yisint == 1)
122 if (yisint
[all...]

Completed in 22 milliseconds