Searched defs:j0 (Results 1 - 11 of 11) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_ceilf.c27 int32_t i0,j0; local
31 j0 = ((i0>>23)&0xff)-0x7f;
32 if(j0<23) {
33 if(j0<0) { /* raise inexact if x != 0 */
39 i = (0x007fffff)>>j0;
42 if(i0>0) i0 += (0x00800000)>>j0;
47 if(j0==0x80) return x+x; /* inf or NaN */
H A Ds_floorf.c36 int32_t i0,j0; local
39 j0 = ((i0>>23)&0xff)-0x7f;
40 if(j0<23) {
41 if(j0<0) { /* raise inexact if x != 0 */
48 i = (0x007fffff)>>j0;
51 if(i0<0) i0 += (0x00800000)>>j0;
56 if(j0==0x80) return x+x; /* inf or NaN */
H A Ds_trunc.c35 int32_t i0,i1,j0; local
38 j0 = ((i0>>20)&0x7ff)-0x3ff;
39 if(j0<20) {
40 if(j0<0) { /* raise inexact if x != 0 */
46 i = (0x000fffff)>>j0;
52 } else if (j0>51) {
53 if(j0==0x400) return x+x; /* inf or NaN */
56 i = ((u_int32_t)(0xffffffff))>>(j0-20);
H A Ds_truncf.c33 int32_t i0,j0; local
36 j0 = ((i0>>23)&0xff)-0x7f;
37 if(j0<23) {
38 if(j0<0) { /* raise inexact if x != 0 */
42 i = (0x007fffff)>>j0;
48 if(j0==0x80) return x+x; /* inf or NaN */
H A Ds_ceil.c35 int32_t i0,i1,j0; local
38 j0 = ((i0>>20)&0x7ff)-0x3ff;
39 if(j0<20) {
40 if(j0<0) { /* raise inexact if x != 0 */
46 i = (0x000fffff)>>j0;
49 if(i0>0) i0 += (0x00100000)>>j0;
53 } else if (j0>51) {
54 if(j0==0x400) return x+x; /* inf or NaN */
57 i = ((u_int32_t)(0xffffffff))>>(j0-20);
61 if(j0
[all...]
H A Ds_floor.c35 int32_t i0,i1,j0; local
38 j0 = ((i0>>20)&0x7ff)-0x3ff;
39 if(j0<20) {
40 if(j0<0) { /* raise inexact if x != 0 */
47 i = (0x000fffff)>>j0;
50 if(i0<0) i0 += (0x00100000)>>j0;
54 } else if (j0>51) {
55 if(j0==0x400) return x+x; /* inf or NaN */
58 i = ((u_int32_t)(0xffffffff))>>(j0-20);
62 if(j0
[all...]
H A Ds_modf.c35 int32_t i0,i1,j0; local
38 j0 = ((i0>>20)&0x7ff)-0x3ff; /* exponent of x */
39 if(j0<20) { /* integer part in high x */
40 if(j0<0) { /* |x|<1 */
44 i = (0x000fffff)>>j0;
56 } else if (j0>51) { /* no fraction part */
58 if (j0 == 0x400) { /* inf/NaN */
67 i = ((u_int32_t)(0xffffffff))>>(j0-20);
H A Ds_modff.c27 int32_t i0,j0; local
30 j0 = ((i0>>23)&0xff)-0x7f; /* exponent of x */
31 if(j0<23) { /* integer part in x */
32 if(j0<0) { /* |x|<1 */
36 i = (0x007fffff)>>j0;
H A Ds_rint.c40 int32_t i0,j0,sx; local
45 j0 = ((i0>>20)&0x7ff)-0x3ff;
46 if(j0<20) {
47 if(j0<0) {
59 i = (0x000fffff)>>j0;
67 * guard bit. We do this for all j0<=51. The
68 * adjustment is trickiest for j0==18 and j0==19
71 if(j0==19) i1 = 0x40000000; else
72 if(j0
[all...]
H A Ds_rintf.c34 int32_t i0,j0,sx; local
38 j0 = ((i0>>23)&0xff)-0x7f;
39 if(j0<23) {
40 if(j0<0) {
51 if(j0==0x80) return x+x; /* inf or NaN */
/bionic/libc/upstream-openbsd/lib/libc/crypt/
H A Dchacha_private.h92 u32 j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, j15; local
99 j0 = x->input[0];
123 x0 = j0;
149 x0 = PLUS(x0,j0);

Completed in 1713 milliseconds