/freebsd/lib/msun/src/ |
H A D | s_modf.c | 28 modf(double x, double *iptr) in modf() argument 36 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */ in modf() 42 *iptr = x; in modf() 47 INSERT_WORDS(*iptr,i0&(~i),0); in modf() 48 return x - *iptr; in modf() 54 *iptr = x; in modf() 57 *iptr = x*one; in modf() 65 *iptr = x; in modf() 70 INSERT_WORDS(*iptr,i0,i1&(~i)); in modf() 71 return x - *iptr; in modf()
|
H A D | s_modfl.c | 58 modfl(long double x, long double *iptr) in modfl() argument 67 *iptr = zero[ux.bits.sign]; in modfl() 72 *iptr = x; in modfl() 79 *iptr = ux.e; in modfl() 84 *iptr = x; in modfl() 91 *iptr = x; in modfl() 97 *iptr = ux.e; in modfl()
|
H A D | s_modff.c | 22 modff(float x, float *iptr) in modff() argument 30 SET_FLOAT_WORD(*iptr,i0&0x80000000); /* *iptr = +-0 */ in modff() 36 *iptr = x; in modff() 41 SET_FLOAT_WORD(*iptr,i0&(~i)); in modff() 42 return x - *iptr; in modff() 47 *iptr = x*one; in modff()
|
/freebsd/lib/libc/gen/ |
H A D | modf.c | 88 modf(double x, double *iptr) in modf() argument 96 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */ in modf() 102 *iptr = x; in modf() 107 INSERT_WORDS(*iptr,i0&(~i),0); in modf() 108 return x - *iptr; in modf() 114 *iptr = x; in modf() 117 *iptr = x*one; in modf() 125 *iptr = x; in modf() 130 INSERT_WORDS(*iptr,i0,i1&(~i)); in modf() 131 return x - *iptr; in modf()
|
/freebsd/sys/dev/dcons/ |
H A D | dcons.c | 146 dc->i.ptr = &buf->iptr[port]; in dcons_init_port() 153 buf->iptr[port] = DCONS_MAKE_PTR(&dc->i); in dcons_init_port() 175 dc->i.gen = ntohl(buf->iptr[port]) >> DCONS_GEN_SHIFT; in dcons_load_buffer() 177 dc->i.pos = ntohl(buf->iptr[port]) & DCONS_POS_MASK; in dcons_load_buffer() 179 dc->i.ptr = &buf->iptr[port]; in dcons_load_buffer()
|
H A D | dcons.h | 62 V u_int32_t iptr[DCONS_NPORT]; member
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | bsd-snprintf.c | 668 static double my_modf(double x0, double *iptr) in my_modf() argument 687 (*iptr) = 0; in my_modf() 696 (*iptr) = l*f + i2; in my_modf() 700 (*iptr) = l; in my_modf() 701 return x - (*iptr); in my_modf()
|
/freebsd/usr.sbin/dconschat/ |
H A D | dconschat.c | 115 u_int32_t iptr; member 411 i->gen = ntohl(dbuf.iptr[j]) >> DCONS_GEN_SHIFT; in dconschat_fetch_header() 412 i->pos = ntohl(dbuf.iptr[j]) & DCONS_POS_MASK; in dconschat_fetch_header() 463 dc->port[i].iptr = ntohl(ptr[DCONS_NPORT + i + 1]); in dconschat_get_ptr() 558 ptr = dc->port[port].iptr; in dconschat_write_dcons() 588 dc->port[port].iptr = ptr; in dconschat_write_dcons() 594 dc->paddr + __offsetof(struct dcons_buf, iptr[port])); in dconschat_write_dcons()
|
/freebsd/contrib/ntp/ntpd/ |
H A D | refclock_chu.c | 321 int iptr; /* integrator pointer */ member 1556 sp->metric -= sp->integ[sp->iptr]; in chu_newchan() 1557 sp->integ[sp->iptr] = met; in chu_newchan() 1558 sp->metric += sp->integ[sp->iptr]; in chu_newchan() 1560 sp->iptr = (sp->iptr + 1) % ISTAGE; in chu_newchan()
|
H A D | refclock_wwv.c | 938 static int iptr; /* data channel pointer */ in wwv_rf() local 1035 up->irig -= ibuf[iptr]; in wwv_rf() 1036 ibuf[iptr] = dtemp; in wwv_rf() 1041 up->qrig -= qbuf[iptr]; in wwv_rf() 1042 qbuf[iptr] = dtemp; in wwv_rf() 1044 iptr = (iptr + 1) % DATSIZ; in wwv_rf()
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/typedef/ |
H A D | tst.TypedefDataAssign.d | 88 new_intptr iptr; variable
|
/freebsd/contrib/ntp/sntp/libevent/test/ |
H A D | regress_util.c | 762 ev_intptr_t iptr; in test_evutil_integers() local 836 iptr = (ev_intptr_t)ptr; in test_evutil_integers() 838 ptr = (void *)iptr; in test_evutil_integers() 843 iptr = -1; in test_evutil_integers() 844 tt_assert(iptr < 0); in test_evutil_integers()
|
/freebsd/contrib/libevent/test/ |
H A D | regress_util.c | 762 ev_intptr_t iptr; in test_evutil_integers() local 836 iptr = (ev_intptr_t)ptr; in test_evutil_integers() 838 ptr = (void *)iptr; in test_evutil_integers() 843 iptr = -1; in test_evutil_integers() 844 tt_assert(iptr < 0); in test_evutil_integers()
|
/freebsd/sys/amd64/include/ |
H A D | vmm.h | 169 int *iptr; /* reqidle cookie */ member 333 return (*info->iptr); in vcpu_reqidle()
|
/freebsd/sys/riscv/include/ |
H A D | vmm.h | 122 int *iptr; /* reqidle cookie */ member
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | asn1.h.in | 343 * ASN1_ITEM_EXP *iptr; 353 * const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr); 371 # define ASN1_ITEM_ptr(iptr) (iptr()) argument 374 # define ASN1_ITEM_ref(iptr) (iptr##_it) argument
|
H A D | asn1.h | 418 # define ASN1_ITEM_ptr(iptr) (iptr()) argument 421 # define ASN1_ITEM_ref(iptr) (iptr##_it) argument
|
H A D | asn1t.h | 89 # define ASN1_ADB_ptr(iptr) ((const ASN1_ADB *)((iptr)())) argument
|
H A D | asn1t.h.in | 90 # define ASN1_ADB_ptr(iptr) ((const ASN1_ADB *)((iptr)())) argument
|
/freebsd/sys/arm64/include/ |
H A D | vmm.h | 141 int *iptr; /* reqidle cookie */ member
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | cmath | 109 floating_point modf (floating_point value, floating_point* iptr); 110 float modff(float value, float* iptr); 111 long double modfl(long double value, long double* iptr);
|
/freebsd/sys/nfs/ |
H A D | bootp_subr.c | 251 static int xdr_int_decode(struct mbuf **ptr, int *iptr); 1138 xdr_int_decode(struct mbuf **mptr, int *iptr) in xdr_int_decode() argument 1144 *iptr = fxdr_unsigned(u_int32_t, i); in xdr_int_decode()
|
/freebsd/sys/dev/isp/ |
H A D | isp.c | 3237 uint32_t iptr, optr, oop; in isp_intr_atioq() 3239 iptr = ISP_READ(isp, BIU2400_ATIO_RSPINP); in isp_intr_atioq() 3241 while (optr != iptr) { in isp_intr_atioq() 3296 uint32_t iptr, cont = 0, cptr, optr, rlen, slen, totslen; in isp_intr_respq() 3309 iptr = ISP_READ(isp, BIU2400_RSPINP); in isp_intr_respq() 3311 while (optr != iptr) { in isp_intr_respq() 3236 uint32_t iptr, optr, oop; isp_intr_atioq() local 3295 uint32_t iptr, cont = 0, cptr, optr, rlen, slen, totslen; isp_intr_respq() local
|
/freebsd/sys/riscv/vmm/ |
H A D | vmm.c | 1192 evinfo.iptr = NULL; in vm_run()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 3071 INTERCEPTOR(double, modf, double x, double *iptr) { 3073 COMMON_INTERCEPTOR_ENTER(ctx, modf, x, iptr); 3077 double res = REAL(modf)(x, iptr); 3078 if (iptr) { 3079 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, iptr, sizeof(*iptr)); 3083 INTERCEPTOR(float, modff, float x, float *iptr) { 3085 COMMON_INTERCEPTOR_ENTER(ctx, modff, x, iptr); 3089 float res = REAL(modff)(x, iptr); 3090 if (iptr) { 3091 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, iptr, sizeof(*iptr)); [all …]
|