Home
last modified time | relevance | path

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

/reactos/sdk/lib/ucrt/mbstring/
H A Dmbsnset_s.inl20 if (_COUNT == 0 && _Dst == nullptr && _SizeInBytes == 0)
49 /* if _COUNT is odd, make it even subtracting 1 */
51 if ((_COUNT & 1) == 1)
53 --_COUNT;
56 _COUNT = _COUNT / 2;
58 while (*p != 0 && _COUNT > 0 && --available > 0)
77 --_COUNT;
82 while (*p != 0 && _COUNT > 0 && --available > 0)
87 --_COUNT;
93 if (_COUNT == 0 && mblead && *p != 0 && --available > 0)
[all …]
H A Dmbsncat_s.inl20 if (_COUNT == 0 && _Dst == nullptr && _SizeInBytes == 0)
28 if (_COUNT != 0)
78 if (_COUNT == _TRUNCATE)
87 while (_COUNT > 0 && (*p++ = *_Src++) != 0 && --available > 0)
89 _COUNT--;
92 while (_COUNT > 0)
120 _COUNT--;
123 if (_COUNT == 0)
136 if (*_Src == 0 || _COUNT == 1)
149 * _COUNT == _TRUNCATE loop terminated because available became 0.
[all …]
H A Dmbsncpy_s.inl14 …signed char *_Dst, size_t _SizeInBytes, const unsigned char *_Src, size_t _COUNT, _LOCALE_ARG_DECL) argument
23 if (_COUNT == 0 && _Dst == nullptr && _SizeInBytes == 0)
31 if (_COUNT == 0)
43 return strncpy_s((char *)_Dst, _SizeInBytes, (const char *)_Src, _COUNT);
48 if (_COUNT == _TRUNCATE)
63 while ((*p++ = *_Src++) != 0 && --available > 0 && --_COUNT > 0)
116 while (--_COUNT > 0);
120 if (_COUNT == 0)
135 if (*_Src == 0 || _COUNT == 1)
148 if (_COUNT == _TRUNCATE)
H A Dmbsnbcpy_s_l.cpp18 #define _COUNT _CountInBytes macro
H A Dmbsnbset_s_l.cpp18 #define _COUNT _CountInBytes macro
H A Dmbsncat_s_l.cpp18 #define _COUNT _CountInChars macro
H A Dmbsncpy_s_l.cpp18 #define _COUNT _CountInChars macro
H A Dmbsnset_s_l.cpp18 #define _COUNT _CountInChars macro
H A Dmbsnbcat_s_l.cpp18 #define _COUNT _CountInBytes macro