Home | History | Annotate | Download | only in compiler

Lines Matching full:actual

28     off_t actual = output_stream_->Seek(0, kSeekCurrent);
29 EXPECT_EQ(expected, actual);
50 void CheckTestOutput(const std::vector<uint8_t>& actual) {
54 EXPECT_EQ(sizeof(expected), actual.size());
55 EXPECT_EQ(0, memcmp(expected, &actual[0], actual.size()));
68 std::vector<uint8_t> actual(in->GetLength());
69 bool readSuccess = in->ReadFully(&actual[0], actual.size());
71 CheckTestOutput(actual);
83 std::vector<uint8_t> actual(in->GetLength());
84 bool readSuccess = in->ReadFully(&actual[0], actual.size());
86 CheckTestOutput(actual);