Home
last modified time | relevance | path

Searched refs:iptr (Results 1 – 25 of 38) sorted by relevance

12

/freebsd/lib/msun/src/
H A Ds_modf.c28 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 Ds_modfl.c58 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 Ds_modff.c22 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 Dmodf.c88 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 Ddcons.c146 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 Ddcons.h62 V u_int32_t iptr[DCONS_NPORT]; member
/freebsd/crypto/openssh/openbsd-compat/
H A Dbsd-snprintf.c668 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 Ddconschat.c115 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()
556 ptr = dc->port[port].iptr; in dconschat_write_dcons()
586 dc->port[port].iptr = ptr; in dconschat_write_dcons()
592 dc->paddr + __offsetof(struct dcons_buf, iptr[port])); in dconschat_write_dcons()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/typedef/
H A Dtst.TypedefDataAssign.d88 new_intptr iptr; variable
/freebsd/contrib/ntp/ntpd/
H A Drefclock_chu.c321 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 Drefclock_wwv.c938 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/contrib/ntp/sntp/libevent/test/
H A Dregress_util.c762 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 Dregress_util.c762 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/crypto/openssl/include/openssl/
H A Dasn1.h.in343 * 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 Dasn1.h418 # define ASN1_ITEM_ptr(iptr) (iptr()) argument
421 # define ASN1_ITEM_ref(iptr) (iptr##_it) argument
H A Dasn1t.h89 # define ASN1_ADB_ptr(iptr) ((const ASN1_ADB *)((iptr)())) argument
H A Dasn1t.h.in90 # define ASN1_ADB_ptr(iptr) ((const ASN1_ADB *)((iptr)())) argument
/freebsd/sys/amd64/include/
H A Dvmm.h166 int *iptr; /* reqidle cookie */ member
356 return (*info->iptr); in vcpu_reqidle()
/freebsd/sys/arm64/include/
H A Dvmm.h125 int *iptr; /* reqidle cookie */ member
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcmath109 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 Dbootp_subr.c251 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 Disp.c3225 uint32_t iptr, optr, oop; in isp_intr_atioq() local
3227 iptr = ISP_READ(isp, BIU2400_ATIO_RSPINP); in isp_intr_atioq()
3229 while (optr != iptr) { in isp_intr_atioq()
3284 uint32_t iptr, cont = 0, cptr, optr, rlen, slen, totslen; in isp_intr_respq() local
3297 iptr = ISP_READ(isp, BIU2400_RSPINP); in isp_intr_respq()
3299 while (optr != iptr) { in isp_intr_respq()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3064 COMMON_INTERCEPTOR_ENTER(ctx, modf, x, iptr);
3068 double res = REAL(modf)(x, iptr);
3069 if (iptr) {
3070 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, iptr, sizeof(*iptr));
3076 COMMON_INTERCEPTOR_ENTER(ctx, modff, x, iptr);
3080 float res = REAL(modff)(x, iptr);
3081 if (iptr) {
3082 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, iptr, sizeof(*iptr));
3092 long double res = REAL(modfl)(x, iptr);
3093 if (iptr) {
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.def1760 /// double modf(double x, double *iptr);
1765 /// float modff(float, float *iptr);
1770 /// long double modfl(long double value, long double *iptr);
/freebsd/sys/arm64/vmm/
H A Dvmm.c1789 evinfo.iptr = NULL; in vm_run()

12