HomeSort by relevance Sort by last modified time
    Searched full:size_max (Results 1 - 25 of 206) sorted by null

1 2 3 4 5 6 7 8 9

  /external/bison/lib/
xsize.h 24 /* Get SIZE_MAX. */
42 The convention is that SIZE_MAX represents overflow.
43 malloc (SIZE_MAX) is not guaranteed to fail -- think of a malloc
53 ((N) <= SIZE_MAX ? (size_t) (N) : SIZE_MAX)
63 return (sum >= size1 ? sum : SIZE_MAX);
94 max (SIZE_MAX, n) == SIZE_MAX and max (n, SIZE_MAX) == SIZE_MAX. *
    [all...]
size_max.h 0 /* size_max.h -- declare SIZE_MAX through system headers
21 /* Get SIZE_MAX declaration on systems like Solaris 7/8/9. */
23 /* Get SIZE_MAX declaration on systems like glibc 2. */
27 /* On systems where these include files don't define it, SIZE_MAX is defined
xalloc-oversized.h 26 works correctly even when SIZE_MAX < N.
28 By gnulib convention, SIZE_MAX represents overflow in size
30 SIZE_MAX - 1, since SIZE_MAX might represent an overflowed value.
31 However, malloc (SIZE_MAX) fails on all known hosts where
33 exactly-SIZE_MAX allocations on such hosts; this avoids a test and
sprintf.c 32 #ifndef SIZE_MAX
33 # define SIZE_MAX ((size_t) -1)
52 Therefore set lenbuf = min (SIZE_MAX, INT_MAX, - (uintptr_t) str - 1). */
53 lenbuf = (SIZE_MAX < INT_MAX ? SIZE_MAX : INT_MAX);
67 /* len is near SIZE_MAX. */
vsprintf.c 32 #ifndef SIZE_MAX
33 # define SIZE_MAX ((size_t) -1)
51 Therefore set lenbuf = min (SIZE_MAX, INT_MAX, - (uintptr_t) str - 1). */
52 lenbuf = (SIZE_MAX < INT_MAX ? SIZE_MAX : INT_MAX);
64 /* len is near SIZE_MAX. */
quote.h 29 ARGSIZE is SIZE_MAX, use the string length of the argument for
34 ARGSIZE), suitable for diagnostics. If ARGSIZE is SIZE_MAX, use
getdelim.c 34 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
98 SSIZE_MAX < SIZE_MAX ? (size_t) SSIZE_MAX + 1 : SIZE_MAX;
  /external/e2fsprogs/intl/
xsize.h 26 /* Get SIZE_MAX. */
39 The convention is that SIZE_MAX represents overflow.
40 malloc (SIZE_MAX) is not guaranteed to fail -- think of a malloc
50 ((N) <= SIZE_MAX ? (size_t) (N) : SIZE_MAX)
60 return (sum >= size1 ? sum : SIZE_MAX);
91 max (SIZE_MAX, n) == SIZE_MAX and max (n, SIZE_MAX) == SIZE_MAX. *
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/m4/
size_max.m4 0 # size_max.m4 serial 2
12 dnl First test whether the system already has SIZE_MAX.
13 AC_MSG_CHECKING([for SIZE_MAX])
20 #ifdef SIZE_MAX
36 dnl Even though SIZE_MAX fits in an unsigned int, it must be of type
56 AC_DEFINE_UNQUOTED([SIZE_MAX], [$result],
  /external/clang/test/Headers/
cxx11.cpp 20 #ifndef SIZE_MAX
21 #error SIZE_MAX should be defined in C++
  /external/bison/m4/
size_max.m4 0 # size_max.m4 serial 10
12 dnl First test whether the system already has SIZE_MAX.
13 AC_CACHE_CHECK([for SIZE_MAX], [gl_cv_size_max], [
20 #ifdef SIZE_MAX
35 dnl Even though SIZE_MAX fits in an unsigned int, it must be of type
61 AC_DEFINE_UNQUOTED([SIZE_MAX], [$gl_cv_size_max],
64 dnl Don't redefine SIZE_MAX in config.h if config.h is re-included after
67 AH_VERBATIM([SIZE_MAX],
70 #ifndef SIZE_MAX
71 # undef SIZE_MAX
    [all...]
  /ndk/sources/host-tools/make-3.81/config/
size_max.m4 0 # size_max.m4 serial 2
14 dnl First test whether the system already has SIZE_MAX.
15 AC_MSG_CHECKING([for SIZE_MAX])
22 #ifdef SIZE_MAX
38 dnl Even though SIZE_MAX fits in an unsigned int, it must be of type
58 AC_DEFINE_UNQUOTED([SIZE_MAX], [$result],
  /system/core/libcutils/
strdup16to8.c 18 #include <limits.h> /* for SIZE_MAX */
35 * for len > SIZE_MAX/3.
46 * overflows, and never return more than (SIZE_MAX-1)
48 * SIZE_MAX bytes, which will return NULL which can at least
55 /* Fast path for the usual case where 3*len is < SIZE_MAX-1.
57 if (len < (SIZE_MAX-1)/3) {
84 return SIZE_MAX-1;
87 /* don't return SIZE_MAX to avoid common user bug */
88 if (utf8Len == SIZE_MAX)
89 utf8Len = SIZE_MAX-1
    [all...]
  /external/eigen/bench/btl/generic_bench/
bench.hh 41 BTL_DONT_INLINE void bench( int size_min, int size_max, int nb_point )
56 size_lin_log(nb_point,size_min,size_max,tab_sizes);
154 BTL_DONT_INLINE void bench( int size_min, int size_max, int nb_point ){
157 bench<Portable_Perf_Analyzer,Action>(size_min,size_max,nb_point);
159 // bench<Mixed_Perf_Analyzer,Action>(size_min,size_max,nb_point);
163 // bench<X86_Perf_Analyzer,Action>(size_min,size_max,nb_point);
164 // bench<STL_Perf_Analyzer,Action>(size_min,size_max,nb_point);
  /external/flac/libFLAC/
memory.c 87 if((size_t)elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
116 if((size_t)elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
145 if((size_t)elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
174 if((size_t)elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
205 if((size_t)elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
  /ndk/sources/host-tools/sed-4.2.1/lib/
getdelim.c 34 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
98 SSIZE_MAX < SIZE_MAX ? (size_t) SSIZE_MAX + 1 : SIZE_MAX;
xalloc.h 66 works correctly even when SIZE_MAX < N.
68 By gnulib convention, SIZE_MAX represents overflow in size
70 SIZE_MAX - 1, since SIZE_MAX might represent an overflowed value.
71 However, malloc (SIZE_MAX) fails on all known hosts where
73 exactly-SIZE_MAX allocations on such hosts; this avoids a test and
  /bionic/libc/arch-arm/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /bionic/libc/arch-mips/include/machine/
limits.h 41 #ifndef SIZE_MAX
42 #define SIZE_MAX ULONG_MAX /* max value for a size_t */
  /bionic/libc/arch-x86/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /development/ndk/platforms/android-3/arch-arm/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /development/ndk/platforms/android-9/arch-mips/include/machine/
limits.h 41 #ifndef SIZE_MAX
42 #define SIZE_MAX ULONG_MAX /* max value for a size_t */
  /development/ndk/platforms/android-9/arch-x86/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /external/eigen/bench/btl/generic_bench/utils/
size_lin_log.hh 26 void size_lin_log(const int nb_point, const int size_min, const int size_max, Vector & X)
42 size_log(nb_point-nine,ten,size_max,log_size);
size_log.hh 29 void size_log(const int nb_point, const int size_min, const int size_max, Vector & X)
34 float ls_max=log(float(size_max));

Completed in 548 milliseconds

1 2 3 4 5 6 7 8 9