Searched refs:exp (Results 1 - 11 of 11) sorted by relevance

/xnu-2422.115.4/tools/tests/libMicro/
H A Dexp.c32 * test exp performance (should add range check)
45 (void) sprintf(lm_usage, "note: measures exp()");
62 t += exp(value);
63 t += exp(value + 1.0);
64 t += exp(value + 2.0);
65 t += exp(value + 3.0);
66 t += exp(value + 4.0);
67 t += exp(value + 5.0);
68 t += exp(value + 6.0);
69 t += exp(valu
[all...]
H A DMakefile.benchmarks49 exp \
H A Dbench.sh261 exp $OPTS -N "exp" -I 20 -B 100000
H A Dcoreos_bench.sh287 exp $OPTS -N "exp" -I 20 -B 100000
H A Dembd_bench.sh267 exp $OPTS -N "exp" -I 20 -B 100000
/xnu-2422.115.4/bsd/kern/
H A Dkern_acct.c320 int exp, rnd; local
322 exp = 0;
330 exp++;
336 exp++;
340 exp <<= MANTSIZE; /* Shift the exponent into place */
341 exp += s; /* and add on the mantissa. */
342 return (exp);
H A Dkern_sysctl.c1622 fill_user32_externproc(proc_t p, struct user32_extern_proc *__restrict exp) argument
1624 exp->p_starttime.tv_sec = p->p_start.tv_sec;
1625 exp->p_starttime.tv_usec = p->p_start.tv_usec;
1626 exp->p_flag = p->p_flag;
1628 exp->p_flag |= P_TRACED;
1630 exp->p_flag |= P_PPWAIT;
1632 exp->p_flag |= P_WEXIT;
1633 exp->p_stat = p->p_stat;
1634 exp->p_pid = p->p_pid;
1635 exp
1672 fill_user64_externproc(proc_t p, struct user64_extern_proc *__restrict exp) argument
[all...]
/xnu-2422.115.4/bsd/security/audit/
H A Daudit_bsd.h43 #define KASSERT(exp, msg) do { \
44 if (__builtin_expect(!(exp), 0)) { \
51 #define KASSERT(exp, msg) do { \
52 if (__builtin_expect(!(exp), 0)) \
/xnu-2422.115.4/config/
H A DMakefile140 $(OBJPATH)/kernel-kpi.exp: $(EXPORTS_FILES)
145 build_mach_kernel_exports: $(OBJPATH)/kernel-kpi.exp
/xnu-2422.115.4/bsd/sys/
H A Dsystm.h149 #define KASSERT(exp,msg)
/xnu-2422.115.4/osfmk/console/
H A Dvideo_console.c2105 unsigned long long exp; local
2144 exp = back;
2145 exp = (((((exp & 0x3FF003FF) * data) + 0x0FF000FF) >> 8) & 0x3FF003FF)
2146 | (((((exp & 0x000FFC00) * data) + 0x0003FC00) >> 8) & 0x000FFC00);
2147 out = (unsigned int)exp;

Completed in 102 milliseconds