Home | History | Annotate | Download | only in linker

Lines Matching full:actual

31     off_t actual = output_stream_->Seek(0, kSeekCurrent);
32 EXPECT_EQ(expected, actual);
55 void CheckTestOutput(const std::vector<uint8_t>& actual) {
59 EXPECT_EQ(sizeof(expected), actual.size());
60 EXPECT_EQ(0, memcmp(expected, &actual[0], actual.size()));
73 std::vector<uint8_t> actual(in->GetLength());
74 bool readSuccess = in->ReadFully(&actual[0], actual.size());
76 CheckTestOutput(actual);
88 std::vector<uint8_t> actual(in->GetLength());
89 bool readSuccess = in->ReadFully(&actual[0], actual.size());
91 CheckTestOutput(actual);