Searched defs:exp (Results 26 - 35 of 35) sorted by relevance

12

/osnet-11/usr/src/lib/libshell/common/sh/
H A Dpath.c1393 register int exp = 0, rund = 0; local
1397 exp++;
1407 exp++;
1410 return((exp<<13) + t);
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Dnic.c1132 RFC2131_SLEEP_INTERVAL - sleep for expotentially longer times (base << exp) +- 1 sec)
1134 long rfc2131_sleep_interval(long base, int exp) argument
1138 if (exp > BACKOFF_LIMIT)
1139 exp = BACKOFF_LIMIT;
1141 tmo = (base << exp) + (TICKS_PER_SEC - (random()/TWO_SECOND_DIVISOR));
1147 RFC1112_SLEEP_INTERVAL - sleep for expotentially longer times, up to (base << exp)
1149 long rfc1112_sleep_interval(long base, int exp) argument
1153 if (exp > BACKOFF_LIMIT)
1154 exp = BACKOFF_LIMIT;
1156 divisor = RAND_MAX/(base << exp);
[all...]
/osnet-11/usr/src/lib/libsqlite/src/
H A Dprintf.c225 int exp; /* exponent of real numbers */ local
416 exp = 0;
418 while( realvalue>=1e8 && exp<=350 ){ realvalue *= 1e-8; exp+=8; }
419 while( realvalue>=10.0 && exp<=350 ){ realvalue *= 0.1; exp++; }
420 while( realvalue<1e-8 && exp>=-350 ){ realvalue *= 1e8; exp-=8; }
421 while( realvalue<1.0 && exp>=-350 ){ realvalue *= 10.0; exp
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dvasnprintf.c204 This file doesn't use the exp() and remainder() functions. */
205 #undef exp macro
206 #define exp expo macro
873 int exp; local
883 y = frexpl (x, &exp);
886 /* x = 2^exp * y = 2^(exp - LDBL_MANT_BIT) * (y * LDBL_MANT_BIT), and the
945 *ep = exp - LDBL_MANT_BIT;
961 int exp; local
971 y = frexp (x, &exp);
1300 int exp; local
1391 int exp; local
[all...]
/osnet-11/usr/src/cmd/sendmail/src/
H A Dmilter.c1915 char exp[MAXLINE]; local
1932 expand(v, exp, sizeof(exp), e);
1933 s += strlen(macros[i]) + 1 + strlen(exp) + 1;
1950 expand(v, exp, sizeof(exp), e);
1954 m->mf_name, command, macros[i], exp);
1958 (void) sm_strlcpy(bp, exp, s - (bp - buf));
/osnet-11/usr/src/lib/libc/port/print/
H A Ddoprnt.c539 int exp; local
1301 min(prec + 1, MAXECVT), &exp, &sign,
1311 min(prec + 1, MAXECVT), &exp, &sign,
1381 * exponent should be +0 regardless of exp.
1388 nn = exp;
1394 *--suffix = (exp >= 0) ? '+' : '-';
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_util.c2240 expand_data_t exp; local
2250 exp.last = last;
2251 exp.hdl = hdl;
2252 exp.type = type;
2253 exp.deleg = B_FALSE;
2254 exp.showtype = showtype;
2255 exp.widest = 0;
2260 exp.include_sublists = !recursive;
2262 zprop_expand_list_cb, &exp) != 0)
2348 expand_data_t exp; local
2402 expand_data_t exp; local
[all...]
/osnet-11/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dtpm_specific.c2827 uchar_t exp[] = { 0x01, 0x00, 0x01 }; local
2856 rsa->e = BN_bin2bn(exp, sizeof (exp), rsa->e);
/osnet-11/usr/src/lib/libshare_plugins/nfs/
H A Dlibshare_nfs.c2567 * enable logging and set the logging configuration information for exp.
2570 configlog(struct exportdata *exp, char *tag) argument
2602 if ((exp->ex_tag = strdup(tag)) == NULL) {
2606 if ((exp->ex_log_buffer = strdup(configp->nc_bufferpath)) == NULL) {
2610 exp->ex_flags |= EX_LOG;
2612 exp->ex_flags |= EX_LOG_ALLOPS;
2619 if (exp->ex_flags != NULL)
2620 free(exp->ex_tag);
2621 if (exp->ex_log_buffer != NULL)
2622 free(exp
2878 nfs4_set_volfh_flags(struct exportdata *exp, char *volfhtypes) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dregcomp.c1737 Perl_pregcomp(pTHX_ char *exp, char *xend, PMOP *pm) argument
1750 if (exp == NULL)
1759 (int)(xend - exp), exp, PL_colors[1]);
1763 RExC_precomp = exp;
1768 RExC_seen_zerolen = *exp == '^' ? -1 : 0;
1773 RExC_parse = exp;
1774 RExC_start = exp;
1800 STRLEN len = xend-exp;
1803 exp
[all...]

Completed in 77 milliseconds

12