Home
last modified time | relevance | path

Searched refs:SECUREC_WCHAR_STRING_MAX_LEN (Results 1 – 9 of 9) sorted by relevance

/third_party/bounds_checking_function/src/
Dvswprintf_s.c43 if (SECUREC_VSPRINTF_PARAM_ERROR(format, strDest, destMax, SECUREC_WCHAR_STRING_MAX_LEN)) { in vswprintf_s()
44 SECUREC_VSPRINTF_CLEAR_DEST(strDest, destMax, SECUREC_WCHAR_STRING_MAX_LEN); in vswprintf_s()
Dwcsncpy_s.c77 if (destMax == 0 || destMax > SECUREC_WCHAR_STRING_MAX_LEN) { in wcsncpy_s()
89 if (count > SECUREC_WCHAR_STRING_MAX_LEN) { in wcsncpy_s()
Dwcsncat_s.c88 if (destMax == 0 || destMax > SECUREC_WCHAR_STRING_MAX_LEN) { in wcsncat_s()
100 if (count > SECUREC_WCHAR_STRING_MAX_LEN) { in wcsncat_s()
Dvswscanf_s.c66 if (count == 0 || count > SECUREC_WCHAR_STRING_MAX_LEN) { in vswscanf_s()
Dwcscpy_s.c72 if (destMax == 0 || destMax > SECUREC_WCHAR_STRING_MAX_LEN) { in wcscpy_s()
Dwcscat_s.c91 if (destMax == 0 || destMax > SECUREC_WCHAR_STRING_MAX_LEN) { in wcscat_s()
Doutput.inl1007 if (textLen > SECUREC_WCHAR_STRING_MAX_LEN) {
Dinput.inl126 ((spec).isWCharOrLong > 0 && (spec).arrayWidth > SECUREC_WCHAR_STRING_MAX_LEN))
/third_party/bounds_checking_function/include/
Dsecurectype.h419 #define SECUREC_WCHAR_STRING_MAX_LEN (SECUREC_STRING_MAX_LEN / sizeof(wchar_t)) macro