Lines Matching defs:bufferSize
79 static constexpr int bufferSize{32};
80 char buffer[bufferSize];
85 buffer, bufferSize, format, std::strlen(format))};
193 static constexpr int bufferSize{39};
194 char output[bufferSize];
195 output[bufferSize - 1] = '\0';
196 cookie = IONAME(BeginInternalListOutput)(output, bufferSize - 1);
209 static const char expect[bufferSize]{
211 ASSERT_EQ(std::strncmp(output, expect, bufferSize), 0)
217 static constexpr int bufferSize{10};
218 char buffer[bufferSize];
221 buffer, bufferSize, format, std::strlen(format))};
945 static constexpr int bufferSize{65};
946 char iomsg[bufferSize];
947 std::memset(iomsg, '\0', bufferSize - 1);
951 IONAME(GetIoMsg)(cookie, iomsg, bufferSize - 1);