Searched defs:truth (Results 1 - 2 of 2) sorted by relevance

/external/skia/tests/
H A DCodecPartialTest.cpp56 SkBitmap truth; local
57 if (!create_truth(file, &truth)) {
76 SkASSERT(info == truth.info());
117 compare_bitmaps(r, truth, incremental);
370 SkBitmap truth; local
372 truth.allocPixels(info);
374 auto result = codec->getPixels(info, truth.getPixels(), truth.rowBytes());
405 compare_bitmaps(r, truth, bm);
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Dtransport_feedback_adapter_unittest.cc82 void ComparePacketVectors(const std::vector<PacketInfo>& truth, argument
84 ASSERT_EQ(truth.size(), input.size());
85 size_t len = truth.size();
86 // truth contains the input data for the test, and input is what will be
87 // sent to the bandwidth estimator. truth.arrival_tims_ms is used to
91 // packet, the truth[x].arrival_time and input[x].arrival_time may not be
94 truth[0].arrival_time_ms - input[0].arrival_time_ms;
96 EXPECT_EQ(truth[i].arrival_time_ms,
98 EXPECT_EQ(truth[i].send_time_ms, input[i].send_time_ms);
99 EXPECT_EQ(truth[
[all...]

Completed in 410 milliseconds