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

1 2 3 4 5 6 7

  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
ldexp.c 34 * double ldexp (value, exp)
36 * int exp;
38 * Ldexp returns value * 2**exp, if that result is in range.
56 ldexp(value, exp)
58 register int exp;
62 if (exp == 0 || value == 0.0) /* nothing to do for zero */
69 if (exp > 0) {
70 if (exp + old_exp > MAXBEXP) { /* overflow */
77 for ( ; exp > MAXSHIFT; exp -= MAXSHIFT
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/prof/common/
debug.h 43 #define DEBUG_EXP(exp) exp; fflush(stdout)
46 #define NO_DEBUG(exp)
51 #define DEBUG_EXP(exp)
54 #define NO_DEBUG(exp)
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
lexp10.c 37 lexp10(dl_t exp)
43 while (exp.dl_hop != 0 || exp.dl_lop != 0) {
45 exp = lsub(exp, lone);
_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/lib/libast/common/uwin/
cbrt.c 34 return(exp(log(x)/3.0));
  /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/cmd/perl/5.8.4/distrib/ext/Digest/MD5/t/
utf8.t 25 my $exp = ord "A" == 193 ? # EBCDIC
30 print "not " unless md5_hex($str) eq $exp;
34 print "not " unless md5_hex("foo\xFF") eq $exp;
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
exp.t 3 # $RCSfile: exp.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:50 $
12 $s = exp(1);
15 if (exp(log(1)) == 1) {print "ok 3\n";} else {print "not ok 3\n";}
24 $s = exp($x1);
27 if (exp(log($x1)) == 1) {print "ok 6\n";} else {print "not ok 6\n";}
  /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/libshell/common/tests/
sigchld.sh 84 exp='running=0 maxrunning='$jobmax
85 [[ $got == $exp ]] || err_exit "SIGCHLD trap queueing failed -- expected '$exp', got '$got'"
108 exp='c\nc 3 3\nb\nb 2 2\na\na 1 1'
109 [[ $got == $exp ]] || err_exit "SIGCHLD trap queueing failed -- expected $(printf %q "$exp"), got $(printf %q "$got")"
path.sh 166 do exp="$cmd found"
167 print print $exp > $cmd
170 [[ $got == $exp ]] && err_exit "$cmd as last command should not find ./$cmd with PATH=/dev/null"
172 [[ $got == $exp ]] && err_exit "$cmd should not find ./$cmd with PATH=/dev/null"
173 exp=$PWD/./$cmd
175 [[ $got == $exp ]] || err_exit "whence $cmd should find ./$cmd with PATH=/dev/null"
176 exp=$PWD/$cmd
178 [[ $got == $exp ]] || err_exit "whence \$PWD/$cmd should find ./$cmd with PATH=/dev/null"
181 exp=''
183 [[ $got == $exp ]] || err_exit "whence ./$cmd failed -- expected '$exp', got '$got'
    [all...]
cubetype.sh 57 exp=3 got=${b.x}
58 [[ "$got" == "$exp" ]] || err_exit "\${b.x} incorrect for iteration $i -- expected $exp, got '$got'"
59 exp=5 got=$(( b.len ))
60 (( got == exp )) || err_exit "b.len incorrect for iteration $i -- expected $exp, got '$got = sqrt(${b.x}*${b.x}+${b.y}*${b.y})'"
61 exp=5 got=${b.len}
62 [[ "$got" == "$exp" ]] || err_exit "\${b.len} incorrect for iteration $i -- expected $exp, got '$got = sqrt(${b.x}*${b.x}+${b.y}*${b.y})'"
63 exp=box1 got=${b.name
    [all...]
subshell.sh 166 exp=$3
173 elif [[ "$got" != "$exp" ]]
174 then EXP=$(printf %q "$exp")
176 err_exit "${TEST_shell/*-c/\$SHELL -c} ${TEST_unset:+unset }${TEST_fork:+fork }$txt command substitution failed -- expected $EXP, got $GOT"
258 exp=0
265 exit '$exp$'
268 [[ $got == $exp ]] || err_exit "getopts --man runtime callout with nonzero exit terminates shell -- expected '$exp', got '$got'"
269 exp=o
    [all...]
coprocess.sh 106 exp=Done
107 print -p $'print hello | cat\nprint '$exp
111 if [[ $got != $exp ]]
112 then err_exit "${SHELL-ksh} coprocess io failed -- got '$got', expected '$exp'"
245 exp=ksh
251 [[ $got == $exp ]] || err_exit "coshell(3) identification sequence failed -- expected '$exp', got '$got'"
259 exp=ok
267 [[ $got == $exp ]] || err_exit "main coprocess main query failed -- expected $exp, got '$got'
    [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/uts/sun4u/starcat/sys/post/
scat_pa_space.h 49 #define EXP_PA_ADDR(exp) (exp << 28)
64 * The slice to exp mapping is not always 1-1, swaps may occur
  /onnv/onnv-gate/usr/src/lib/libc/port/fp/
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...]
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 */
aconvert.c 43 * corresponding base two exponent is passed back in *exp.
46 * and *exp is set to zero. If arg is infinite or NaN, __infnanstring
47 * is called to place an appropriate string in buf, and *exp is set to
56 __aconvert(double arg, int ndigits, int *exp, int *sign, char *buf)
72 *exp = 0;
81 *exp = 0;
99 *exp = (ha >> 20) - 0x3ff - 1074;
101 *exp = (ha >> 20) - 0x3ff;
116 (*exp)++;
137 __qaconvert(long double *arg, int ndigits, int *exp, int *sign, char *buf
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/port/i18n/
plural_parser.c 47 0x00100002, /* EXP */
91 stack_push(struct stack *stk, struct expr *exp)
95 printf(" type: %s\n", type_name[GETTYPE(exp->op)]);
96 printf(" flag: %s\n", type_name[GETTYPE(exp->flag)]);
99 stk->ptr[stk->index++] = exp;
102 freeexpr(exp);
107 return (exp);
246 reduce(struct expr **nexp, unsigned int n, struct expr *exp, struct stack *stk)
260 exp1 = exp;
274 exp2 = exp;
459 struct expr *exp, *nexp, *exp_op, *ret; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/t/
fallback.t 3 # test 'fallback' for overload cos/sin/atan2/exp
46 ok (exp($bi), exp(1));
53 ok (exp($bf), exp(1));
  /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...]

Completed in 7528 milliseconds

1 2 3 4 5 6 7