Home | History | Annotate | Download | only in tests

Lines Matching refs:outCount

2439   size_t outCount;
2468 outCount = snprintf(strOut, strOutLen + 1, "%" PRId32, elem.data.int32);
2469 if (outCount <= strOutLen) {
2470 strOut += outCount;
2471 strOutLen -= outCount;
2483 outCount = snprintf(strOut, strOutLen + 1, "%" PRId64, elem.data.int64);
2484 if (outCount <= strOutLen) {
2485 strOut += outCount;
2486 strOutLen -= outCount;
2498 outCount = snprintf(strOut, strOutLen + 1, "%f", elem.data.float32);
2499 if (outCount <= strOutLen) {
2500 strOut += outCount;
2501 strOutLen -= outCount;