Lines Matching defs:const

61     Pl011(const Pl011Params *p);
63 void serialize(CheckpointOut &cp) const override;
113 inline uint16_t maskInt() const { return rawInt & imsc; }
119 static const uint64_t AMBA_ID = ULL(0xb105f00d00341011);
120 static const int UART_DR = 0x000;
121 static const int UART_RSR = 0x004;
122 static const int UART_ECR = 0x004;
123 static const int UART_FR = 0x018;
124 static const int UART_FR_CTS = 0x001;
125 static const int UART_FR_RXFE = 0x010;
126 static const int UART_FR_TXFF = 0x020;
127 static const int UART_FR_RXFF = 0x040;
128 static const int UART_FR_TXFE = 0x080;
129 static const int UART_IBRD = 0x024;
130 static const int UART_FBRD = 0x028;
131 static const int UART_LCRH = 0x02C;
132 static const int UART_CR = 0x030;
133 static const int UART_IFLS = 0x034;
134 static const int UART_IMSC = 0x038;
135 static const int UART_RIS = 0x03C;
136 static const int UART_MIS = 0x040;
137 static const int UART_ICR = 0x044;
138 static const int UART_DMACR = 0x048;
140 static const uint16_t UART_RIINTR = 1 << 0;
141 static const uint16_t UART_CTSINTR = 1 << 1;
142 static const uint16_t UART_CDCINTR = 1 << 2;
143 static const uint16_t UART_DSRINTR = 1 << 3;
144 static const uint16_t UART_RXINTR = 1 << 4;
145 static const uint16_t UART_TXINTR = 1 << 5;
146 static const uint16_t UART_RTINTR = 1 << 6;
147 static const uint16_t UART_FEINTR = 1 << 7;
148 static const uint16_t UART_PEINTR = 1 << 8;
149 static const uint16_t UART_BEINTR = 1 << 9;
150 static const uint16_t UART_OEINTR = 1 << 10;
178 BaseGic * const gic;
181 const bool endOnEOT;
184 const int intNum;
187 const Tick intDelay;