Searched refs:mod (Results 1 - 9 of 9) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/netinet/
H A Dip_id.c44 * g = g0^j mod n will be a generator again.
47 * X[n] = a*X[n-1]+b mod m is a Linear Congruential Generator
48 * with a = 7^(even random) mod m,
53 * id[n] = seed xor (g^X[n] mod n)
97 * of 0 - (mod-1)
102 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;
117 s = (s*t) % mod;
119 t = (t*t) % mod;
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/netat/
H A Ddebug.h103 #define dPrintf(mod, lev, p) \
104 if (((mod) & dbgBits.dbgMod) && ((lev) & dbgBits.dbgLev)) {\
108 #define dPrintf(mod, lev, p)
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/dtrace/
H A Dfbt.c254 struct modctl *mod; local
260 for (mod = &modules; mod != NULL; mod = mod->mod_next) {
261 if (strcmp(mod->mod_filename, parent) == 0)
265 if (mod == NULL)
268 if ((pfp = ctf_modopen(mod->mod_mp, &error)) == NULL)
H A Ddtrace.c7113 dtrace_probe_create(dtrace_provider_id_t prov, const char *mod,
7137 probe->dtpr_mod = dtrace_strdup(mod);
7217 dtrace_probe_lookup(dtrace_provider_id_t prid, const char *mod,
7226 pkey.dtpk_mod = mod;
7227 pkey.dtpk_mmatch = mod ? &dtrace_match_string : &dtrace_match_nul;
/macosx-10.5.8/xnu-1228.15.4/bsd/net/
H A Dkpi_protocol.c364 struct proto_family_str *mod = NULL; local
366 TAILQ_FOREACH(mod, &proto_family_head, proto_fam_next) {
367 if ((mod->proto_family == (proto_family & 0xffff))
368 && (mod->if_family == (if_family & 0xffff)))
372 return mod;
H A Dif_disc.c116 disc_modevent(module_t mod, int type, void *data) argument
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/i386/
H A Dfasttrap_isa.c81 #define FASTTRAP_MODRM(mod, reg, rm) (((mod) << 6) | ((reg) << 3) | (rm))
403 uint_t mod = FASTTRAP_MODRM_MOD(instr[start + 1]); local
415 if (mod == 3)
427 if (mod != 3 && rm == 4) {
437 tp->ftt_base = (mod == 0 && base == 5) ?
442 sz = mod == 1 ? 1 : 4;
445 * In 64-bit mode, mod == 0 and r/m == 5
450 if (mod == 0 && rm == 5) {
463 sz = mod
597 uint_t mod = FASTTRAP_MODRM_MOD(instr[rmindex]); local
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/i386/
H A Ddb_disasm.c329 /*21*/ { "mov", TRUE, LONG, op2(DR,E), 0 }, /* since mod == 11 */
1039 int mod, rm, sib, index, ss, disp; local
1041 mod = f_mod(regmodrm);
1044 if (mod == 3) {
1055 switch (mod) {
1080 if (mod != 3 && rm == 4) {
1089 switch (mod) {
1160 int mod; local
1166 mod = f_mod(regmodrm);
1167 if (mod !
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dsocketvar.h526 extern int accept_filt_generic_mod_event(module_t mod, int event, void *data);

Completed in 127 milliseconds