Searched defs:exp (Results 1 - 14 of 14) sorted by relevance

/ast/src/lib/libast/port/
H A Dastmath.c45 int exp = 0; local
49 return ldexpl(value, exp) != 0;
52 return ldexp(value, exp) != 0;
55 return frexpl(value, &exp) != 0;
58 return frexp(value, &exp) != 0;
/ast/src/cmd/INIT/
H A Dm2.c30 int exp = 0; local
33 r |= ldexp(value, exp) != 0;
34 r |= frexp(value, &exp) != 0;
H A Dm3.c30 int exp = 0; local
33 r |= ldexpl(value, exp) != 0;
34 r |= frexpl(value, &exp) != 0;
/ast/src/lib/libast/sfio/
H A Dsfdlen.c39 int exp; local
46 v = frexpl(v,&exp);
47 else exp = 0;
57 return 1 + sfulen(exp) + w;
H A Dsfgetd.c37 reg int p, sign, exp; local
43 if((sign = sfgetc(f)) < 0 || (exp = (int)sfgetu(f)) < 0)
73 v = ldexpl(v,(sign&02) ? -exp : exp);
H A D_sfputd.c40 int exp; local
60 v = frexpl(v,&exp);
61 else exp = 0;
63 /* code the sign of v and exp */
64 if((w = exp) < 0)
69 /* write out the signs and the exp */
/ast/src/lib/libast/uwin/
H A Dexp.c39 static char sccsid[] = "@(#)exp.c 8.1 (Berkeley) 6/4/93";
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.
73 * exp(
123 extern double exp(x) function
[all...]
/ast/src/cmd/nmake/
H A Dmain.c618 Sfio_t* exp; local
621 exp = 0;
632 if (!exp)
633 exp = sfstropen();
634 if (t = colonlist(exp, s, 0, ' '))
688 if (exp)
689 sfstrclose(exp);
H A Dread.c219 Sfio_t* exp; local
221 exp = sfstropen();
227 while ((t = tokread(b)) && (t = colonlist(exp, t, 0, ' ')))
245 sfstrclose(exp);
H A Dvariable.c762 colonlist(register Sfio_t* sp, register char* s, int exp, register int del) argument
767 if (exp)
H A Dcommand.c702 Sfio_t* exp; local
704 exp = sfstropen();
709 expand(exp, v->value);
710 coexport(state.coshell, p->rule->name, sfstruse(exp));
715 expand(exp, s + 1);
716 coexport(state.coshell, p->rule->name, sfstruse(exp));
720 sfstrclose(exp);
H A Dexpand.c3371 expandops(Sfio_t* xp, char* v, char* ed, int del, int exp) argument
3422 if (exp < 0)
3435 if (exp)
3917 expandall(xp, exp < 0 ? 0 : all);
4188 if (pos->bucket->name == r->name && !(r->dynamic & D_alias) && (exp < 0 || (r->dynamic & all)))
4419 exp++;
4453 expandall(buf[0], exp < 0 ? 0 : all);
4474 int exp; local
4507 exp = 1;
4522 exp
[all...]
/ast/src/lib/libvcodex/Vchuff/
H A Dvchuffgroup.c414 ssize_t ptsz, exp, lnz; local
418 { exp = (exp = (lnz-15)) > 8 ? 8 : exp;
419 ptsz = (1 << exp) * lnz; /* ptsz here is >= 32 */
/ast/src/cmd/ksh93/sh/
H A Dpath.c1421 register int exp = 0, rund = 0; local
1425 exp++;
1435 exp++;
1438 return((exp<<13) + t);

Completed in 157 milliseconds