Searched refs:kBytesTestLiteral (Results 1 – 1 of 1) sorted by relevance
/external/pigweed/pw_bytes/ |
D | byte_builder_test.cc | 60 constexpr auto kBytesTestLiteral = MakeBytes(0x04, 0x05); in TEST() local 62 EXPECT_FALSE(bb.append(kBytesTestLiteral.data(), 2).ok()); in TEST() 72 constexpr auto kBytesTestLiteral = MakeBytes(0x04, 0x05); in TEST() local 74 EXPECT_TRUE(bb.append(kBytesTestLiteral.data(), 2).ok()); in TEST() 85 constexpr auto kBytesTestLiteral = MakeBytes(0x04, 0x05, 0x06, 0x07); in TEST() local 87 EXPECT_TRUE(bb.append(kBytesTestLiteral.data(), 3).ok()); in TEST() 99 constexpr auto kBytesTestLiteral = MakeBytes(0x04, 0x05, 0x06, 0x07); in TEST() local 101 EXPECT_FALSE(bb.append(kBytesTestLiteral.data(), 4).ok()); in TEST() 293 constexpr auto kBytesTestLiteral = MakeBytes(0x04, 0x05, 0x06, 0x07); in TEST() local 294 one.append(kBytesTestLiteral.data(), 2); in TEST() [all …]
|