Home | History | Annotate | Download | only in optimizing

Lines Matching defs:buffer

38                           std::ostream& buffer,
41 buffer << prefix;
42 buffer << '(';
44 buffer << vector->IsBitSet(i);
46 buffer << ")\n";
59 std::ostringstream buffer;
61 buffer << "Block " << block->GetBlockId() << std::endl;
64 DumpBitVector(live_in, buffer, ssa_values, " live in: ");
66 DumpBitVector(live_out, buffer, ssa_values, " live out: ");
68 DumpBitVector(kill, buffer, ssa_values, " kill: ");
70 ASSERT_STREQ(expected, buffer.str().c_str());