Home | History | Annotate | Download | only in src

Lines Matching defs:_TRUNCATE

76 #define _TRUNCATE 0
84 ASSERT(count == _TRUNCATE);
94 if (count == _TRUNCATE) {
792 int n = _vsnprintf_s(str.start(), str.length(), _TRUNCATE, format, args);
811 // Use _TRUNCATE or strncpy_s crashes (by design) if buffer is too small.
814 n = _TRUNCATE;
817 ASSERT(result == 0 || (n == _TRUNCATE && result == STRUNCATE));