Lines Matching defs:index
368 int first_empty; /**< 1-st empty entry (index) */
369 int last_used; /**< last used entry (index) */
448 u8 index;
709 u32 processed; /* Internal index to last handled Rx packet */
710 u32 read; /* Shared index to newest available Rx buffer */
711 u32 write; /* Shared index to oldest written Rx packet */
846 static inline u8 ipw_get_scan_type(struct ipw_scan_request_ext *scan, u8 index)
848 if (index % 2)
849 return scan->scan_type[index / 2] & 0x0F;
851 return (scan->scan_type[index / 2] & 0xF0) >> 4;
855 u8 index, u8 scan_type)
857 if (index % 2)
858 scan->scan_type[index / 2] =
859 (scan->scan_type[index / 2] & 0xF0) | (scan_type & 0x0F);
861 scan->scan_type[index / 2] =
862 (scan->scan_type[index / 2] & 0x0F) |