Home
last modified time | relevance | path

Searched refs:fvalue (Results 1 – 17 of 17) sorted by relevance

/freebsd/crypto/openssl/crypto/bio/
H A Dbio_print.c95 LDOUBLE fvalue; in _dopr() local
272 fvalue = va_arg(args, double); in _dopr()
284 fvalue = va_arg(args, double); in _dopr()
587 if (fvalue < 0) in fmtfp()
600 if (fvalue == 0.0) { in fmtfp()
602 } else if (fvalue < 0.0001) { in fmtfp()
604 } else if ((max == 0 && fvalue >= 10) in fmtfp()
615 tmpvalue = fvalue; in fmtfp()
617 if (fvalue != 0.0) { in fmtfp()
654 fvalue = tmpvalue; in fmtfp()
[all …]
/freebsd/crypto/openssh/openbsd-compat/
H A Dbsd-snprintf.c184 LDOUBLE fvalue; in dopr() local
389 fvalue = va_arg (args, LDOUBLE); in dopr()
391 fvalue = va_arg (args, double); in dopr()
392 if (fmtfp(buffer, &currlen, maxlen, fvalue, in dopr()
400 fvalue = va_arg (args, LDOUBLE); in dopr()
402 fvalue = va_arg (args, double); in dopr()
403 if (fmtfp(buffer, &currlen, maxlen, fvalue, in dopr()
411 fvalue = va_arg (args, LDOUBLE); in dopr()
413 fvalue = va_arg (args, double); in dopr()
732 ufvalue = abs_val (fvalue); in fmtfp()
[all …]
/freebsd/contrib/ntp/libntp/
H A Dsnprintf.c555 LDOUBLE fvalue; in rpl_vsnprintf() local
810 fvalue = va_arg(args, LDOUBLE); in rpl_vsnprintf()
812 fvalue = va_arg(args, double); in rpl_vsnprintf()
824 fvalue = va_arg(args, LDOUBLE); in rpl_vsnprintf()
826 fvalue = va_arg(args, double); in rpl_vsnprintf()
840 fvalue = va_arg(args, double); in rpl_vsnprintf()
1128 if (fvalue < 0.0) in fmtflt()
1135 if (ISNAN(fvalue)) in fmtflt()
1137 else if (ISINF(fvalue)) in fmtflt()
1174 exponent = getexponent(fvalue); in fmtflt()
[all …]
/freebsd/contrib/sendmail/src/
H A Dheaders.c83 char *fvalue; local
177 fvalue = p;
186 *fvalue = '\0';
187 fvalue = p;
323 XLEN(fvalue[k]);
324 switch (fvalue[k])
335 qval[l++] = fvalue[k];
337 XLEN(fvalue[k]);
353 l = strlen(fvalue + k);
486 (strchr(fvalue, ',') != NULL || strchr(fvalue, '(') != NULL ||
[all …]
/freebsd/contrib/elftoolchain/cxxfilt/
H A Dcxxfilt.c67 int fvalue; member
110 return (flist[i].fvalue); in find_format()
/freebsd/sbin/tunefs/
H A Dtunefs.c83 int Aflag, aflag, eflag, evalue, fflag, fvalue, jflag, Jflag, kflag; in main() local
94 evalue = fvalue = mvalue = ovalue = svalue = Svalue = 0; in main()
130 fvalue = atoi(optarg); in main()
131 if (fvalue < 1) in main()
346 if (sblock.fs_avgfilesize == (unsigned)fvalue) { in main()
347 warnx("%s remains unchanged as %d", name, fvalue); in main()
351 name, sblock.fs_avgfilesize, fvalue); in main()
352 sblock.fs_avgfilesize = fvalue; in main()
/freebsd/sys/dev/hyperv/vmbus/
H A Dvmbus_br.c52 uint32_t rindex, windex, imask, psndsz, fvalue, ravail, wavail; in vmbus_br_sysctl_state() local
61 fvalue = br->vbr_fvalue; in vmbus_br_sysctl_state()
68 (uintmax_t)intrcnt, rindex, windex, imask, psndsz, fvalue, in vmbus_br_sysctl_state()
/freebsd/contrib/lua/src/
H A Dltable.c178 lua_CFunction f = fvalue(key); in mainpositionTV()
230 return fvalue(k1) == fvalueraw(keyval(n2)); in equalkey()
H A Dldo.c550 return precallC(L, func, LUA_MULTRET, fvalue(s2v(func))); in luaD_pretailcall()
595 precallC(L, func, nresults, fvalue(s2v(func))); in luaD_precall()
H A Dlobject.h605 #define fvalue(o) check_exp(ttislcf(o), val_(o).f) macro
H A Dlapi.c440 if (ttislcf(o)) return fvalue(o); in lua_tocfunction()
478 case LUA_VLCF: return cast_voidp(cast_sizet(fvalue(o))); in lua_topointer()
H A Dlvm.c590 case LUA_VLCF: return fvalue(t1) == fvalue(t2); in luaV_equalobj()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlobject.h160 #define fvalue(o) check_exp(ttislcf(o), val_(o).f) macro
H A Dlvm.c268 case LUA_TLCF: return fvalue(t1) == fvalue(t2); in luaV_equalobj_()
H A Dltable.c115 return hashpointer(t, fvalue(key)); in mainposition()
H A Dlapi.c418 if (ttislcf(o)) return fvalue(o); in lua_tocfunction()
447 case LUA_TLCF: return cast(void *, cast(uintptr_t, fvalue(o))); in lua_topointer()
H A Dldo.c386 f = fvalue(func); in luaD_precall()