Lines Matching defs:count
21 * except for the parameter destMax/count and the explicit runtime-constraints violation
23 * and writes up to count characters of the given data to the memory pointed
29 * count Maximum number of character to write(not including
40 * return -1 if count < destMax and the output string has been truncated
44 int vsnprintf_s(char *strDest, size_t destMax, size_t count, const char *format, va_list argList)
48 if (SECUREC_VSNPRINTF_PARAM_ERROR(format, strDest, destMax, count, SECUREC_STRING_MAX_LEN)) {
54 if (destMax > count) {
55 retVal = SecVsnprintfImpl(strDest, count + 1, format, argList);
63 if (retVal == SECUREC_PRINTF_TRUNCATE && count == (size_t)(-1)) {
90 * except for the parameter destMax/count and the explicit runtime-constraints violation
92 * and writes up to count characters of the given data to the memory pointed