Home
last modified time | relevance | path

Searched refs:kMaxInt (Results 1 – 7 of 7) sorted by relevance

/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.cc36 const int kMaxInt = std::numeric_limits<int>::max(); in ParseInt() local
40 if (value > kMaxInt / 10) return nullptr; in ParseInt()
42 if (value > kMaxInt - d) return nullptr; in ParseInt()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.cc36 const int kMaxInt = std::numeric_limits<int>::max(); in ParseInt() local
40 if (value > kMaxInt / 10) return nullptr; in ParseInt()
42 if (value > kMaxInt - d) return nullptr; in ParseInt()
/third_party/flutter/skia/src/gpu/
DGrSoftwarePathRenderer.cpp55 static constexpr int32_t kMaxInt = 2147483520; in get_unclipped_shape_dev_bounds() local
56 if (!shapeDevBounds.intersect(SkRect::MakeLTRB(INT32_MIN, INT32_MIN, kMaxInt, kMaxInt))) { in get_unclipped_shape_dev_bounds()
60 if (SkScalarRoundToInt(shapeDevBounds.width()) > kMaxInt || in get_unclipped_shape_dev_bounds()
61 SkScalarRoundToInt(shapeDevBounds.height()) > kMaxInt) { in get_unclipped_shape_dev_bounds()
DGrBlurUtils.cpp215 static constexpr int32_t kMaxInt = 2147483520; in get_unclipped_shape_dev_bounds() local
216 if (!shapeDevBounds.intersect(SkRect::MakeLTRB(INT32_MIN, INT32_MIN, kMaxInt, kMaxInt))) { in get_unclipped_shape_dev_bounds()
220 if (SkScalarRoundToInt(shapeDevBounds.width()) > kMaxInt || in get_unclipped_shape_dev_bounds()
221 SkScalarRoundToInt(shapeDevBounds.height()) > kMaxInt) { in get_unclipped_shape_dev_bounds()
/third_party/skia/src/gpu/ops/
DSoftwarePathRenderer.cpp71 static constexpr int32_t kMaxInt = 2147483520; in get_unclipped_shape_dev_bounds() local
72 if (!shapeDevBounds.intersect(SkRect::MakeLTRB(INT32_MIN, INT32_MIN, kMaxInt, kMaxInt))) { in get_unclipped_shape_dev_bounds()
76 if (SkScalarRoundToInt(shapeDevBounds.width()) > kMaxInt || in get_unclipped_shape_dev_bounds()
77 SkScalarRoundToInt(shapeDevBounds.height()) > kMaxInt) { in get_unclipped_shape_dev_bounds()
/third_party/skia/src/gpu/
DGrBlurUtils.cpp250 static constexpr int32_t kMaxInt = 2147483520; in get_unclipped_shape_dev_bounds() local
251 if (!shapeDevBounds.intersect(SkRect::MakeLTRB(INT32_MIN, INT32_MIN, kMaxInt, kMaxInt))) { in get_unclipped_shape_dev_bounds()
255 if (SkScalarRoundToInt(shapeDevBounds.width()) > kMaxInt || in get_unclipped_shape_dev_bounds()
256 SkScalarRoundToInt(shapeDevBounds.height()) > kMaxInt) { in get_unclipped_shape_dev_bounds()
/third_party/node/lib/internal/http2/
Dcore.js196 const kMaxInt = (2 ** 32) - 1; constant
915 0, kMaxInt);
918 0, kMaxInt);
927 0, kMaxInt);
930 0, kMaxInt);
2210 if (code < 0 || code > kMaxInt)
2211 throw new ERR_OUT_OF_RANGE('code', `>= 0 && <= ${kMaxInt}`, code);