Home
last modified time | relevance | path

Searched refs:fpi (Results 1 – 25 of 58) sorted by relevance

123

/netbsd-src/usr.sbin/sysinst/
H A Dmenus.entropy80 action { struct ftpinfo *fpi = (struct ftpinfo*)((arg_rv*)arg)->arg;
82 fpi->xfer_host[XFER_HOST(fpi->xfer)],
83 sizeof fpi->xfer_host[XFER_HOST(fpi->xfer)]); };
89 action { struct ftpinfo *fpi = (struct ftpinfo*)((arg_rv*)arg)->arg;
90 src_prompt(MSG_User, fpi->user, sizeof fpi->user);
91 fpi->pass[0] = 0;
99 action { struct ftpinfo *fpi = (struct ftpinfo*)((arg_rv*)arg)->arg;
100 if (strcmp(fpi->user, "ftp") == 0)
101 src_prompt(MSG_email, fpi->pass, sizeof fpi->pass);
104 fpi->pass, sizeof fpi->pass);
[all …]
/netbsd-src/lib/libc/gdtoa/
H A Dgethex.c41 gethex( CONST char **sp, CONST FPI *fpi, Long *expt, Bigint **bp, int sign, locale_t loc) argument
141 switch(fpi->rounding) {
158 switch(fpi->rounding) {
171 nbits = fpi->nbits;
182 *expt = fpi->emin;
218 nbits = fpi->nbits;
243 if (e > fpi->emax) {
253 if (e < fpi->emin) {
255 n = fpi->emin - e;
257 switch (fpi->rounding) {
[all …]
H A DstrtoIg.c38 strtoIg(s00, se, fpi, exp, B, rvp) CONST char *s00; char **se; CONST FPI *fpi; Long *exp; Bigint **… in strtoIg() argument
40 strtoIg(CONST char *s00, char **se, CONST FPI *fpi, Long *exp, Bigint **B, int *rvp)
49 rv = strtodg(s00, se, fpi, exp, b->x);
62 nb = fpi->nbits;
71 if (fpi->sudden_underflow) {
84 if (++e1 > fpi->emax)
99 e1 = fpi->emax;
113 if (e1 == fpi->emin) {
114 if (fpi->sudden_underflow)
H A Dg_ddfmt.c43 FPI fpi; local
157 fpi.nbits = z->wds * 32 - hi0bits(z->x[j = z->wds-1]);
158 if (fpi.nbits < 106) {
159 fpi.nbits = 106;
170 if (bufsize < (int)(fpi.nbits * .301029995664) + 10) {
176 fpi.emin = 1-1023-53+1;
177 fpi.emax = 2046-1023-106+1;
178 fpi.rounding = Rounding;
179 fpi.sudden_underflow = 0;
181 s = gdtoa(&fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A Dstrtodg.c179 (d, fpi, expt, bits, exact, rd, irv) in rvOK() argument
180 U *d; CONST FPI *fpi; Long *expt; ULong *bits; int exact, rd, *irv; in rvOK()
182 (U *d, CONST FPI *fpi, Long *expt, ULong *bits, int exact, int rd, int *irv)
191 bdif -= nb = fpi->nbits;
203 fpi->rounding ==
256 if (e < fpi->emin) {
257 k = fpi->emin - e;
258 e = fpi->emin;
259 if (k > nb || fpi->sudden_underflow) {
282 else if (e > fpi->emax) {
[all …]
H A Dstrtorf.c77 CONST FPI *fpi; local
83 fpi = &fpi0;
87 fpi = &fpi1;
89 k = strtodg(s, sp, fpi, &expt, bits);
H A Dstrtord.c79 CONST FPI *fpi; in strtord() local
85 fpi = &fpi0; in strtord()
89 fpi = &fpi1; in strtord()
91 k = strtodg(s, sp, fpi, &expt, bits, loc); in strtord()
H A DstrtorxL.c96 CONST FPI *fpi; local
102 fpi = &fpi0;
106 fpi = &fpi1;
108 k = strtodg(s, sp, fpi, &expt, bits);
H A Dgdtoa_fltrnds.h1 CONST FPI *fpi; variable
14 fpi = &fpi0;
17 fpi = &fpi1;
H A Dstrtorx.c108 CONST FPI *fpi; local
114 fpi = &fpi0;
118 fpi = &fpi1;
120 k = strtodg(s, sp, fpi, &expt, bits);
H A DstrtorQ.c105 CONST FPI *fpi; local
111 fpi = &fpi0;
115 fpi = &fpi1;
117 k = strtodg(s, sp, fpi, &expt, bits);
H A Dhexnan.c56 hexnan(sp, fpi, x0) in hexnan() argument
57 CONST char **sp; CONST FPI *fpi; ULong *x0; in hexnan()
59 hexnan( CONST char **sp, CONST FPI *fpi, ULong *x0)
68 nbits = fpi->nbits;
H A DstrtoIdd.c44 static CONST FPI fpi = { 106, 1-1023, 2046-1023-106+1, 1, 1 }; local
46 static CONST FPI fpi = { 106, 1-1023-53+1, 2046-1023-106+1, 1, 0 };
56 k = strtoIg(s, sp, &fpi, exp, B, rv);
H A Dstrtordd.c187 CONST FPI *fpi; local
193 fpi = &fpi0;
197 fpi = &fpi1;
199 k = strtodg(s, sp, fpi, &expt, bits);
H A Dgdtoa.c120 (fpi, be, bits, kindp, mode, ndigits, decpt, rve) in gdtoa() argument
121 CONST FPI *fpi; int be; ULong *bits; in gdtoa()
124 (CONST FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, int *decpt, char **rve)
196 b = bitstob(bits, nbits = fpi->nbits, &bbits);
330 if ( (rdir = fpi->rounding - 1) !=0) {
519 if (be - i++ < fpi->emin && mode != 3 && mode != 5) {
521 i = be - fpi->emin + 1;
587 if (bbits == 1 && be0 > fpi->emin + 1) {
H A Dstrtopd.c50 #define fpi &fpi0 macro
53 k = strtodg(s, sp, fpi, &expt, bits);
H A Dstrtopf.c50 #define fpi &fpi0 macro
53 k = strtodg(s, sp, fpi, &expt, bits);
H A DstrtoIf.c43 static CONST FPI fpi = { 24, 1-127-24+1, 254-127-24+1, 1, SI }; local
52 k = strtoIg(s, sp, &fpi, exp, B, rv);
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Ddvmstat_example.txt8 re maj mf fr epi epo api apo fpi fpo sy
26 reclaims, and a lack of "fpi" filesystem page ins.
29 see the "re" value drops, and both the "maj" major faults and "fpi" values
38 re maj mf fr epi epo api apo fpi fpo sy
58 re maj mf fr epi epo api apo fpi fpo sy
69 re maj mf fr epi epo api apo fpi fpo sy
87 re maj mf fr epi epo api apo fpi fpo sy
90 Great! Activity from the tar command such as "fpi"s can be clearly seen.
H A Dzvmstat_example.txt8 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
11 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
14 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
17 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
20 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
23 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
26 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/
H A Ddvmstat_example.txt8 re maj mf fr epi epo api apo fpi fpo sy
26 reclaims, and a lack of "fpi" filesystem page ins.
29 see the "re" value drops, and both the "maj" major faults and "fpi" values
38 re maj mf fr epi epo api apo fpi fpo sy
58 re maj mf fr epi epo api apo fpi fpo sy
69 re maj mf fr epi epo api apo fpi fpo sy
87 re maj mf fr epi epo api apo fpi fpo sy
90 Great! Activity from the tar command such as "fpi"s can be clearly seen.
H A Dzvmstat_example.txt8 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
11 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
14 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
17 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
20 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
23 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
26 ZONE re mf fr sr epi epo epf api apo apf fpi fpo fpf
/netbsd-src/external/cddl/dtracetoolkit/dist/Mem/
H A Dvmstat-p.d70 fpi = 0; fpo = 0; fpf = 0;
102 vminfo:::fspgin { fpi += arg0; }
135 fpi *= `_pagesize / 1024;
148 epi, epo, epf, api, apo, apf, fpi, fpo, fpf);
154 fpi = 0; fpo = 0; fpf = 0;
/netbsd-src/external/cddl/dtracetoolkit/dist/Bin/
H A Dvmstat-p.d70 fpi = 0; fpo = 0; fpf = 0;
102 vminfo:::fspgin { fpi += arg0; }
135 fpi *= `_pagesize / 1024;
148 epi, epo, epf, api, apo, apf, fpi, fpo, fpf);
154 fpi = 0; fpo = 0; fpf = 0;
/netbsd-src/sys/arch/m68k/m68k/
H A Dswitch_subr.s117 fmovem %fpcr/%fpsr/%fpi,FPF_FPCR(%a2) | save FP control registers
129 fmovem %fpi,FPF_FPI(%a2)
186 fmovem FPF_FPCR(%a0),%fpcr/%fpsr/%fpi | restore FP control registers
199 fmovem FPF_FPI(%a0),%fpi
240 fmovem %fpcr/%fpsr/%fpi,FPF_FPCR(%a0) | save FP control registers
252 fmovem %fpi,FPF_FPI(%a0)
308 fmovem %fpcr/%fpsr/%fpi,FPF_FPCR(%a0) | save FP control registers
319 fmovem %fpi,FPF_FPI(%a0)
334 fmovem FPF_FPCR(%a0),%fpcr/%fpsr/%fpi | restore FP control registers
346 fmovem FPF_FPI(%a0),%fpi
[all...]

123