HomeSort by relevance Sort by last modified time
    Searched defs:_TRUNCATE (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/v8/src/
platform-win32.cc 69 #define _TRUNCATE 0
95 ASSERT(count == _TRUNCATE);
105 if (count == _TRUNCATE) {
774 int n = _vsnprintf_s(str.start(), str.length(), _TRUNCATE, format, args);
793 // Use _TRUNCATE or strncpy_s crashes (by design) if buffer is too small.
796 n = _TRUNCATE;
799 ASSERT(result == 0 || (n == _TRUNCATE && result == STRUNCATE));
803 #undef _TRUNCATE
    [all...]
  /external/v8/src/
platform-win32.cc 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));
    [all...]

Completed in 114 milliseconds