Lines Matching defs:destMax
21 * except for the parameter destMax/count and the explicit runtime-constraints violation
30 * destMax The size of the storage location for output. Size
42 * return -1 if count < destMax and the output string has been truncated
44 * If there is a runtime-constraint violation, strDest[0] will be set to the '\0' when strDest and destMax valid
47 int snprintf_s(char *strDest, size_t destMax, size_t count, const char *format, ...)
53 ret = vsnprintf_s(strDest, destMax, count, format, argList);
68 * except for the parameter destMax/count and the explicit runtime-constraints violation
77 * destMax The size of the storage location for output. Size
88 * return destMax-1 if output string has been truncated
90 * If there is a runtime-constraint violation, strDest[0] will be set to the '\0' when strDest and destMax valid
93 int snprintf_truncated_s(char *strDest, size_t destMax, const char *format, ...)
99 ret = vsnprintf_truncated_s(strDest, destMax, format, argList);