Lines Matching refs:val
130 int val = dataProvider->ConsumeIntegral<int>(); in fuzzFormat() local
132 str1->appendFormat(formatString.c_str(), val); in fuzzFormat()
144 uint val = dataProvider->ConsumeIntegral<uint>(); in fuzzFormat() local
146 str1->appendFormat(formatString.c_str(), val); in fuzzFormat()
148 str1->format(formatString.c_str(), val); in fuzzFormat()
162 float val = dataProvider->ConsumeFloatingPoint<float>(); in fuzzFormat() local
164 str1->appendFormat(formatString.c_str(), val); in fuzzFormat()
166 str1->format(formatString.c_str(), val); in fuzzFormat()
172 char val = dataProvider->ConsumeIntegral<char>(); in fuzzFormat() local
174 str1->appendFormat(formatString.c_str(), val); in fuzzFormat()
176 str1->format(formatString.c_str(), val); in fuzzFormat()
182 std::string val = dataProvider->ConsumeRandomLengthString(MAX_STRING_BYTES); in fuzzFormat() local
184 str1->appendFormat(formatString.c_str(), val.c_str()); in fuzzFormat()
186 str1->format(formatString.c_str(), val.c_str()); in fuzzFormat()
191 uintptr_t val = dataProvider->ConsumeIntegral<uintptr_t>(); in fuzzFormat() local
193 str1->appendFormat(formatString.c_str(), val); in fuzzFormat()
195 str1->format(formatString.c_str(), val); in fuzzFormat()