HomeSort by relevance Sort by last modified time
    Searched refs:SIZE_T_MAX (Results 1 - 25 of 31) sorted by null

1 2

  /external/jemalloc/test/integration/
overflow.c 25 assert_ptr_null(malloc(SIZE_T_MAX),
30 assert_ptr_null(calloc(1, SIZE_T_MAX),
37 assert_ptr_null(realloc(p, SIZE_T_MAX),
xallocx.c 171 assert_zu_le(xallocx(p, SIZE_T_MAX, 0, 0), hugemax,
201 assert_zu_le(xallocx(p, SIZE_T_MAX-2, 2, 0), hugemax,
203 assert_zu_le(xallocx(p, SIZE_T_MAX-1, 1, 0), hugemax,
235 assert_zu_eq(xallocx(p, small0, SIZE_T_MAX - small0, 0), small0,
356 assert_zu_le(xallocx(p, huge1, SIZE_T_MAX - huge1, flags), hugemax,
mallocx.c 78 assert_ptr_null(mallocx(SIZE_T_MAX, 0),
79 "Expected OOM for mallocx(size=%#zx, 0)", SIZE_T_MAX);
rallocx.c 238 assert_ptr_null(rallocx(p, SIZE_T_MAX, 0),
239 "Expected OOM for rallocx(p, size=%#zx, 0)", SIZE_T_MAX);
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
limits.h 69 #define SIZE_T_MAX __ULLONG_MAX /* max value for a size_t */
  /bionic/libc/include/
limits.h 120 #define SIZE_T_MAX ULONG_MAX
122 #define SIZE_T_MAX UINT_MAX
  /external/jemalloc/include/jemalloc/internal/
jemalloc_internal_decls.h 36 #ifndef SIZE_T_MAX
37 # define SIZE_T_MAX SIZE_MAX
util.h 309 if (x == SIZE_T_MAX)
  /external/jemalloc/test/include/test/
jemalloc_test.h 2 #ifndef SIZE_T_MAX
3 # define SIZE_T_MAX SIZE_MAX
  /external/libedit/src/
sys.h 126 #ifndef SIZE_T_MAX
127 #define SIZE_T_MAX ((size_t)-1)
readline.c 58 #if !defined(SIZE_T_MAX)
59 # define SIZE_T_MAX (size_t)(-1)
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
limits.h 76 #define SIZE_T_MAX __SIZE_T_MAX /* max value for a size_t */
  /device/linaro/bootloader/edk2/StdLib/Include/Aarch64/machine/
limits.h 78 #define SIZE_T_MAX LONG_MAX /* max value for a size_t */
  /device/linaro/bootloader/edk2/StdLib/Include/Arm/machine/
limits.h 73 #define SIZE_T_MAX LONG_MAX /* max value for a size_t */
  /external/flac/include/share/
alloc.h 52 # ifndef SIZE_T_MAX
55 # define SIZE_T_MAX FLAC__U64L(0xffffffffffffffff)
57 # define SIZE_T_MAX 0xffffffff
63 # define SIZE_MAX SIZE_T_MAX
  /external/jemalloc/test/unit/
size_classes.c 150 assert_u_eq(size2index(SIZE_T_MAX), NSIZES,
157 assert_zu_eq(s2u(SIZE_T_MAX), 0,
164 assert_u_eq(psz2ind(SIZE_T_MAX), NPSIZES,
171 assert_zu_eq(psz2u(SIZE_T_MAX), 0,
prng.c 107 assert_zu_eq((rb & (SIZE_T_MAX << lg_range)),
  /device/linaro/bootloader/edk2/StdLib/Include/Ia32/machine/
int_limits.h 139 #define SIZE_T_MAX SIZE_MAX
  /device/linaro/bootloader/edk2/StdLib/Include/X64/machine/
int_limits.h 133 #define SIZE_T_MAX SIZE_MAX
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
wcsftime.c 84 if (SIZE_T_MAX / MB_CUR_MAX <= maxsize) {
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vswscanf.c 84 if ((mlen = wcsrtombs(mbstr, &rstr, SIZE_T_MAX, &mbs)) == (size_t)-1) {
  /external/curl/lib/
curl_ntlm_core.c 649 #ifndef SIZE_T_MAX
652 #define SIZE_T_MAX 18446744073709551615U
654 #define SIZE_T_MAX 4294967295U
673 if((userlen > SIZE_T_MAX/2) ||
674 (domlen > SIZE_T_MAX/2) ||
675 ((userlen + domlen) > SIZE_T_MAX/2))
  /external/jemalloc/src/
ckh.c 49 * Search bucket for key and return the cell number if found; SIZE_T_MAX
64 return (SIZE_T_MAX);
68 * Search table for key and return cell number if found; SIZE_T_MAX otherwise.
82 if (cell != SIZE_T_MAX)
492 if (cell != SIZE_T_MAX) {
523 if (cell != SIZE_T_MAX) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxtmpl.h 169 #ifdef SIZE_T_MAX
170 _ASSERT(nNewSize <= SIZE_T_MAX/sizeof(TYPE));
189 #ifdef SIZE_T_MAX
190 _ASSERT(nNewMax <= SIZE_T_MAX/sizeof(TYPE));
227 #ifdef SIZE_T_MAX
228 _ASSERT(m_nSize <= SIZE_T_MAX/sizeof(TYPE));
  /external/libxml2/
SAX2.c 31 /* Define SIZE_T_MAX unless defined through <limits.h>. */
32 #ifndef SIZE_T_MAX
33 # define SIZE_T_MAX ((size_t)-1)
34 #endif /* !SIZE_T_MAX */
    [all...]

Completed in 1006 milliseconds

1 2