| /src/lib/libc/gdtoa/ |
| ulp.c | 1 /* $NetBSD: ulp.c,v 1.3 2011/03/20 23:15:35 christos Exp $ */ 37 ulp function
|
| gdtoaimp.h | 584 #define ulp __ulp_D2A macro 632 extern double ulp ANSI((U*));
|
| /src/external/lgpl3/mpfr/dist/src/ |
| set_z_2exp.c | 96 mp_limb_t rb, sb, ulp; local 117 ulp = 2*mask; 118 fp[0] = limb & ~(ulp-1); 131 ulp = MPFR_LIMB_ONE; 147 if (rb == 0 || MPFR_UNLIKELY (sb == 0 && (fp[0] & ulp) == 0)) 167 if (MPFR_UNLIKELY (mpn_add_1 (fp, fp, fn, ulp)))
|
| /src/sys/dev/pci/cxgb/ |
| cxgb_toedev.h | 113 void *ulp; /* ulp stuff */ member in struct:toedev
|
| /src/external/bsd/ipf/dist/tools/ |
| ipfcomp.c | 68 u_long *ulp; local 147 if (i & -(1 - sizeof(*ulp))) 149 for (i /= sizeof(u_long), ulp = (u_long *)fr; i > 0; i--) { 150 fprintf(fp, "%s%#lx", and, *ulp++); 171 u_long *ulp; local 214 ulp = fr->fr_data; 216 fprintf(fp, "%s%#lx", and, *ulp++);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| funcargs.c | 48 unsigned long *ulp = &ul; variable 196 void call3b (unsigned char *ucp, unsigned short *usp, unsigned int *uip, unsigned long *ulp) 198 ucp = 0; usp = 0; uip = 0; ulp = 0; 562 call3b (ucp, usp, uip, ulp);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| funcargs.c | 48 unsigned long *ulp = &ul; variable 196 void call3b (unsigned char *ucp, unsigned short *usp, unsigned int *uip, unsigned long *ulp) 198 ucp = 0; usp = 0; uip = 0; ulp = 0; 562 call3b (ucp, usp, uip, ulp);
|
| /src/external/lgpl3/mpfr/dist/tests/ |
| tests.c | 536 /* returns ulp(x) for x a 'normal' double-precision number */ 538 Ulp (double x) 546 /* as ulp(x) <= y = x/2^52 < 2*ulp(x), 547 we have x + ulp(x) <= x + y <= x + 2*ulp(x), 548 therefore o(x + y) = x + ulp(x) or x + 2*ulp(x) */ 551 eps = eps - x; /* ulp(x) or 2*ulp(x) * 560 ulp (double a, double b) function [all...] |