Go to the documentation of this file.
17 #ifndef _RELOC_TABLE_H_
18 #define _RELOC_TABLE_H_
22 #include <linux/types.h>
86 #define RFV_POSN(aaa) ((aaa) & 0xF)
87 #define RFV_WIDTH(aaa) (((aaa) >> 4) & 0x3F)
88 #define RFV_ACTION(aaa) ((aaa) >> 10)
90 #define RFV_SIGN(iii) (((iii) >> 2) & 0x3)
91 #define RFV_SYM(iii) (((iii) >> 4) & 0x3)
92 #define RFV_STK(iii) (((iii) >> 6) & 0x3)
93 #define RFV_ACCS(iii) ((iii) & 0x3)
96 #define RFV_SCALE(iii) ((iii) >> 11)
97 #define RFV_BIGOFF(iii) (((iii) >> 8) & 0x7)
99 #define RFV_BIGOFF(iii) ((iii) >> 8)