Home
last modified time | relevance | path

Searched defs:POS (Results 1 – 5 of 5) sorted by relevance

/netbsd/src/external/gpl3/gdb/dist/sim/common/
Dsim-bits.h130 #define _LSB_SHIFT(WIDTH, POS) (WIDTH - 1 - POS) argument
132 #define _LSB_SHIFT(WIDTH, POS) (POS) argument
136 #define _MSB_SHIFT(WIDTH, POS) (POS) argument
138 #define _MSB_SHIFT(WIDTH, POS) (WIDTH - 1 - POS) argument
209 #define LSBIT8(POS) ((uint8_t) 1 << (POS)) argument
210 #define LSBIT16(POS) ((uint16_t)1 << (POS)) argument
211 #define LSBIT32(POS) ((uint32_t)1 << (POS)) argument
212 #define LSBIT64(POS) ((uint64_t)1 << (POS)) argument
215 #define LSBIT(POS) LSBIT64 (POS) argument
218 #define LSBIT(POS) ((uint32_t)((POS) >= 32 \ argument
[all …]
/netbsd/src/external/gpl3/gdb/dist/sim/ppc/
Dbits.h95 #define BIT4(POS) (1 << _MAKE_SHIFT(4, POS)) argument
96 #define BIT5(POS) (1 << _MAKE_SHIFT(5, POS)) argument
97 #define BIT8(POS) (1 << _MAKE_SHIFT(8, POS)) argument
98 #define BIT10(POS) (1 << _MAKE_SHIFT(10, POS)) argument
99 #define BIT32(POS) _BITn(32, POS) argument
100 #define BIT64(POS) _BITn(64, POS) argument
103 #define BIT(POS) BIT64(POS) argument
105 #define BIT(POS) (((POS) < 32) ? 0 : _BITn(32, (POS)-32)) argument
250 #define BLIT32(V, POS, BIT) \ argument
/netbsd/src/external/mit/lua/dist/src/
Dlobject.c594 #define POS "\"]" macro
/netbsd/src/external/gpl3/gdb/dist/sim/arm/
Darmemu.h66 #define POS(i) ( (~(i)) >> 31 ) macro
/netbsd/src/external/gpl3/binutils/dist/gas/config/
Dtc-tic6x.c3764 #define MODIFY_VALUE(NEWVAL, VALUE, SHIFT, POS, BITS) \ argument