Home
last modified time | relevance | path

Searched refs:exp (Results 1 – 25 of 231) sorted by path

12345678910

/illumos-gate/usr/src/boot/include/
H A Dmath.h244 double exp(double);
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dzfssubr.c507 vdev_raidz_exp2(uint8_t a, int exp) in vdev_raidz_exp2() argument
512 ASSERT(exp >= 0); in vdev_raidz_exp2()
515 exp += vdev_raidz_log2[a]; in vdev_raidz_exp2()
516 if (exp > 255) in vdev_raidz_exp2()
517 exp -= 255; in vdev_raidz_exp2()
519 return (vdev_raidz_pow2[exp]); in vdev_raidz_exp2()
/illumos-gate/usr/src/boot/sys/sys/
H A Dcdefs.h456 #define __predict_true(exp) __builtin_expect((exp), 1) argument
457 #define __predict_false(exp) __builtin_expect((exp), 0) argument
459 #define __predict_true(exp) (exp) argument
460 #define __predict_false(exp) (exp) argument
/illumos-gate/usr/src/cmd/ast/libast/
H A DMakefile.defs614 uwin/exp.o \
/illumos-gate/usr/src/cmd/ast/libast/amd64/FEATURE/
H A Duwin13 #define _lib_exp 1 /* exp() in default lib(s) */
/illumos-gate/usr/src/cmd/ast/libast/i386/FEATURE/
H A Duwin13 #define _lib_exp 1 /* exp() in default lib(s) */
/illumos-gate/usr/src/cmd/ast/libast/sparc/FEATURE/
H A Duwin13 #define _lib_exp 1 /* exp() in default lib(s) */
/illumos-gate/usr/src/cmd/ast/libast/sparcv9/FEATURE/
H A Duwin13 #define _lib_exp 1 /* exp() in default lib(s) */
/illumos-gate/usr/src/cmd/ast/libshell/amd64/FEATURE/
H A Dmath110 "\001exp", (Math_f)(uintptr_t)expl,
/illumos-gate/usr/src/cmd/ast/libshell/i386/FEATURE/
H A Dmath110 "\001exp", (Math_f)(uintptr_t)expl,
/illumos-gate/usr/src/cmd/ast/libshell/sparc/FEATURE/
H A Dmath110 "\001exp", (Math_f)(uintptr_t)expl,
/illumos-gate/usr/src/cmd/ast/libshell/sparcv9/FEATURE/
H A Dmath110 "\001exp", (Math_f)(uintptr_t)expl,
/illumos-gate/usr/src/cmd/audio/utilities/
H A Dg721.c179 short mag, exp; /* FLOAT A */ in _g721_update() local
304 exp = _fmultanexp[mag]; in _g721_update()
306 (exp << 6) + ((mag << 6) >> exp) : in _g721_update()
307 (exp << 6) + ((mag << 6) >> exp) - 0x400; in _g721_update()
315 exp = _fmultanexp[sr]; in _g721_update()
316 state_ptr->sr[0] = (exp << 6) + ((sr << 6) >> exp); in _g721_update()
319 exp = _fmultanexp[mag]; in _g721_update()
320 state_ptr->sr[0] = (exp << 6) + ((mag << 6) >> exp) - 0x400; in _g721_update()
390 exp = _fmultanexp[dqm >> 1]; in _g721_quantize()
391 mant = ((dqm << 7) >> exp) & 0x7F; /* Fractional portion. */ in _g721_quantize()
[all …]
H A Dg723.c185 short mag, exp; /* Adaptive predictor, FLOAT A */ in _g723_update() local
303 exp = _fmultanexp[mag]; in _g723_update()
305 (exp << 6) + ((mag << 6) >> exp) : in _g723_update()
306 (exp << 6) + ((mag << 6) >> exp) - 0x400; in _g723_update()
314 exp = _fmultanexp[sr]; in _g723_update()
315 state_ptr->sr[0] = (exp << 6) + ((sr << 6) >> exp); in _g723_update()
318 exp = _fmultanexp[mag]; in _g723_update()
319 state_ptr->sr[0] = (exp << 6) + ((mag << 6) >> exp) - 0x400; in _g723_update()
389 exp = _fmultanexp[dqm >> 1]; in _g723_quantize()
390 mant = ((dqm << 7) >> exp) & 0x7F; /* Fractional portion. */ in _g723_quantize()
[all …]
/illumos-gate/usr/src/cmd/auditreduce/
H A Dmain.c546 a_pow(int base, int exp) in a_pow() argument
551 if (exp == 0) { in a_pow()
555 for (i = 0; i < (exp - 1); i++) in a_pow()
H A Dregex2.c37 struct exp { struct
49 static struct exp *p_exp = NULL; /* list of individual expressions */ argument
75 p_exp = (struct exp *)malloc(nexp * sizeof (struct exp));
/illumos-gate/usr/src/cmd/awk/
H A Drun.c1740 u = errcheck(exp(getfval(x)), "exp"); break; in bltin()
/illumos-gate/usr/src/cmd/awk_xpg4/
H A Dawk4.c60 return (realnode(exp(exprreal(na==0 ? field0 : getlist(&np))))); in f_exp()
/illumos-gate/usr/src/cmd/bhyve/test/tests/mevent/
H A Dtestlib.h62 if (!(got cmp exp)) { \
66 #got, got, #cmp, #exp, exp); \
70 #define ASSERT_CHAR_EQ(msg, got, exp) ASSERT_CMP(msg, got, ==, exp, "%c") argument
71 #define ASSERT_INT_EQ(msg, got, exp) ASSERT_CMP(msg, got, ==, exp, "%d") argument
72 #define ASSERT_INT_NEQ(msg, got, exp) ASSERT_CMP(msg, got, !=, exp, "%d") argument
73 #define ASSERT_INT64_EQ(msg, got, exp) ASSERT_CMP(msg, got, ==, exp, "%ld") argument
74 #define ASSERT_INT64_NEQ(msg, got, exp) ASSERT_CMP(msg, got, !=, exp, "%ld") argument
75 #define ASSERT_PTR_EQ(msg, got, exp) ASSERT_CMP(msg, got, ==, exp, "%p") argument
76 #define ASSERT_PTR_NEQ(msg, got, exp) ASSERT_CMP(msg, got, !=, exp, "%p") argument
79 if (strcmp(got, exp) != 0) { \
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/
H A Dikeadm.c1632 time_t current, remain, exp; in print_lifetime() local
1668 exp = (time_t)sp->p1stat_start + (time_t)xfp->p1xf_max_secs; in print_lifetime()
1669 remain = exp - current; in print_lifetime()
1670 if (strftime(tbuf, TBUF_SIZE, NULL, localtime(&exp)) == 0) in print_lifetime()
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_slp.c489 time_t exp; in slpv2_url() local
508 exp = time(0) + lifetime; in slpv2_url()
512 length, lifetime, ctime(&exp)); in slpv2_url()
517 cnt, length, lifetime, ctime(&exp)); in slpv2_url()
1727 time_t exp; in slpv1_url() local
1737 exp = time(0) + lifetime; in slpv1_url()
1739 length, lifetime, ctime(&exp)); in slpv1_url()
/illumos-gate/usr/src/cmd/csh/
H A DMakefile33 sh.dir.o sh.dol.o sh.err.o sh.exec.o sh.exp.o\
H A Dsh.exp.c100 exp(tchar ***vp) in exp() function
H A Dsh.func.c351 i = exp(&v); in doif()
497 set(S_status, putn(exp(&v))); in doexit()
571 status = !exp(&v); in dowhile()
/illumos-gate/usr/src/cmd/csh/i386/
H A DMakefile44 HDDEP = sh.o sh.dir.o sh.dol.o sh.err.o sh.exec.o sh.exp.o sh.file.o \
49 sh.exec.o sh.exp.o sh.file.o sh.func.o sh.glob.o sh.hist.o sh.init.o \

12345678910