Lines Matching refs:b1

46     sc_bit b1(1);
65 cout << bdef << bf << bt << b0 << b1 << bc0 << bc1 << blc0 << blc1
148 b_not(bx, b1);
151 cout << (b0|b0) << (b0|b1) << (b1|b0) << (b1|b1) << endl;
152 cout << (b0&b0) << (b0&b1) << (b1&b0) << (b1&b1) << endl;
153 cout << (b0^b0) << (b0^b1) << (b1^b0) << (b1^b1) << endl;
155 cout << (b0|0) << (b0|1) << (b1|0) << (b1|1) << endl;
156 cout << (b0&0) << (b0&1) << (b1&0) << (b1&1) << endl;
157 cout << (b0^0) << (b0^1) << (b1^0) << (b1^1) << endl;
159 cout << (b0|'0') << (b0|'1') << (b1|'0') << (b1|'1') << endl;
160 cout << (b0&'0') << (b0&'1') << (b1&'0') << (b1&'1') << endl;
161 cout << (b0^'0') << (b0^'1') << (b1^'0') << (b1^'1') << endl;
163 cout << (b0|true) << (b0|false) << (b1|true) << (b1|false) << endl;
164 cout << (b0&true) << (b0&false) << (b1&true) << (b1&false) << endl;
165 cout << (b0^true) << (b0^false) << (b1^true) << (b1^false) << endl;
167 cout << (0|b0) << (0|b1) << (1|b0) << (1|b1) << endl;
168 cout << (0&b0) << (0&b1) << (1&b0) << (1&b1) << endl;
169 cout << (0^b0) << (0^b1) << (1^b0) << (1^b1) << endl;
171 cout << ('0'|b0) << ('0'|b1) << ('1'|b0) << ('1'|b1) << endl;
172 cout << ('0'&b0) << ('0'&b1) << ('1'&b0) << ('1'&b1) << endl;
173 cout << ('0'^b0) << ('0'^b1) << ('1'^b0) << ('1'^b1) << endl;
175 cout << (false|b0) << (false|b1) << (true|b0) << (true|b1) << endl;
176 cout << (false&b0) << (false&b1) << (true&b0) << (true&b1) << endl;
177 cout << (false^b0) << (false^b1) << (true^b0) << (true^b1) << endl;
179 cout << b_or(b0,b0) << b_or(b0,b1) << b_or(b1,b0) << b_or(b1,b1) << endl;
180 cout << b_and(b0,b0) << b_and(b0,b1) << b_and(b1,b0) << b_and(b1,b1)
182 cout << b_xor(b0,b0) << b_xor(b0,b1) << b_xor(b1,b0) << b_xor(b1,b1)
185 cout << b_or(b0,0) << b_or(b0,1) << b_or(b1,0) << b_or(b1,1) << endl;
186 cout << b_and(b0,0) << b_and(b0,1) << b_and(b1,0) << b_and(b1,1) << endl;
187 cout << b_xor(b0,0) << b_xor(b0,1) << b_xor(b1,0) << b_xor(b1,1) << endl;
189 cout << b_or(b0,'0') << b_or(b0,'1') << b_or(b1,'0') << b_or(b1,'1')
191 cout << b_and(b0,'0') << b_and(b0,'1') << b_and(b1,'0') << b_and(b1,'1')
193 cout << b_xor(b0,'0') << b_xor(b0,'1') << b_xor(b1,'0') << b_xor(b1,'1')
196 cout << b_or(b0,false) << b_or(b0,true) << b_or(b1,false) << b_or(b1,true)
198 cout << b_and(b0,false) << b_and(b0,true) << b_and(b1,false)
199 << b_and(b1,true) << endl;
200 cout << b_xor(b0,false) << b_xor(b0,true) << b_xor(b1,false)
201 << b_xor(b1,true) << endl;
203 cout << b_or(0,b0) << b_or(0,b1) << b_or(1,b0) << b_or(1,b1) << endl;
204 cout << b_and(0,b0) << b_and(0,b1) << b_and(1,b0) << b_and(1,b1) << endl;
205 cout << b_xor(0,b0) << b_xor(0,b1) << b_xor(1,b0) << b_xor(1,b1) << endl;
207 cout << b_or('0',b0) << b_or('0',b1) << b_or('1',b0) << b_or('1',b1)
209 cout << b_and('0',b0) << b_and('0',b1) << b_and('1',b0) << b_and('1',b1)
211 cout << b_xor('0',b0) << b_xor('0',b1) << b_xor('1',b0) << b_xor('1',b1)
214 cout << b_or(false,b0) << b_or(false,b1) << b_or(true,b0) << b_or(true,b1)
216 cout << b_and(false,b0) << b_and(false,b1) << b_and(true,b0)
217 << b_and(true,b1) << endl;
218 cout << b_xor(false,b0) << b_xor(false,b1) << b_xor(true,b0)
219 << b_xor(true,b1) << endl;
221 b_or(b, b0, b1);
223 b_and(b, b0, b1);
225 b_xor(b, b0, b1);