HomeSort by relevance Sort by last modified time
    Searched refs:UINT_MAX (Results 26 - 50 of 341) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Lib/test/
test_structmembers.py 9 INT_MAX, INT_MIN, UINT_MAX, \
46 ts.T_UINT = UINT_MAX
47 self.assertEqual(ts.T_UINT, UINT_MAX)
  /external/swiftshader/src/OpenGL/compiler/
Compiler.cpp 71 MaxCallStackDepth = UINT_MAX;
76 maxCallStackDepth(UINT_MAX)
222 else if(depth == UINT_MAX)
  /external/v8/src/inspector/
string-16.h 49 String16 substring(size_t pos, size_t len = UINT_MAX) const {
55 size_t reverseFind(const String16& str, size_t start = UINT_MAX) const {
59 size_t reverseFind(UChar c, size_t start = UINT_MAX) const {
  /external/grpc-grpc/src/objective-c/GRPCClient/private/
NSData+GRPC.m 77 NSUInteger length_max = MIN(length, UINT_MAX);
  /external/jemalloc_new/include/jemalloc/internal/
bit_util.h 109 assert(ret < UINT_MAX);
126 assert(ret < UINT_MAX);
  /external/freetype/include/freetype/config/
ftstdlib.h 44 * UINT_MAX and ULONG_MAX are used to automatically compute the size
65 #define FT_UINT_MAX UINT_MAX
  /external/ltp/testcases/kernel/device-drivers/block/block_dev_kernel/
ltp_block_dev.c 55 * | [256..UINT_MAX] | valid | tc04, tc05
229 prk_info("Test Case 5: register_blkdev() with major=%u\n", UINT_MAX);
231 major = register_blkdev(UINT_MAX, BLK_DEV_NAME);
235 unregister_blkdev(UINT_MAX, BLK_DEV_NAME);
238 UINT_MAX, major);
  /external/ltp/testcases/lib/
tst_checkpoint.c 42 if (errno || (e == arg) || (temp > UINT_MAX)) {
  /external/selinux/libselinux/src/
is_customizable_type.c 28 while (fgets_unlocked(buf, selinux_page_size, fp) && ctr < UINT_MAX) {
  /external/strace/tests/
perf_event_open_nonverbose.c 45 #if ULONG_MAX > UINT_MAX
  /external/strace/tests-m32/
perf_event_open_nonverbose.c 45 #if ULONG_MAX > UINT_MAX
  /external/strace/tests-mx32/
perf_event_open_nonverbose.c 45 #if ULONG_MAX > UINT_MAX
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_getargs2.py 17 > I * unsigned int 0..UINT_MAX
41 from _testcapi import UCHAR_MAX, USHRT_MAX, UINT_MAX, ULONG_MAX, INT_MAX, \
116 self.assertEqual(UINT_MAX, getargs_I(-1))
118 self.assertEqual(UINT_MAX, getargs_I(UINT_MAX))
119 self.assertEqual(0, getargs_I(UINT_MAX+1))
124 self.assertEqual(VERY_LARGE & UINT_MAX, getargs_I(VERY_LARGE))
  /external/boringssl/src/crypto/
compiler_test.cc 80 EXPECT_LE(0xffffffffu, UINT_MAX);
97 CheckRepresentation(static_cast<unsigned>(UINT_MAX));
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_printf_test.cc 120 TestAgainstLibc<unsigned>("%u-%u", 0, UINT_MAX); // NOLINT
121 TestAgainstLibc<unsigned>("%x-%x", 0, UINT_MAX); // NOLINT
  /external/llvm/lib/Transforms/Scalar/
SpeculativeExecution.cpp 226 return UINT_MAX; // Disallow anything not whitelisted.
246 if (Cost != UINT_MAX && isSafeToSpeculativelyExecute(&I) &&
  /external/ltp/testcases/kernel/sched/eas/
sugov_latency.c 84 unsigned int min_freq_seen = UINT_MAX;
140 if (min_freq_seen == UINT_MAX) {
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_array.c 54 EXTRACT_FUNC(GLuint, float, UINT_MAX);
55 EXTRACT_FUNC(GLfloat, unsigned, 1.0 / UINT_MAX);
  /external/openssh/
digest-openssl.c 161 if (digest == NULL || dlen > UINT_MAX)
190 if (dlen > UINT_MAX)
  /external/llvm/lib/CodeGen/GlobalISel/
RegisterBank.cpp 20 const unsigned RegisterBank::InvalidID = UINT_MAX;
  /external/mesa3d/src/compiler/glsl/
string_to_uint_map.h 58 * implementation, values of \c UINT_MAX cannot be stored in the map.
135 * The net effect is that we can't store UINT_MAX in the table. This is
136 * because UINT_MAX+1 = 0.
138 assert(value != UINT_MAX);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/
RegisterBank.cpp 21 const unsigned RegisterBank::InvalidID = UINT_MAX;
  /external/python/cpython2/Modules/
zlibmodule.c 136 if ((size_t)*remains > UINT_MAX) {
137 zst->avail_in = UINT_MAX;
175 if ((size_t)(length - occupied) > UINT_MAX) {
176 zst->avail_out = UINT_MAX;
1012 while ((size_t)len > UINT_MAX) {
1013 adler32val = adler32(adler32val, buf, UINT_MAX);
1014 buf += (size_t) UINT_MAX;
1015 len -= (size_t) UINT_MAX;
1044 while ((size_t)len > UINT_MAX) {
1045 crc32val = crc32(crc32val, buf, UINT_MAX);
    [all...]
  /external/python/cpython3/Lib/test/
test_structmembers.py 9 INT_MAX, INT_MIN, UINT_MAX, \
59 ts.T_UINT = UINT_MAX
60 self.assertEqual(ts.T_UINT, UINT_MAX)
  /external/python/cpython3/Modules/
zlibmodule.c 136 zst->avail_in = (uInt)Py_MIN((size_t)*remains, UINT_MAX);
171 zst->avail_out = (uInt)Py_MIN((size_t)(length - occupied), UINT_MAX);
457 if (zdict->buf != NULL && (size_t)zdict->len > UINT_MAX) {
518 if ((size_t)zdict_buf.len > UINT_MAX) {
    [all...]

Completed in 1961 milliseconds

12 3 4 5 6 7 8 91011>>