Searched refs:step (Results 1 - 6 of 6) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/netinet/
H A Din_var.h279 * Macro to step through all of the in_multi records, one at a time.
280 * The current position is remembered in "step", which the caller must
281 * provide. IN_FIRST_MULTI(), below, must be called to initialize "step"
285 #define IN_NEXT_MULTI(step, inm) \
286 /* struct in_multistep step; */ \
289 if (((inm) = (step).i_inm) != NULL) \
290 (step).i_inm = LIST_NEXT((step).i_inm, inm_link); \
293 #define IN_FIRST_MULTI(step, inm) \
294 /* struct in_multistep step; */ \
[all...]
H A Digmp.c203 struct in_multistep step; local
313 IN_FIRST_MULTI(step, inm);
326 IN_NEXT_MULTI(step, inm);
426 struct in_multistep step; local
437 IN_FIRST_MULTI(step, inm);
447 IN_NEXT_MULTI(step, inm);
/macosx-10.5.8/xnu-1228.15.4/bsd/netinet6/
H A Din6_var.h592 * Macro to step through all of the in6_multi records, one at a time.
593 * The current position is remembered in "step", which the caller must
594 * provide. IN6_FIRST_MULTI(), below, must be called to initialize "step"
598 #define IN6_NEXT_MULTI(step, in6m) \
599 /* struct in6_multistep step; */ \
602 if (((in6m) = (step).i_in6m) != NULL) \
603 (step).i_in6m = (step).i_in6m->in6m_entry.le_next; \
606 #define IN6_FIRST_MULTI(step, in6m) \
607 /* struct in6_multistep step; */ \
[all...]
H A Dmld6.c363 struct in6_multistep step; local
374 IN6_FIRST_MULTI(step, in6m);
384 IN6_NEXT_MULTI(step, in6m);
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/i386/
H A Ddtrace_subr_x86.c94 uint8_t step = uthread->t_dtrace_step; local
114 if (step == 0) {
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/dtrace/
H A Ddtrace.c1719 uint16_t step = DTRACE_LQUANTIZE_STEP(arg);
1723 ASSERT(step != 0);
1734 level = (val - base) / step;
9239 uint16_t step = DTRACE_LQUANTIZE_STEP(desc->dtad_arg);
9245 if (step == 0 || levels == 0)

Completed in 67 milliseconds