Searched refs:sstr (Results 1 – 4 of 4) sorted by relevance
82 stringstream sstr; in iostream() local84 sstr << b; in iostream()85 CPPUNIT_ASSERT( sstr.str() == "1000100010001" ); in iostream()88 sstr >> b1; in iostream()96 wstringstream sstr; in iostream() local98 sstr << b; in iostream()99 CPPUNIT_ASSERT( sstr.str() == L"1000100010001" ); in iostream()102 sstr >> b1; in iostream()
220 std::ostringstream sstr; in ReadLinuxLsbRelease() local227 sstr << "DISTRIB_ID=" << line; in ReadLinuxLsbRelease()232 sstr << " DISTRIB_DESCRIPTION=\"" << line << '"'; in ReadLinuxLsbRelease()237 sstr << " DISTRIB_RELEASE=" << line; in ReadLinuxLsbRelease()242 sstr << " DISTRIB_CODENAME=" << line; in ReadLinuxLsbRelease()255 lsb_release_string = sstr.str(); in ReadLinuxLsbRelease()266 std::ostringstream sstr; in ReadLinuxUname() local267 sstr << buf.sysname << " " in ReadLinuxUname()271 return sstr.str(); in ReadLinuxUname()
82 unsigned char *sstr; variable104 sstr = ASN1_STRING_data(pbe->salt);106 memcpy(sstr, salt, saltlen);107 else if (RAND_pseudo_bytes(sstr, saltlen) < 0)
195 std::stringstream sstr;196 if(explicit_precision) sstr.precision(explicit_precision);197 sstr << m.coeff(i,j);198 width = std::max<Index>(width, Index(sstr.str().length()));