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

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/android/support/src/musl-math/
scalbln.c 8 else if (n < INT_MIN)
9 n = INT_MIN;
scalblnf.c 8 else if (n < INT_MIN)
9 n = INT_MIN;
scalblnl.c 15 else if (n < INT_MIN)
16 n = INT_MIN;
  /external/jsoncpp/test/data/
test_real_10.json 2 // the same as INT_MIN in base 10 and digit less than INT_MIN's last digit in
  /ndk/tests/device/test-gnustl-full/unit/
macro_checks.cpp 29 #if !defined (INT_MIN)
30 # error Missing INT_MIN definition.
33 #if !(INT_MIN < INT_MAX)
34 # error Weird INT_MIN or INT_MAX macro values.
  /ndk/tests/device/test-stlport/unit/
macro_checks.cpp 29 #if !defined (INT_MIN)
30 # error Missing INT_MIN definition.
33 #if !(INT_MIN < INT_MAX)
34 # error Weird INT_MIN or INT_MAX macro values.
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_scalbln.c 43 in = INT_MIN;
58 in = INT_MIN;
73 in = INT_MIN;
  /external/valgrind/none/tests/s390x/
lpr.c 81 t32(INT_MAX); t32(INT_MIN); t32(UINT_MAX);
85 t64(INT_MAX); t64(INT_MIN); t64(UINT_MAX);
90 t3264(INT_MAX); t3264(INT_MIN); t3264(UINT_MAX);
  /external/compiler-rt/test/ubsan/TestCases/Misc/
deduplication.cpp 7 int i = INT_MIN;
  /external/kernel-headers/original/uapi/linux/
netfilter_decnet.h 15 #include <limits.h> /* for INT_MIN, INT_MAX */
46 NF_DN_PRI_FIRST = INT_MIN,
netfilter_ipv4.h 13 #include <limits.h> /* for INT_MIN, INT_MAX */
58 NF_IP_PRI_FIRST = INT_MIN,
netfilter_ipv6.h 16 #include <limits.h> /* for INT_MIN, INT_MAX */
63 NF_IP6_PRI_FIRST = INT_MIN,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
netfilter_decnet.h 14 #include <limits.h> /* for INT_MIN, INT_MAX */
44 NF_DN_PRI_FIRST = INT_MIN,
netfilter_ipv4.h 12 #include <limits.h> /* for INT_MIN, INT_MAX */
56 NF_IP_PRI_FIRST = INT_MIN,
netfilter_ipv6.h 15 #include <limits.h> /* for INT_MIN, INT_MAX */
61 NF_IP6_PRI_FIRST = INT_MIN,
  /external/clang/test/Headers/
limits.cpp 10 _Static_assert(INT_MAX == -(INT_MIN+1), "");
20 _Static_assert(INT_MIN == -INT_MAX-1, "");
  /external/iproute2/include/linux/
netfilter_ipv4.h 12 #include <limits.h> /* for INT_MIN, INT_MAX */
56 NF_IP_PRI_FIRST = INT_MIN,
  /external/libcxx/test/std/depr/depr.c.headers/
limits_h.pass.cpp 54 #ifndef INT_MIN
55 #error INT_MIN not defined
  /external/libcxx/test/std/language.support/support.limits/c.limits/
climits.pass.cpp 54 #ifndef INT_MIN
55 #error INT_MIN not defined
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
limits_h.pass.cpp 54 #ifndef INT_MIN
55 #error INT_MIN not defined
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/c.limits/
climits.pass.cpp 54 #ifndef INT_MIN
55 #error INT_MIN not defined
  /external/clang/test/Analysis/
additive-folding.cpp 7 #define INT_MIN (-INT_MAX - 1)
146 int min = INT_MIN;
154 int min = INT_MIN;
163 int min = INT_MIN;
180 int sMin = INT_MIN;
181 unsigned uMin = INT_MIN;
  /external/google-breakpad/src/processor/
static_address_map_unittest.cc 117 target = INT_MIN;
159 target = INT_MIN;
178 target = INT_MIN;
197 target = INT_MIN;
216 target = INT_MIN;
  /bionic/tools/relocation_packer/src/
debug.h 91 // predicate is true. INT_MIN is guaranteed to be less than or equal to
94 (relocation_packer::Logger(severity, INT_MIN, true).GetStream())
96 (relocation_packer::Logger(severity, INT_MIN, (predicate)).GetStream())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_structmembers.py 4 INT_MAX, INT_MIN, UINT_MAX, \
42 ts.T_INT = INT_MIN
43 self.assertEqual(ts.T_INT, INT_MIN)

Completed in 512 milliseconds

1 2 3 4 5 6 7 8 91011>>