Searched refs:temp (Results 1 – 10 of 10) sorted by relevance
/picolibc-latest/newlib/libm/math/ |
D | s_jn.c | 54 __float64 a, b, temp, di; in jn64() local 101 temp = cos64(x) + sin64(x); in jn64() 104 temp = -cos64(x) + sin64(x); in jn64() 107 temp = -cos64(x) - sin64(x); in jn64() 110 temp = cos64(x) - sin64(x); in jn64() 113 b = invsqrtpi * temp / sqrt64(x); in jn64() 118 temp = b; in jn64() 120 a = temp; in jn64() 131 temp = x * _F_64(0.5); in jn64() 132 b = temp; in jn64() [all …]
|
D | sf_jn.c | 27 float a, b, temp, di; in jnf() local 56 temp = b; in jnf() 58 a = temp; in jnf() 68 temp = x * (float)0.5; in jnf() 69 b = temp; in jnf() 72 b *= temp; /* b = (x/2)^n */ in jnf() 140 temp = b; in jnf() 143 a = temp; in jnf() 148 temp = b; in jnf() 151 a = temp; in jnf() [all …]
|
/picolibc-latest/newlib/libc/xdr/ |
D | xdr_stdio.c | 113 u_int32_t temp; in xdrstdio_getlong() local 115 if (fread (&temp, sizeof (int32_t), 1, (FILE *) xdrs->x_private) != 1) in xdrstdio_getlong() 117 *lp = (long) (int32_t) ntohl (temp); in xdrstdio_getlong() 125 u_int32_t temp = htonl ((u_int32_t) * lp); in xdrstdio_putlong() local 127 if (fwrite (&temp, sizeof (int32_t), 1, (FILE *) xdrs->x_private) != 1) in xdrstdio_putlong() 191 int32_t temp; in xdrstdio_getint32() local 193 if (fread (&temp, sizeof (int32_t), 1, (FILE *) xdrs->x_private) != 1) in xdrstdio_getint32() 195 *ip = ntohl (temp); in xdrstdio_getint32() 203 int32_t temp = htonl (*ip); in xdrstdio_putint32() local 205 if (fwrite (&temp, sizeof (int32_t), 1, (FILE *) xdrs->x_private) != 1) in xdrstdio_putint32()
|
/picolibc-latest/newlib/libc/stdlib/ |
D | rand48.c | 144 unsigned short temp[2]; in __dorand48() local 148 temp[0] = (unsigned short) accu; /* lower 16 bits */ in __dorand48() 152 temp[1] = (unsigned short) accu; /* middle 16 bits */ in __dorand48() 155 xseed[0] = temp[0]; in __dorand48() 156 xseed[1] = temp[1]; in __dorand48()
|
D | ldtoa.c | 1938 unsigned short temp[NI + 1]; in e64toe() local 1939 emovi (yy, temp); in e64toe() 1940 eshup1 (temp); in e64toe() 1941 emovo (temp, y, ldp); in e64toe()
|
/picolibc-latest/newlib/libm/machine/aarch64/ |
D | s_lrint.c | 34 double temp; in lrint() local 38 : "=r" (result), "=w" (temp) : "w" (x)); in lrint() 42 : "=r" (result), "=w" (temp) : "w" (x)); in lrint()
|
D | sf_lrint.c | 34 float temp; in lrintf() local 38 : "=r" (result), "=w" (temp) : "w" (x)); in lrintf() 42 : "=r" (result), "=w" (temp) : "w" (x)); in lrintf()
|
D | s_llrint.c | 34 double temp; in llrint() local 37 : "=r" (result), "=w" (temp) : "w" (x)); in llrint()
|
D | sf_llrint.c | 34 float temp; in llrintf() local 37 : "=r" (result), "=w" (temp) : "w" (x)); in llrintf()
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 20753 * libc/signal/signal.c (_signal_r) : Removed unused local variable temp.
|