Lines Matching refs:_var

1408 #define GET_BITS(_var, _index, _width)					\  argument
1409 (((_var) >> (_index)) & ((0x1 << (_width)) - 1))
1411 #define SET_BITS(_var, _index, _width, _val) \ argument
1413 (_var) &= ~(((0x1 << (_width)) - 1) << (_index)); \
1414 (_var) |= (((_val) & ((0x1 << (_width)) - 1)) << (_index)); \
1417 #define GET_BITS_LE(_var, _index, _width) \ argument
1418 ((le32_to_cpu((_var)) >> (_index)) & ((0x1 << (_width)) - 1))
1420 #define SET_BITS_LE(_var, _index, _width, _val) \ argument
1422 (_var) &= cpu_to_le32(~(((0x1 << (_width)) - 1) << (_index))); \
1423 (_var) |= cpu_to_le32((((_val) & \
1435 #define XGMAC_GET_BITS(_var, _prefix, _field) \ argument
1436 GET_BITS((_var), \
1440 #define XGMAC_SET_BITS(_var, _prefix, _field, _val) \ argument
1441 SET_BITS((_var), \
1445 #define XGMAC_GET_BITS_LE(_var, _prefix, _field) \ argument
1446 GET_BITS_LE((_var), \
1450 #define XGMAC_SET_BITS_LE(_var, _prefix, _field, _val) \ argument
1451 SET_BITS_LE((_var), \
1535 #define XPCS_GET_BITS(_var, _prefix, _field) \ argument
1536 GET_BITS((_var), \
1540 #define XPCS_SET_BITS(_var, _prefix, _field, _val) \ argument
1541 SET_BITS((_var), \
1560 #define XSIR_GET_BITS(_var, _prefix, _field) \ argument
1561 GET_BITS((_var), \
1565 #define XSIR_SET_BITS(_var, _prefix, _field, _val) \ argument
1566 SET_BITS((_var), \
1636 #define XP_GET_BITS(_var, _prefix, _field) \ argument
1637 GET_BITS((_var), \
1641 #define XP_SET_BITS(_var, _prefix, _field, _val) \ argument
1642 SET_BITS((_var), \
1669 #define XI2C_GET_BITS(_var, _prefix, _field) \ argument
1670 GET_BITS((_var), \
1674 #define XI2C_SET_BITS(_var, _prefix, _field, _val) \ argument
1675 SET_BITS((_var), \