Lines Matching defs:INITIAL_CONTENT
162 constexpr char INITIAL_CONTENT[] = "1234567890987654321";
165 ss->buf = reinterpret_cast<char *>(malloc(sizeof(INITIAL_CONTENT)));
166 ss->bufsize = sizeof(INITIAL_CONTENT);
169 for (size_t i = 0; i < sizeof(INITIAL_CONTENT); ++i)
170 ss->buf[i] = INITIAL_CONTENT[i];
189 EXPECT_EQ(ss->endpos, sizeof(WRITE_DATA) + sizeof(INITIAL_CONTENT));
196 const char INITIAL_CONTENT[] = "1234567890987654321";
198 ss->buf = reinterpret_cast<char *>(malloc(sizeof(INITIAL_CONTENT)));
199 ss->bufsize = sizeof(INITIAL_CONTENT);
202 for (size_t i = 0; i < sizeof(INITIAL_CONTENT); ++i)
203 ss->buf[i] = INITIAL_CONTENT[i];
208 constexpr size_t READ_SIZE = sizeof(INITIAL_CONTENT) / 2;
212 MemoryView src1(INITIAL_CONTENT, READ_SIZE), dst1(read_data, READ_SIZE);