/freebsd/lib/msun/src/ |
H A D | e_fmod.c | 30 u_int32_t lx,ly,lz; in fmod() local 32 EXTRACT_WORDS(hx,lx,x); in fmod() 43 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */ in fmod() 44 if(lx==ly) in fmod() 51 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1; in fmod() 72 hx = (hx<<n)|(lx>>(32-n)); in fmod() 73 lx <<= n; in fmod() 75 hx = lx<<(n-32); in fmod() 76 lx = 0; in fmod() 95 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in fmod() [all …]
|
H A D | s_remquo.c | 31 u_int32_t lx,ly,lz,q,sxy; in remquo() local 33 EXTRACT_WORDS(hx,lx,x); in remquo() 45 if((hx<hy)||(lx<ly)) { in remquo() 49 if(lx==ly) { in remquo() 58 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1; in remquo() 79 hx = (hx<<n)|(lx>>(32-n)); in remquo() 80 lx <<= n; in remquo() 82 hx = lx<<(n-32); in remquo() 83 lx = 0; in remquo() 103 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in remquo() [all …]
|
H A D | s_nextafter.c | 29 u_int32_t lx,ly; in nextafter() local 31 EXTRACT_WORDS(hx,lx,x); in nextafter() 36 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */ in nextafter() 40 if((ix|lx)==0) { /* x == 0 */ in nextafter() 46 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ in nextafter() 47 if(lx==0) hx -= 1; in nextafter() 48 lx -= 1; in nextafter() 50 lx += 1; in nextafter() 51 if(lx==0) hx += 1; in nextafter() 54 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */ in nextafter() [all …]
|
H A D | e_fmodl.c | 66 manl_t lx,ly,lz; in fmodl() local 110 lx = ux.bits.manl; in fmodl() 117 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in fmodl() 118 if(hz<0){hx = hx+hx+(lx>>MANL_SHIFT); lx = lx+lx;} in fmodl() 122 hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz; in fmodl() 125 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in fmodl() 126 if(hz>=0) {hx=hz;lx=lz;} in fmodl() 129 if((hx|lx)==0) /* return sign(x)*0 */ in fmodl() 132 hx = hx+hx+(lx>>MANL_SHIFT); lx = lx+lx; in fmodl() 136 ux.bits.manl = lx; in fmodl()
|
H A D | s_remquol.c | 69 manl_t lx,ly,lz; in remquol() local 118 lx = ux.bits.manl; in remquol() 125 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in remquol() 126 if(hz<0){hx = hx+hx+(lx>>MANL_SHIFT); lx = lx+lx;} in remquol() 127 else {hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz; q++;} in remquol() 130 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in remquol() 131 if(hz>=0) {hx=hz;lx=lz;q++;} in remquol() 134 if((hx|lx)==0) { /* return sign(x)*0 */ in remquol() 140 hx = hx+hx+(lx>>MANL_SHIFT); lx = lx+lx; in remquol() 144 ux.bits.manl = lx; in remquol()
|
H A D | s_nexttoward.c | 34 u_int32_t lx; in nexttoward() local 36 EXTRACT_WORDS(hx,lx,x); in nexttoward() 40 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || in nexttoward() 51 if(lx==0) hx -= 1; in nexttoward() 52 lx -= 1; in nexttoward() 54 lx += 1; in nexttoward() 55 if(lx==0) hx += 1; in nexttoward() 62 INSERT_WORDS(x,hx,lx); in nexttoward() 66 INSERT_WORDS(x,hx,lx); in nexttoward()
|
H A D | s_ilogb.c | 26 int32_t hx,lx,ix; in ilogb() local 28 EXTRACT_WORDS(hx,lx,x); in ilogb() 31 if((hx|lx)==0) in ilogb() 35 for (ix = -1043; lx>0; lx<<=1) ix -=1; in ilogb() 42 else if (hx>0x7ff00000 || lx!=0) return FP_ILOGBNAN; in ilogb()
|
H A D | s_cospi.c | 80 uint32_t hx, ix, j0, lx; in cospi() local 82 EXTRACT_WORDS(hx, lx, x); in cospi() 84 INSERT_WORDS(ax, ix, lx); in cospi() 107 FFLOOR(x, j0, ix, lx); /* Integer part of ax. */ in cospi() 109 EXTRACT_WORDS(ix, lx, ax); in cospi() 140 return (ix < 0x43400000 ? ((lx & 1) ? -1 : 1) : 1); in cospi()
|
H A D | e_jn.c | 52 int32_t i,hx,ix,lx, sgn; in jn() local 59 EXTRACT_WORDS(hx,lx,x); in jn() 62 if((ix|((u_int32_t)(lx|-lx))>>31)>0x7ff00000) return x+x; in jn() 72 if((ix|lx)==0||ix>=0x7ff00000) /* if x is 0 or inf */ in jn() 214 int32_t i,hx,ix,lx; in yn() local 218 EXTRACT_WORDS(hx,lx,x); in yn() 221 if((ix|((u_int32_t)(lx|-lx))>>31)>0x7ff00000) return x+x; in yn() 223 if((ix|lx)==0) return -one/vzero; in yn()
|
H A D | e_atan2.c | 61 u_int32_t lx,ly; in atan2() local 63 EXTRACT_WORDS(hx,lx,x); in atan2() 67 if(((ix|((lx|-lx)>>31))>0x7ff00000)|| in atan2() 70 if(hx==0x3ff00000&&lx==0) return atan(y); /* x=1.0 */ in atan2() 83 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny; in atan2()
|
/freebsd/contrib/tcsh/nls/greek/ |
H A D | set19 | 4 2 free(%lx) κλήθηκε πρίν να εκχωρηθεί μνήμη. 5 3 free(%lx) πριν την αρχή της μνήμης. 6 4 free(%lx) μετά το τέλος της μνήμης. 7 5 free(%lx) εσφαλμένο block. 8 6 free(%lx) εσφαλμένη κλίμακα check. 9 7 free(%lx) εσφαλμένος δείκτης block. 13 11 \tΕχει εκχωρηθεί μνήμη από 0x%lx ως 0x%lx. Πραγματική αρχή 0x%lx\n 14 12 Εχει εκχωρηθεί μνήμη από 0x%lx ως 0x%lx (%ld).\n
|
/freebsd/contrib/tcsh/nls/ukrainian/ |
H A D | set19 | 4 2 free(%lx) called before any allocations. 5 3 free(%lx) above top of memory. 6 4 free(%lx) below bottom of memory. 7 5 free(%lx) bad block. 8 6 free(%lx) bad range check. 9 7 free(%lx) bad block index. 13 11 \tЗанято пам'ять з 0x%lx до 0x%lx. Real top at 0x%lx\n 14 12 Занято пам'ять з 0x%lx до 0x%lx (%ld).\n
|
/freebsd/contrib/tcsh/nls/russian/ |
H A D | set19 | 4 2 free(%lx) called before any allocations. 5 3 free(%lx) above top of memory. 6 4 free(%lx) below bottom of memory. 7 5 free(%lx) bad block. 8 6 free(%lx) bad range check. 9 7 free(%lx) bad block index. 13 11 \tAllocated memory from 0x%lx to 0x%lx. Real top at 0x%lx\n 14 12 Allocated memory from 0x%lx to 0x%lx (%ld).\n
|
/freebsd/contrib/tcsh/nls/C/ |
H A D | set19 | 4 2 free(%lx) called before any allocations. 5 3 free(%lx) above top of memory. 6 4 free(%lx) below bottom of memory. 7 5 free(%lx) bad block. 8 6 free(%lx) bad range check. 9 7 free(%lx) bad block index. 13 11 \tAllocated memory from 0x%lx to 0x%lx. Real top at 0x%lx\n 14 12 Allocated memory from 0x%lx to 0x%lx (%ld).\n
|
/freebsd/contrib/tcsh/nls/et/ |
H A D | set19 | 4 2 free(%lx) kasutati enne mälu haaramist. 5 3 free(%lx) enne mälu algust. 6 4 free(%lx) pärast mälu lõppu. 7 5 free(%lx) halb plokk. 8 6 free(%lx) vigane piirkonna kontroll. 9 7 free(%lx) vigane plokkide indeks. 13 11 \tMälu vahemikus 0x%lx kuni 0x%lx. Tegelik algus 0x%lx\n 14 12 Mälu vahemikus 0x%lx kuni 0x%lx (%ld).\n
|
/freebsd/contrib/tcsh/nls/finnish/ |
H A D | set19 | 4 2 free(%lx) kutsuttu ennen kuin mitään on varattu. 5 3 free(%lx) arvo on sallitun muistialueen yläpuolella. 6 4 free(%lx) arvo on sallitun muistialueen alapuolella. 7 5 free(%lx) Virheellinen/viallinen lohko. 8 6 free(%lx) Lohko ei ole dynaamisesti varatulla alueella. 9 7 free(%lx) Virheellinen lohkon indeksi. 13 11 \tVarattu muisti alueella 0x%lx .. 0x%lx. Todellinen huippu 0x%lx\n 14 12 Varattu muisti alueella 0x%lx .. 0x%lx (%ld).\n
|
/freebsd/contrib/tcsh/nls/french/ |
H A D | set19 | 4 2 free(%lx) appelé avant allocation. 5 3 free(%lx) au delà de la limite memoire. 6 4 free(%lx) en deçà de la limite memoire. 7 5 free(%lx) mauvais bloc. 8 6 free(%lx) limites incorrectes. 9 7 free(%lx) index de bloc incorrect. 13 11 \tMémoire allouée de 0x%lx à 0x%lx. Limite réelle supérieure à 0x%lx\n 14 12 Mémoire allouée de 0x%lx à 0x%lx (%ld).\n
|
/freebsd/contrib/tcsh/nls/german/ |
H A D | set19 | 4 2 free(%lx) aufgerufen vor irgendeiner Allokation. 5 3 free(%lx) vor dem Start des Speichers. 6 4 free(%lx) hinter dem Ende des Speichers. 7 5 free(%lx) falschen Block. 8 6 free(%lx) falscher Bereichs-Check. 9 7 free(%lx) falscher Block-Index. 13 11 \tAllokierter Speicher von 0x%lx bis 0x%lx. Wirklicher Anfang 0x%lx\n 14 12 Allokierter Speicher von 0x%lx bis 0x%lx (%ld).\n
|
/freebsd/contrib/tcsh/nls/italian/ |
H A D | set19 | 4 2 free(%lx) chiamata prima di qualsiasi allocazione. 5 3 free(%lx) oltre il limite superiore della memoria. 6 4 free(%lx) oltre il limite inferiore della memoria. 7 5 free(%lx) blocco errato. 8 6 free(%lx) intervallo di controllo sbagliato. 9 7 free(%lx) indice di blocco sbagliato. 13 11 \tAllocata memoria da 0x%lx a 0x%lx. Limite superiore effettivo a 0x%lx\n 14 12 Allocata memoria da 0x%lx a 0x%lx (%ld).\n
|
/freebsd/contrib/tcsh/nls/spanish/ |
H A D | set19 | 4 2 Se ha llamado a free(%lx) antes de asignar nada. 5 3 free(%lx) por encima del límite superior de la memoria. 6 4 free(%lx) por debajo del límite inferior de la memoria. 7 5 free(%lx) bloque erróneo. 8 6 free(%lx) chequeo de rango erróneo. 9 7 free(%lx) índice de bloque erróneo. 13 11 \tSe ha asignado memoria de 0x%lx a 0x%lx. Límite superior real en 0x%lx\n 14 12 Se ha asignado memoria de 0x%lx a 0x%lx (%ld).\n
|
/freebsd/lib/msun/ld80/ |
H A D | s_cospil.c | 53 uint64_t lx, m; in cospil() local 57 EXTRACT_LDBL80_WORDS(hx, lx, x); in cospil() 59 INSERT_LDBL80_WORDS(ax, ix, lx); in cospil() 74 else if (lx < 0xc000000000000000ull) { /* |x| < 0.75 */ in cospil() 84 FFLOORL80(x, j0, ix, lx); /* Integer part of ax. */ in cospil() 86 EXTRACT_LDBL80_WORDS(ix, lx, ax); in cospil() 95 if (lx < 0xc000000000000000ull) { /* |x| < 0.75 */ in cospil() 120 RETURNI(ix >= 0x403f ? 1 : ((lx & 1) ? -1 : 1)); in cospil()
|
H A D | s_sinpil.c | 55 uint64_t lx, m; in sinpil() local 59 EXTRACT_LDBL80_WORDS(hx, lx, x); in sinpil() 61 INSERT_LDBL80_WORDS(ax, ix, lx); in sinpil() 71 lx & 0xffffffff00000000ull); in sinpil() 84 else if (lx < 0xc000000000000000ull) /* |x| < 0.75 */ in sinpil() 92 FFLOORL80(x, j0, ix, lx); /* Integer part of ax. */ in sinpil() 94 EXTRACT_LDBL80_WORDS(ix, lx, ax); in sinpil() 106 if (lx < 0xc000000000000000ull) in sinpil()
|
H A D | s_cexpl.c | 46 uint64_t lx, ly; in cexpl() local 60 EXTRACT_LDBL80_WORDS(hx, lx, x); in cexpl() 62 if (((hx & 0x7fff) | lx) == 0) { in cexpl() 69 (lx & 0x7fffffffffffffffULL) != 0)) { in cexpl() 85 if ((hx == 0x400c && lx > 0xb17217f7d1cf79acULL) || in cexpl() 86 (hx == 0x400d && lx < 0xb1c6a8573de9768cULL)) { in cexpl()
|
H A D | s_logl.c | 455 uint64_t ix, lx; in k_logl() local 459 EXTRACT_LDBL80_WORDS(hx, lx, x); in k_logl() 466 if (((hx & 0x7fff) | lx) == 0) in k_logl() 473 EXTRACT_LDBL80_WORDS(hx, lx, x); in k_logl() 475 } else if (hx >= 0x7fff || (lx & 0x8000000000000000ULL) == 0) in k_logl() 484 ix = lx & 0x7fffffffffffffffULL; in k_logl() 523 SET_FLOAT_WORD(fx_hi, (lx >> 40) | 0x3f800000); in k_logl() 556 uint64_t ix, lx; in log1pl() local 560 EXTRACT_LDBL80_WORDS(hx, lx, x); in log1pl() 564 if (ax == 0x3fff && lx in log1pl() [all...] |
H A D | s_tanpil.c | 76 uint64_t lx, m; in tanpil() local 80 EXTRACT_LDBL80_WORDS(hx, lx, x); in tanpil() 82 INSERT_LDBL80_WORDS(ax, ix, lx); in tanpil() 92 lx & 0xffffffff00000000ull); in tanpil() 108 FFLOORL80(x, j0, ix, lx); /* Integer part of ax. */ in tanpil() 111 EXTRACT_LDBL80_WORDS(ix, lx, ax); in tanpil() 131 t = ix >= 0x403f ? 0 : (copysignl(0, (lx & 1) ? -1 : 1)); in tanpil()
|