Searched refs:iSizeInBytes (Results 1 – 1 of 1) sorted by relevance
/third_party/openh264/codec/common/src/ |
D | crt_util_safe_x.cpp | 78 char* WelsStrncpy (char* pDest, int32_t iSizeInBytes, const char* kpSrc) { in WelsStrncpy() argument 79 strncpy_s (pDest, iSizeInBytes, kpSrc, _TRUNCATE); in WelsStrncpy() 139 char* WelsStrncpy (char* pDest, int32_t iSizeInBytes, const char* kpSrc) { in WelsStrncpy() argument 140 strncpy (pDest, kpSrc, iSizeInBytes); //confirmed_safe_unsafe_usage in WelsStrncpy() 141 pDest[iSizeInBytes - 1] = '\0'; in WelsStrncpy() 199 char* WelsStrncpy (char* pDest, int32_t iSizeInBytes, const char* kpSrc) { in WelsStrncpy() argument 200 strncpy (pDest, kpSrc, iSizeInBytes); //confirmed_safe_unsafe_usage in WelsStrncpy() 201 pDest[iSizeInBytes - 1] = '\0'; in WelsStrncpy()
|