Searched refs:iptr (Results 1 - 13 of 13) sorted by relevance

/barrelfish-2018-10-04/lib/msun/src/
H A Ds_modf.c18 * modf(double x, double *iptr)
19 * return fraction part of x, and return x's integral part in *iptr.
33 modf(double x, double *iptr) argument
41 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */
47 *iptr = x;
52 INSERT_WORDS(*iptr,i0&(~i),0);
53 return x - *iptr;
59 *iptr = x;
62 *iptr
[all...]
H A Ds_modff.c25 modff(float x, float *iptr) argument
33 SET_FLOAT_WORD(*iptr,i0&0x80000000); /* *iptr = +-0 */
39 *iptr = x;
44 SET_FLOAT_WORD(*iptr,i0&(~i));
45 return x - *iptr;
50 *iptr = x*one;
H A Ds_modfl.c58 modfl(long double x, long double *iptr) argument
67 *iptr = zero[ux.bits.sign];
72 *iptr = x;
79 *iptr = ux.e;
84 *iptr = x;
91 *iptr = x;
97 *iptr = ux.e;
/barrelfish-2018-10-04/lib/libc/gen/
H A Dmodf.c17 * modf(double x, double *iptr)
18 * return fraction part of x, and return x's integral part in *iptr.
92 modf(double x, double *iptr) argument
100 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */
106 *iptr = x;
111 INSERT_WORDS(*iptr,i0&(~i),0);
112 return x - *iptr;
118 *iptr = x;
121 *iptr
[all...]
/barrelfish-2018-10-04/lib/skb/
H A Dskb_snprintf.c704 static double my_modf(double x0, double *iptr) argument
723 (*iptr) = 0;
732 (*iptr) = l*f + i2;
736 (*iptr) = l;
737 return x - (*iptr);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Dasn1.h382 * ASN1_ITEM_EXP *iptr;
392 * const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr);
406 #define ASN1_ITEM_ptr(iptr) (iptr)
409 #define ASN1_ITEM_ref(iptr) (&(iptr##_it))
426 #define ASN1_ITEM_ptr(iptr) (iptr())
429 #define ASN1_ITEM_ref(iptr) (iptr##_i
[all...]
H A Dasn1t.h80 #define ASN1_ADB_ptr(iptr) ((const ASN1_ADB *)(iptr))
94 #define ASN1_ADB_ptr(iptr) ((const ASN1_ADB *)(iptr()))
/barrelfish-2018-10-04/include/openssl/
H A Dasn1.h382 * ASN1_ITEM_EXP *iptr;
392 * const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr);
406 #define ASN1_ITEM_ptr(iptr) (iptr)
409 #define ASN1_ITEM_ref(iptr) (&(iptr##_it))
426 #define ASN1_ITEM_ptr(iptr) (iptr())
429 #define ASN1_ITEM_ref(iptr) (iptr##_i
[all...]
H A Dasn1t.h80 #define ASN1_ADB_ptr(iptr) ((const ASN1_ADB *)(iptr))
94 #define ASN1_ADB_ptr(iptr) ((const ASN1_ADB *)(iptr()))
/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_exec.c1476 register int *iptr = md->offset_vector + offset_top; local
1478 while (iptr < iend) *iptr++ = -1;
1985 register int *iptr = md->offset_vector + offset_top; local
1987 while (iptr < iend) *iptr++ = -1;
6684 register int *iptr = md->offset_vector + ocount; local
6685 register int *iend = iptr - re->top_bracket;
6687 while (--iptr >= iend) *iptr
7090 register int *iptr, *iend; local
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Pds/src/
H A Dconfigure660 typedef const int *iptr;
661 iptr p = 0;
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Demu.c683 #define Begin_Execution(iptr) \
686 vm_inst_ctr_[iptr->inst]++; \
688 (void) print_am((vmcode *) iptr, &dummy_l, &dummy_r, 2);\
690 if (iptr == stop_address) {emu_break();} \
691 ec_backtrace[bt_index] = (vmcode *) iptr; \
697 #define Begin_Execution(iptr)
/barrelfish-2018-10-04/usr/eclipseclp/
H A Dconfigure5227 typedef const int *iptr;
5228 iptr p = 0;

Completed in 232 milliseconds