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

/darwin-on-arm/xnu/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
/darwin-on-arm/xnu/bsd/netinet/
H A Dip_id.c102 pmod(u_int16_t gen, u_int16_t exp, u_int16_t mod) argument
105 pmod(gen, exp, mod)
106 u_int16_t gen, exp, mod;
113 u = exp;
/darwin-on-arm/xnu/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.c1615 fill_user32_externproc(proc_t p, struct user32_extern_proc *__restrict exp) argument
1617 exp->p_starttime.tv_sec = p->p_start.tv_sec;
1618 exp->p_starttime.tv_usec = p->p_start.tv_usec;
1619 exp->p_flag = p->p_flag;
1621 exp->p_flag |= P_TRACED;
1623 exp->p_flag |= P_PPWAIT;
1625 exp->p_flag |= P_WEXIT;
1626 exp->p_stat = p->p_stat;
1627 exp->p_pid = p->p_pid;
1628 exp
1665 fill_user64_externproc(proc_t p, struct user64_extern_proc *__restrict exp) argument
[all...]
/darwin-on-arm/xnu/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)) \
/darwin-on-arm/xnu/bsd/sys/
H A Dsystm.h149 #define KASSERT(exp,msg)
/darwin-on-arm/xnu/config/
H A DMakefile229 $(SOURCE)/generate_linker_exports.sh $(OBJPATH)/kernel-kpi.exp \
232 $(SOURCE)/generate_linker_exports.sh $(OBJPATH)/kernel-kpi.exp \
/darwin-on-arm/xnu/osfmk/console/
H A Dvideo_console.c2127 unsigned long long exp; local
2166 exp = back;
2167 exp = (((((exp & 0x3FF003FF) * data) + 0x0FF000FF) >> 8) & 0x3FF003FF)
2168 | (((((exp & 0x000FFC00) * data) + 0x0003FC00) >> 8) & 0x000FFC00);
2169 out = (unsigned int)exp;

Completed in 43 milliseconds