/src/lib/libc/gen/ |
Lint_modf.c | 12 modf(double value, double *iptr)
|
/src/lib/libm/src/ |
s_modff.c | 27 modff(float x, float *iptr) 35 SET_FLOAT_WORD(*iptr,i0&0x80000000); /* *iptr = +-0 */ 41 *iptr = x; 46 SET_FLOAT_WORD(*iptr,i0&(~i)); 47 return x - *iptr; 52 *iptr = x*one;
|
s_modf.c | 19 * modf(double x, double *iptr) 20 * return fraction part of x, and return x's integral part in *iptr. 39 modf(double x, double *iptr) 47 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */ 53 *iptr = x; 58 INSERT_WORDS(*iptr,i0&(~i),0); 59 return x - *iptr; 64 *iptr = x*one; 74 *iptr = x [all...] |
s_modfl.c | 67 modfl(long double x, long double *iptr) 74 *iptr = zero[ux.extu_sign]; 79 *iptr = x; 86 *iptr = ux.extu_ld; 91 *iptr = x; 98 *iptr = x; 104 *iptr = ux.extu_ld;
|
/src/lib/libc/compat/gen/ |
compat_modf_ieee754.c | 36 * double modf(double val, double *iptr) 43 modf(double val, double *iptr) 53 *iptr = u.dblu_d; 62 *iptr = u.dblu_d; 75 *iptr = v.dblu_d; 97 *iptr = v.dblu_d;
|
/src/sys/arch/arm/iomd/ |
iomd_irqhandler.c | 181 char *iptr = _intrnames + (irq * 14); local in function:irq_claim 183 strlcpy(iptr, handler->ih_name, 14); 185 snprintf(iptr, 14, "irq %2d ", irq); 291 char *iptr = _intrnames + (irq * 14); local in function:irq_release 293 strlcpy(iptr, irqhandlers[irq]->ih_name, 14); 295 snprintf(iptr, 14, "irq %2d ", irq);
|
/src/games/hunt/hunt/ |
playit.c | 73 static unsigned char ibuf[256], *iptr = ibuf; variable in typeref:typename:unsigned char[256]* 75 #define GETCHR() (--icnt < 0 ? getchr() : *iptr++) 230 iptr = ibuf; 232 return *iptr++;
|
/src/usr.bin/fsplit/ |
fsplit.c | 337 char line[LINESIZE], *iptr = line; local in function:lname 356 *iptr = tolower((unsigned char)*p); 357 iptr++; 360 *iptr = '\n';
|
/src/sys/ufs/ext2fs/ |
ext2fs_vfsops.c | 172 const char *iptr = ondisk; local in function:e2fs_cgload 177 for (int i = 0; i < lim; i++, optr++, iptr += sh) { 178 memcpy(optr, iptr, sizeof(*optr)); 181 for (int i = 0; i < lim; i++, optr++, iptr += sh) { 182 memcpy(optr, iptr, E2FS_REV0_GD_SIZE); 199 const struct ext2_gd *iptr = inmemory; local in function:e2fs_cgsave 204 for (int i = 0; i < lim; i++, iptr++, optr += sh) { 205 memcpy(optr, iptr, sizeof(*iptr)); 206 memset(optr + sizeof(*iptr), 0, sh - sizeof(*iptr)) [all...] |
/src/usr.bin/xlint/llib/ |
llib-lstdc | 111 double (modf)(double value, double *iptr);
|
llib-lposix | 202 double (modf)(double value, double *iptr);
|
/src/sys/dev/ic/ |
isp.c | 4864 uint32_t iptr, optr, junk; local in function:isp_intr 4932 iptr = ISP_READ(isp, BIU2400_ATIO_RSPINP); 4935 while (optr != iptr) { 4989 iptr = ISP_READ(isp, isp->isp_respinrp); 4991 } while (junk != iptr && ++i < 1000); 4993 if (iptr != junk) { 4994 isp_prt(isp, ISP_LOGWARN, "Response Queue Out Pointer Unstable (%x, %x)", iptr, junk); 4998 iptr = ISP_READ(isp, isp->isp_respinrp); 5000 isp->isp_resodx = iptr; 5003 if (optr == iptr && sema == 0) [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_interceptors.inc | 2888 INTERCEPTOR(double, modf, double x, double *iptr) { 2890 COMMON_INTERCEPTOR_ENTER(ctx, modf, x, iptr); 2894 double res = REAL(modf)(x, iptr); 2895 if (iptr) { 2896 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, iptr, sizeof(*iptr)); 2900 INTERCEPTOR(float, modff, float x, float *iptr) { 2902 COMMON_INTERCEPTOR_ENTER(ctx, modff, x, iptr); 2906 float res = REAL(modff)(x, iptr); 2907 if (iptr) { [all...] |
/src/sys/fs/nfs/common/ |
bootp_subr.c | 266 static int xdr_int_decode(struct mbuf **ptr, int *iptr); 1231 xdr_int_decode(struct mbuf **mptr, int *iptr) 1237 *iptr = fxdr_unsigned(u_int32_t, i);
|
/src/sys/arch/amiga/dev/ |
grf_cl.c | 874 unsigned long long *tptr, *iptr, *mptr, line; local in function:writeshifted 877 iptr = (unsigned long long *) cl_cursprite.image; 889 line = iptr[y];
|