Home | History | Annotate | Download | only in stubs

Lines Matching defs:snprintf

46 // MSVC has only _snprintf, not snprintf.
48 // MinGW has both snprintf and _snprintf, but they appear to be different
51 // snprintf(buffer, 32, "%.*g\n", FLT_DIG, 1.23e10f);
56 #define snprintf _snprintf
1192 // generate the digits in the first place rather than use snprintf(),
1262 snprintf(buffer, kDoubleToBufferSize, "%.*g", DBL_DIG, value);
1264 // The snprintf should never overflow because the buffer is significantly
1277 snprintf(buffer, kDoubleToBufferSize, "%.*g", DBL_DIG+2, value);
1380 snprintf(buffer, kFloatToBufferSize, "%.*g", FLT_DIG, value);
1382 // The snprintf should never overflow because the buffer is significantly
1389 snprintf(buffer, kFloatToBufferSize, "%.*g", FLT_DIG+2, value);