Lines Matching defs:is
13 distributed under the License is distributed on an "AS IS" BASIS,
22 sc_int_base.h -- A signed integer whose length is less than 64 bit.
26 The sc_int integer is useful when the user does not need
27 arbitrary precision and the performance is superior to
271 void scan(::std::istream &is=::std::cin);
478 void scan(::std::istream &is=::std::cin);
934 void scan(::std::istream &is=::std::cin);
1046 operator >> (::std::istream &is, sc_int_bitref &a)
1048 a.scan(is);
1049 return is;
1237 operator >> (::std::istream &is, sc_int_subref &a)
1239 a.scan(is);
1240 return is;
1378 operator >> (::std::istream &is, sc_int_base &a)
1380 a.scan(is);
1381 return is;