Lines Matching refs:_var

1448 #define GET_BITS(_var, _index, _width)					\  argument
1449 (((_var) >> (_index)) & ((0x1 << (_width)) - 1))
1451 #define SET_BITS(_var, _index, _width, _val) \ argument
1453 (_var) &= ~(((0x1 << (_width)) - 1) << (_index)); \
1454 (_var) |= (((_val) & ((0x1 << (_width)) - 1)) << (_index)); \
1457 #define GET_BITS_LE(_var, _index, _width) \ argument
1458 ((le32_to_cpu((_var)) >> (_index)) & ((0x1 << (_width)) - 1))
1460 #define SET_BITS_LE(_var, _index, _width, _val) \ argument
1462 (_var) &= cpu_to_le32(~(((0x1 << (_width)) - 1) << (_index))); \
1463 (_var) |= cpu_to_le32((((_val) & \
1475 #define XGMAC_GET_BITS(_var, _prefix, _field) \ argument
1476 GET_BITS((_var), \
1480 #define XGMAC_SET_BITS(_var, _prefix, _field, _val) \ argument
1481 SET_BITS((_var), \
1485 #define XGMAC_GET_BITS_LE(_var, _prefix, _field) \ argument
1486 GET_BITS_LE((_var), \
1490 #define XGMAC_SET_BITS_LE(_var, _prefix, _field, _val) \ argument
1491 SET_BITS_LE((_var), \
1575 #define XPCS_GET_BITS(_var, _prefix, _field) \ argument
1576 GET_BITS((_var), \
1580 #define XPCS_SET_BITS(_var, _prefix, _field, _val) \ argument
1581 SET_BITS((_var), \
1600 #define XSIR_GET_BITS(_var, _prefix, _field) \ argument
1601 GET_BITS((_var), \
1605 #define XSIR_SET_BITS(_var, _prefix, _field, _val) \ argument
1606 SET_BITS((_var), \
1676 #define XP_GET_BITS(_var, _prefix, _field) \ argument
1677 GET_BITS((_var), \
1681 #define XP_SET_BITS(_var, _prefix, _field, _val) \ argument
1682 SET_BITS((_var), \
1709 #define XI2C_GET_BITS(_var, _prefix, _field) \ argument
1710 GET_BITS((_var), \
1714 #define XI2C_SET_BITS(_var, _prefix, _field, _val) \ argument
1715 SET_BITS((_var), \