Lines Matching defs:index
315 * Defined for ring index operations
316 * ASSERT(index < limit)
321 #define NEXT_INDEX(index, step, limit) (((index) + (step)) < (limit) ? \
322 (index) + (step) : (index) + (step) - (limit))
323 #define PREV_INDEX(index, step, limit) ((index) >= (step) ? \
324 (index) - (step) : (index) + (limit) - (step))
458 uint32_t index; /* Ring index */
459 uint32_t intr_vector; /* Interrupt vector index */
485 uint32_t tcb_head; /* Head index of free list */
486 uint32_t tcb_tail; /* Tail index of free list */
573 uint32_t index; /* Ring index */
574 uint32_t group_index; /* Group index */
575 uint32_t hw_index; /* h/w ring index */
576 uint32_t intr_vector; /* Interrupt vector index */
603 uint32_t index; /* Group index */