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

1 2 3

  /onnv/onnv-gate/usr/src/lib/libast/common/port/
astmath.c 45 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;
  /onnv/onnv-gate/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
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 */
sfgetd.c 37 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);
  /onnv/onnv-gate/usr/src/lib/libc/port/fp/
finite.c 81 int sign, exp; local
83 exp = EXPONENT(x);
85 if (exp == 0) { /* de-normal or zero */
91 if (exp == MAXEXP) { /* infinity or NaN */
fpparts.h 48 unsigned exp :11; member in struct:__anon3299::__anon3300
54 unsigned exp :11; member in struct:__anon3299::__anon3301
70 unsigned exp :8; member in struct:__anon3303::__anon3304
75 unsigned exp :8; member in struct:__anon3303::__anon3305
92 unsigned exp :11; member in struct:__anon3306::__anon3307
99 unsigned exp :11; member in struct:__anon3306::__anon3308
113 unsigned exp :8; member in struct:__anon3310::__anon3311
119 unsigned exp :8; member in struct:__anon3310::__anon3312
129 #define EXPONENT(X) (((_dval *)&(X))->fparts.exp)
147 #define FEXPONENT(X) (((_fval *)&(X))->fparts.exp)
    [all...]
decimal_bin.c 151 int ids, i, ix, exp, ndigs; local
158 exp = pd->exponent;
162 exp++;
173 d.bexponent = exp;
208 if (exp < 0) {
210 i = exp + ndigs - 1;
338 int n, exp, rounded, e; local
345 exp = pd->exponent;
352 exp += pd->ndigits - 18;
355 * exp must be in the range of the table, and the resul
    [all...]
  /onnv/onnv-gate/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...]
  /onnv/onnv-gate/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);
  /onnv/onnv-gate/usr/src/cmd/sh/
test.c 60 return(exp() ? 0 : 1);
79 exp(void) function
89 return(p1 | exp());
133 p1 = exp();
  /onnv/onnv-gate/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...]
  /onnv/onnv-gate/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,
  /onnv/onnv-gate/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();
  /onnv/onnv-gate/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();
  /onnv/onnv-gate/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) {
  /onnv/onnv-gate/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...]
  /onnv/onnv-gate/usr/src/lib/krb5/kadm5/srv/
svr_iters.c 59 char *exp; member in struct:iter_data
202 char *exp,
215 if (exp == NULL)
216 exp = "*";
220 if ((ret = glob_to_regexp(exp, princ ? handle->params.realm : NULL,
252 ret = kdb_iter_entry(handle, exp, get_princs_iter, (void *) &data);
254 ret = krb5_db_iter_policy(handle->context, exp, get_pols_iter, (void *)&data);
276 char *exp,
280 return kadm5_get_either(1, server_handle, exp, princs, count);
284 char *exp,
    [all...]
  /onnv/onnv-gate/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...]
  /onnv/onnv-gate/usr/src/lib/libscf/common/
scf_type.c 176 char exp[] = { local
194 if (regex(exp, str, uri[URI_SCHEME], uri[URI_AUTHORITY], uri[URI_PATH],
  /onnv/onnv-gate/usr/src/uts/common/os/
acct.c 349 int exp = 0, round = 0; local
352 exp++;
360 exp++;
364 if (exp > 7) {
367 exp = 7;
370 return ((exp << 13) + t);
  /onnv/onnv-gate/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...]
  /onnv/onnv-gate/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);
  /onnv/onnv-gate/usr/src/cmd/csh/
sh.exp.c 100 exp(tchar ***vp) function
103 tprintf("TRACE- exp()\n");

Completed in 960 milliseconds

1 2 3