HomeSort by: relevance | last modified time | path
    Searched refs:PTRDIFF_T (Results 1 - 14 of 14) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/interception/
interception_type_test.cc 25 COMPILER_CHECK(sizeof(::PTRDIFF_T) == sizeof(ptrdiff_t));
interception.h 30 typedef __sanitizer::sptr PTRDIFF_T;
  /src/external/gpl3/gcc/dist/libsanitizer/interception/
interception_type_test.cpp 24 COMPILER_CHECK(sizeof(::PTRDIFF_T) == sizeof(ptrdiff_t));
interception.h 30 typedef __sanitizer::sptr PTRDIFF_T;
  /src/external/gpl3/gcc.old/dist/libsanitizer/interception/
interception_type_test.cpp 24 COMPILER_CHECK(sizeof(::PTRDIFF_T) == sizeof(ptrdiff_t));
interception.h 29 typedef __sanitizer::sptr PTRDIFF_T;
  /src/crypto/external/bsd/openssl.old/dist/crypto/evp/
evp_enc.c 267 #ifdef PTRDIFF_T
268 # undef PTRDIFF_T
277 * PTRDIFF_T even for comparison for equality.
279 # define PTRDIFF_T uint64_t
281 # define PTRDIFF_T size_t
286 PTRDIFF_T diff = (PTRDIFF_T)ptr1-(PTRDIFF_T)ptr2;
292 int overlapped = (len > 0) & (diff != 0) & ((diff < (PTRDIFF_T)len) |
293 (diff > (0 - (PTRDIFF_T)len)))
    [all...]
  /src/sys/lib/libsa/
subr_prf.c 52 #if 0 /* XXX: abuse intptr_t until the situation with ptrdiff_t is clear */
53 #define PTRDIFF_T ptrdiff_t
55 #define PTRDIFF_T intptr_t
236 if (sizeof(PTRDIFF_T) == sizeof(long))
  /src/crypto/external/bsd/openssl/dist/crypto/evp/
evp_enc.c 527 #ifdef PTRDIFF_T
528 # undef PTRDIFF_T
537 * PTRDIFF_T even for comparison for equality.
539 # define PTRDIFF_T uint64_t
541 # define PTRDIFF_T size_t
546 PTRDIFF_T diff = (PTRDIFF_T)ptr1-(PTRDIFF_T)ptr2;
552 int overlapped = (len > 0) & (diff != 0) & ((diff < (PTRDIFF_T)len) |
553 (diff > (0 - (PTRDIFF_T)len)))
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/evp/
evp_enc.c 855 #ifdef PTRDIFF_T
856 #undef PTRDIFF_T
865 * PTRDIFF_T even for comparison for equality.
867 #define PTRDIFF_T uint64_t
869 #define PTRDIFF_T size_t
874 PTRDIFF_T diff = (PTRDIFF_T)ptr1 - (PTRDIFF_T)ptr2;
880 int overlapped = (len > 0) & (diff != 0) & ((diff < (PTRDIFF_T)len) | (diff > (0 - (PTRDIFF_T)len)))
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common_interceptors_format.inc 128 return sizeof(PTRDIFF_T);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_common_interceptors_format.inc 127 return sizeof(PTRDIFF_T);
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_common_interceptors_format.inc 127 return sizeof(PTRDIFF_T);
  /src/external/bsd/ntp/dist/libntp/
snprintf.c 356 #include <stddef.h> /* For ptrdiff_t. */
439 /* Support for ptrdiff_t. */
440 #ifndef PTRDIFF_T
441 #if HAVE_PTRDIFF_T || defined(ptrdiff_t)
442 #define PTRDIFF_T ptrdiff_t
444 #define PTRDIFF_T long int
445 #endif /* HAVE_PTRDIFF_T || defined(ptrdiff_t) */
446 #endif /* !defined(PTRDIFF_T) */
449 * We need an unsigned integer type corresponding to ptrdiff_t (cf. C99
    [all...]

Completed in 24 milliseconds