Lines Matching refs:Ints
416 std::vector<uint32_t> Ints = {90823, 12908, 109823, 209823}; in TEST_F() local
417 ArrayRef<uint8_t> IntBytes(reinterpret_cast<uint8_t *>(Ints.data()), in TEST_F()
418 Ints.size() * sizeof(uint32_t)); in TEST_F()
427 ASSERT_EQ(Ints[0], *Iter++); in TEST_F()
428 ASSERT_EQ(Ints[1], *Iter++); in TEST_F()
429 ASSERT_EQ(Ints[2], *Iter++); in TEST_F()
430 ASSERT_EQ(Ints[3], *Iter++); in TEST_F()
568 std::vector<int> Ints = {1, 2, 3, 4, 5}; in TEST_F() local
569 ArrayRef<uint8_t> IntBytes(reinterpret_cast<uint8_t *>(&Ints[0]), in TEST_F()
570 Ints.size() * sizeof(int)); in TEST_F()
576 ASSERT_THAT_ERROR(Reader.readArray(IntsRef, Ints.size()), Succeeded()); in TEST_F()
578 EXPECT_EQ(makeArrayRef(Ints), IntsRef); in TEST_F()
582 ASSERT_THAT_ERROR(Reader.readArray(FixedIntsRef, Ints.size()), Succeeded()); in TEST_F()
584 ASSERT_EQ(Ints, std::vector<int>(FixedIntsRef.begin(), FixedIntsRef.end())); in TEST_F()
796 ArrayRef<int> Ints; in TEST_F() local
799 ASSERT_THAT_ERROR(Reader.readArray(Ints, SourceInts.size()), Succeeded()); in TEST_F()
800 ASSERT_THAT_ERROR(Writer.writeArray(Ints), Succeeded()); in TEST_F()