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

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
_mingw.h 513 #ifndef _TRUNCATE
514 #define _TRUNCATE ((size_t)-1)
  /external/chromium_org/v8/src/base/platform/
platform-win32.cc 49 #define _TRUNCATE 0
75 DCHECK(count == _TRUNCATE);
85 if (count == _TRUNCATE) {
663 int n = _vsnprintf_s(str, length, _TRUNCATE, format, args);
682 // Use _TRUNCATE or strncpy_s crashes (by design) if buffer is too small.
685 n = _TRUNCATE;
688 DCHECK(result == 0 || (n == _TRUNCATE && result == STRUNCATE));
692 #undef _TRUNCATE
    [all...]

Completed in 288 milliseconds