HomeSort by relevance Sort by last modified time
    Searched refs:INT_MAX (Results 201 - 225 of 388) sorted by null

1 2 3 4 5 6 7 891011>>

  /system/core/adb/
usb_vendors.c 196 if (errno == EINVAL || errno == ERANGE || value > INT_MAX || value < 0) {
  /dalvik/vm/alloc/
Heap.cpp 464 int oldThreadPriority = INT_MAX;
645 if (oldThreadPriority != INT_MAX) {
  /external/chromium/testing/gmock/test/
gmock-cardinalities_test.cc 130 EXPECT_EQ(INT_MAX, c.ConservativeUpperBound());
185 EXPECT_EQ(INT_MAX, c.ConservativeUpperBound());
  /external/webkit/Source/JavaScriptCore/wtf/
ThreadingWin.cpp 348 else if (++m_waitersGone == (INT_MAX / 2)) { // timeout/canceled or spurious semaphore
493 if (absoluteTime - currentTime > static_cast<double>(INT_MAX) / 1000.0)
  /ndk/sources/host-tools/sed-4.2.1/sed/
fmt.c 35 #ifndef INT_MAX
36 # define INT_MAX ((int) (UINT_MAX >> 1))
  /external/tremolo/Tremolo/
codebook.c 239 if (s->used_entries > INT_MAX/2 ||
240 s->used_entries*2 > INT_MAX/((long) sizeof(*work)) - 1) return 1;
244 if (s->used_entries > INT_MAX/(s->dec_leafw+1)) return 1;
245 if (s->dec_nodeb && s->used_entries * (s->dec_leafw+1) > INT_MAX/s->dec_nodeb) return 1;
400 if (s->dim > INT_MAX/s->entries) goto _eofout;
496 if (s->dim > (INT_MAX-8)/s->q_bits) goto _eofout;
  /external/webkit/Source/WebCore/rendering/
RenderFlexibleBox.cpp 514 int projectedFlex = (allowedFlex == INT_MAX) ? allowedFlex : (int)(allowedFlex * (totalFlex / child->style()->boxFlex()));
789 int projectedFlex = (allowedFlex == INT_MAX) ? allowedFlex : (int)(allowedFlex * (totalFlex / child->style()->boxFlex()));
    [all...]
RenderText.cpp 285 // that would cause many ripple effects, so for now we'll just clamp our unsigned parameters to INT_MAX.
286 ASSERT(end == UINT_MAX || end <= INT_MAX);
287 ASSERT(start <= INT_MAX);
288 start = min(start, static_cast<unsigned>(INT_MAX));
289 end = min(end, static_cast<unsigned>(INT_MAX));
375 // that would cause many ripple effects, so for now we'll just clamp our unsigned parameters to INT_MAX.
376 ASSERT(end == UINT_MAX || end <= INT_MAX);
377 ASSERT(start <= INT_MAX);
378 start = min(start, static_cast<unsigned>(INT_MAX));
379 end = min(end, static_cast<unsigned>(INT_MAX));
    [all...]
  /external/libvpx/vp8/encoder/
onyx_if.c 776 sf->thresh_mult[THR_SPLITA ] = INT_MAX;
777 sf->thresh_mult[THR_SPLITG ] = INT_MAX;
778 sf->thresh_mult[THR_SPLITMV ] = INT_MAX;
799 sf->full_freq[0] = INT_MAX;
800 sf->full_freq[1] = INT_MAX;
968 sf->thresh_mult[THR_SPLITMV ] = INT_MAX;
969 sf->thresh_mult[THR_SPLITG ] = INT_MAX;
970 sf->thresh_mult[THR_SPLITA ] = INT_MAX;
979 sf->full_freq[0] = INT_MAX;
980 sf->full_freq[1] = INT_MAX;
    [all...]
  /external/webkit/Source/WebKit/android/nav/
CachedRoot.cpp 268 LeftCheck(int x, int y) : mX(x), mY(y), mHitLeft(INT_MAX),
269 mMostLeft(INT_MAX) {
279 return mMostLeft != INT_MAX ? mMostLeft : mX >> 1;
311 if (mHitLeft == INT_MAX)
329 } else if (mHitLeft == INT_MAX)
338 mHitLeft = INT_MAX; // and disable future comparisons
346 mHitLeft = INT_MAX;
390 mHitLeft(x), mHitRight(x), mMostLeft(INT_MAX), mMostRight(-INT_MAX),
854 return INT_MAX;
    [all...]
  /external/iptables/extensions/
libxt_time.c 85 info->date_stop = INT_MAX;
400 if (info->date_stop != INT_MAX) {
  /external/libpcap/
inet.c 76 #define INT_MAX 2147483647
115 return INT_MAX;
  /external/opencv/cxcore/src/
cxnorm.cpp     [all...]
  /external/stlport/test/unit/
sstream_test.cpp 205 s << INT_MAX << " " << UINT_MAX << " " << LONG_MAX << " " << ULONG_MAX << " "
216 CPPUNIT_ASSERT( i == INT_MAX );
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebPageMac.mm 356 if (nsrange.location > INT_MAX)
358 if (nsrange.length > INT_MAX || nsrange.location + nsrange.length > INT_MAX)
359 nsrange.length = INT_MAX - nsrange.location;
  /ndk/tests/device/test-gnustl-full/unit/
sstream_test.cpp 205 s << INT_MAX << " " << UINT_MAX << " " << LONG_MAX << " " << ULONG_MAX << " "
216 CPPUNIT_ASSERT( i == INT_MAX );
  /ndk/tests/device/test-stlport/unit/
sstream_test.cpp 205 s << INT_MAX << " " << UINT_MAX << " " << LONG_MAX << " " << ULONG_MAX << " "
216 CPPUNIT_ASSERT( i == INT_MAX );
  /external/pcre/
pcre_exec.c     [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 450 ProducerConsumerQueue Q(INT_MAX);
796 ProducerConsumerQueue Q(INT_MAX);
897 ProducerConsumerQueue Q1(INT_MAX), Q2(INT_MAX);
1105 CHECK(MU.AwaitWithTimeout(Condition(&ArgIsOne, &COND), INT_MAX));
    [all...]
  /external/valgrind/unittest/
racecheck_unittest.cc 212 ProducerConsumerQueue Q(INT_MAX);
502 ProducerConsumerQueue Q(INT_MAX);
603 ProducerConsumerQueue Q1(INT_MAX), Q2(INT_MAX);
810 CHECK(MU.AwaitWithTimeout(Condition(&ArgIsOne, &COND), INT_MAX));
1026 CHECK(MU.ReaderLockWhenWithTimeout(Condition(&ArgIsOne, &COND), INT_MAX));
1103 ProducerConsumerQueue Q(INT_MAX);
1171 Q1 = new ProducerConsumerQueue(INT_MAX);
1172 Q2 = new ProducerConsumerQueue(INT_MAX);
    [all...]
  /bionic/libc/bionic/
semaphore.c 350 __futex_wake_ex(&sem->count, shared, INT_MAX);
  /external/chromium/app/sql/
connection.cc 37 DCHECK_LT(timeout.InMilliseconds(), INT_MAX);
  /external/elfutils/libdw/
memory-access.h 95 /* Other implementation set VALUE to INT_MAX in this \
97 __res = INT_MAX; \
  /external/mesa3d/src/glsl/
loop_controls.cpp 194 max_iterations = INT_MAX;
  /external/oprofile/gui/
oprof_start.cpp 181 iv = new QIntValidator(0, INT_MAX, callgraph_depth_edit);
183 iv = new QIntValidator(0, INT_MAX, buffer_watershed_edit);
682 if (temp > INT_MAX) {
687 << INT_MAX << "]";

Completed in 624 milliseconds

1 2 3 4 5 6 7 891011>>