HomeSort by relevance Sort by last modified time
    Searched defs:exp (Results 1 - 25 of 60) sorted by null

1 2 3

  /netvirt/usr/src/lib/libast/common/port/
astmath.c 41 int exp = 0; local
45 return ldexpl(value, exp) != 0;
48 return ldexp(value, exp) != 0;
51 return frexpl(value, &exp) != 0;
54 return frexp(value, &exp) != 0;
  /netvirt/usr/src/lib/libast/common/sfio/
sfdlen.c 39 int exp; local
46 v = frexpl(v,&exp);
47 else exp = 0;
57 return 1 + sfulen(exp) + w;
_sfputd.c 40 int exp; local
59 v = frexpl(v,&exp);
60 else exp = 0;
62 /* code the sign of v and exp */
63 if((w = exp) < 0)
68 /* write out the signs and the exp */
sfgetd.c 37 reg int p, sign, exp; local
42 if((sign = sfgetc(f)) < 0 || (exp = (int)sfgetu(f)) < 0)
72 v = ldexpl(v,(sign&02) ? -exp : exp);
  /netvirt/usr/src/lib/libc/port/fp/
finite.c 82 int sign, exp; local
84 exp = EXPONENT(x);
86 if (exp == 0) { /* de-normal or zero */
92 if (exp == MAXEXP) { /* infinity or NaN */
fpparts.h 48 unsigned exp :11; member in struct:__anon2724::__anon2725
54 unsigned exp :11; member in struct:__anon2724::__anon2726
70 unsigned exp :8; member in struct:__anon2728::__anon2729
75 unsigned exp :8; member in struct:__anon2728::__anon2730
92 unsigned exp :11; member in struct:__anon2731::__anon2732
99 unsigned exp :11; member in struct:__anon2731::__anon2733
113 unsigned exp :8; member in struct:__anon2735::__anon2736
119 unsigned exp :8; member in struct:__anon2735::__anon2737
129 #define EXPONENT(X) (((_dval *)&(X))->fparts.exp)
147 #define FEXPONENT(X) (((_fval *)&(X))->fparts.exp)
    [all...]
  /netvirt/usr/src/lib/libc/port/gen/
_ftoll.c 49 int exp; /* exponent */ local
67 exp = ((i0 >> 20) & 0x7ff) - 0x3ff;
68 if (exp < 0) {
70 } else if (exp > 62) {
74 if (i0 >= 0 || exp != 63 || (i0 & 0xfffff) != 0 || i1 != 0) {
95 * Shift right by (62 - exp) bits.
97 switch (exp) {
105 if (exp > 30) {
106 m1 = (m0 << (exp - 30)) |
107 (m1 >> (62 - exp)) & ~(-1 << (exp - 30))
134 int exp; \/* exponent *\/ local
219 int exp; \/* exponent *\/ local
    [all...]
_ftoull.c 53 int exp; /* exponent */ local
71 exp = ((i0 >> 20) & 0x7ff) - 0x3ff;
72 if (exp < 0) {
75 } else if (exp > 63) {
95 * Shift right by (63 - exp) bits.
97 switch (exp) {
105 if (exp > 31) {
106 m1 = (m0 << (exp - 31)) | (m1 >> (63 - exp));
107 m0 = (m0 >> (63 - exp));
141 int exp; \/* exponent *\/ local
229 int exp; \/* exponent *\/ local
    [all...]
  /netvirt/usr/src/cmd/auditreduce/
regex2.c 41 struct exp { struct
53 static struct exp *p_exp = NULL; /* list of individual expressions */
79 p_exp = (struct exp *)malloc(nexp * sizeof (struct exp));
137 (void) printf("exp #%d:", i+1);
  /netvirt/usr/src/cmd/sh/
test.c 60 return(exp() ? 0 : 1);
79 exp(void) function
89 return(p1 | exp());
133 p1 = exp();
  /netvirt/usr/src/lib/libast/common/uwin/
exp.c 39 static char sccsid[] = "@(#)exp.c 8.1 (Berkeley) 6/4/93";
42 /* EXP(X)
59 * 2. Compute exp(r) by
61 * exp(r) = 1 + r + r*R1/(2-R1),
65 * 3. exp(x) = 2^k * exp(r) .
68 * exp(INF) is INF, exp(NaN) is NaN;
69 * exp(-INF)= 0;
70 * for finite argument, only exp(0)=1 is exact
123 extern double exp(x) function
    [all...]
  /netvirt/usr/src/cmd/rexd/
where.c 146 struct share *exp; local
224 while (getshare(mfp, &exp) > 0)
225 if (len = preflen(qualpn, exp->sh_path))
228 strncpy(bestname, exp->sh_path,
  /netvirt/usr/src/ucbcmd/test/
test.c 32 static int exp(void);
59 status = (exp() ? 0 : 1);
79 exp(void) function
88 return (p1 | exp());
129 p1 = exp();
  /netvirt/usr/src/cmd/fmli/sys/
coproc.c 78 char *exp; local
106 if (!(exp = Cotable[Cur_corec].expect)) {
112 if (strncmp(buf, exp, strlen(exp)) == 0)
373 register char *exp; local
382 if (!(exp = Cotable[Cur_corec].expect)) {
388 if (strncmp(buf, exp, strlen(exp)) == 0)
test.c 83 return(exp() ? SUCCESS : FAIL);
114 exp(void) function
124 return(p1 | exp());
169 p1 = exp();
  /netvirt/usr/src/cmd/mdb/intel/mdb/
proc_amd64dep.c 439 uint_t exp; local
449 exp = fpru.reg.exponent & 0x7fff;
453 } else if (exp == 0) {
461 } else if (exp == 0x7fff) {
  /netvirt/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
Expression.java 97 Expression exp = null; local
102 if ((exp = KVOpExpression.valueOf(raw)) == null)
103 if ((exp = KVExpression.valueOf(raw)) == null)
104 exp = KExpression.valueOf(raw);
105 if (exp == null)
108 return (exp);
252 KVOpExpression exp = null; local
267 exp = new KVOpExpression(imp, m.group(3),
270 return (exp);
428 KVExpression exp = null local
579 KExpression exp = null; local
    [all...]
  /netvirt/usr/src/lib/krb5/kadm5/srv/
svr_iters.c 24 * $Header: /cvs/krbdev/krb5/src/lib/kadm5/srv/svr_iters.c,v 1.6 2003/01/12 18:17:02 epeisach Exp $
28 static char *rcsid = "$Header: /cvs/krbdev/krb5/src/lib/kadm5/srv/svr_iters.c,v 1.6 2003/01/12 18:17:02 epeisach Exp $";
60 char *exp; member in struct:iter_data
203 char *exp,
216 if (exp == NULL)
217 exp = "*";
221 if ((ret = glob_to_regexp(exp, princ ? handle->params.realm : NULL,
253 ret = kdb_iter_entry(handle, exp, get_princs_iter, (void *) &data);
255 ret = krb5_db_iter_policy(handle->context, exp, get_pols_iter, (void *)&data);
277 char *exp,
    [all...]
  /netvirt/usr/src/lib/libnsl/rpc/
xdr_float.c 80 unsigned int exp : 8; member in struct:ieee_single
91 unsigned int exp : 8; member in struct:vax_single
128 if ((vs.exp == 1) || (vs.exp == 2)) {
130 is.exp = 0;
133 is.mantissa >>= 3 - vs.exp;
134 is.mantissa += (1 << (20 + vs.exp));
142 (vs.exp == lim->s.exp) &&
148 is.exp = vs.exp - VAX_SNG_BIAS + IEEE_SNG_BIAS
293 unsigned int exp : 11; member in struct:ieee_double
301 unsigned int exp : 8; member in struct:vax_double
    [all...]
  /netvirt/usr/src/lib/libresolv2/common/cylink/
math.c 723 struct BigNum dest, n, exp, mod; local
729 bnBegin(&exp);
737 exp.ptr = Y;
738 exp.size = Y_bytes/sizeof(ord);
739 exp.allocated = Y_bytes/sizeof(ord);
752 &exp, &mod);
  /netvirt/usr/src/lib/libscf/common/
scf_type.c 179 char exp[] = { local
197 if (regex(exp, str, uri[URI_SCHEME], uri[URI_AUTHORITY], uri[URI_PATH],
  /netvirt/usr/src/uts/common/os/
acct.c 351 int exp = 0, round = 0; local
354 exp++;
362 exp++;
366 if (exp > 7) {
369 exp = 7;
372 return ((exp << 13) + t);
  /netvirt/usr/src/cmd/audio/utilities/
g721.c 181 short mag, exp; /* FLOAT A */ local
306 exp = _fmultanexp[mag];
308 (exp << 6) + ((mag << 6) >> exp) :
309 (exp << 6) + ((mag << 6) >> exp) - 0x400;
317 exp = _fmultanexp[sr];
318 state_ptr->sr[0] = (exp << 6) + ((sr << 6) >> exp);
321 exp = _fmultanexp[mag]
375 short exp; \/* Integer part of base 2 log of magnitude of 'd'. *\/ local
    [all...]
  /netvirt/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/lib/
service.c 659 wordexp_t exp; local
682 ret = wordexp(line, &exp, flags);
688 wordfree(&exp);
693 jlist = (*env)->NewObjectArray(env, exp.we_wordc, str_class, NULL);
696 wordfree(&exp);
701 for (i = 0; i < exp.we_wordc; i++) {
702 jarg = dd_native_to_jstring(env, exp.we_wordv[i]);
714 wordfree(&exp);
  /netvirt/usr/src/cmd/csh/
sh.exp.c 15 #pragma ident "@(#)sh.exp.c 1.9 06/05/18 SMI"
100 exp(tchar ***vp) function
103 tprintf("TRACE- exp()\n");

Completed in 1260 milliseconds

1 2 3