Home | History | Annotate | Download | only in processor

Lines Matching defs:stream2

315   binarystream stream2;
317 stream2 << (uint32_t)0 << (uint64_t)2
320 string s2 = stream2.str();
328 binarystream stream2;
329 stream2.str(stream.str());
331 stream2 >> s;
332 EXPECT_FALSE(stream2.eof());
335 stream2.str(stream.str());
336 stream2.rewind();
337 stream2 >> s;
338 EXPECT_FALSE(stream2.eof());