Home
last modified time | relevance | path

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

1234

/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/node/deps/v8/src/date/
Ddate.h24 static const int kMaxEpochTimeInSec = kMaxInt;
25 static const int64_t kMaxEpochTimeInMs = static_cast<int64_t>(kMaxInt) * 1000;
36 static const int kInvalidLocalOffsetInMs = kMaxInt;
/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/deps/v8/src/wasm/
Dsignature-map.cc18 CHECK_GE(kMaxInt, map_.size()); in FindOrInsert()
Dstreaming-decoder.cc659 DCHECK_GE(kMaxInt, section_buffer_->module_offset() + in NextWithValue()
663 DCHECK_GE(kMaxInt, payload_buf.length()); in NextWithValue()
665 DCHECK_GE(kMaxInt, value_); in NextWithValue()
Dwasm-result.cc27 DCHECK_GE(kMaxInt, len); in VPrintFToString()
/third_party/node/deps/v8/src/compiler/
Doperator.cc21 static_cast<size_t>(kMaxInt))); in CheckRange()
Dlinkage.cc143 uint32_t first_offset = kMaxInt; in GetTaggedParameterSlots()
157 DCHECK(first_offset != kMaxInt); in GetTaggedParameterSlots()
Doperation-typer.cc857 double max = kMaxInt; in NumberBitwiseOr()
952 if (max_lhs > (kMaxInt >> max_rhs) || min_lhs < (kMinInt >> max_rhs)) { in NumberShiftLeft()
964 if (max == kMaxInt && min == kMinInt) return Type::Signed32(); in NumberShiftLeft()
989 if (max == kMaxInt && min == kMinInt) return Type::Signed32(); in NumberShiftRight()
1017 if (min == 0 && max == kMaxInt) return Type::Unsigned31(); in NumberShiftRightLogical()
/third_party/node/deps/v8/src/baseline/loong64/
Dbaseline-compiler-loong64-inl.h40 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/mips64/
Dbaseline-compiler-mips64-inl.h40 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/mips/
Dbaseline-compiler-mips-inl.h40 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/riscv64/
Dbaseline-compiler-riscv64-inl.h39 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/arm/
Dbaseline-compiler-arm-inl.h44 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/ia32/
Dbaseline-compiler-ia32-inl.h43 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/x64/
Dbaseline-compiler-x64-inl.h45 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/s390/
Dbaseline-compiler-s390-inl.h44 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/strings/
Dstring-builder-inl.h98 STATIC_ASSERT(String::kMaxLength < kMaxInt); in IncrementCharacterCount()
99 character_count_ = kMaxInt; in IncrementCharacterCount()
/third_party/node/deps/v8/src/baseline/arm64/
Dbaseline-compiler-arm64-inl.h46 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/interpreter/
Dbytecode-register.h114 static const int kInvalidIndex = kMaxInt;
/third_party/node/deps/v8/src/numbers/
Dconversions-inl.h155 return value >= kMinInt && value <= kMaxInt && !IsMinusZero(value) && in IsInt32Double()
/third_party/node/deps/v8/src/common/
Dglobals.h193 constexpr int kMaxInt = 0x7FFFFFFF; variable
194 constexpr int kMinInt = -kMaxInt - 1;
203 constexpr int kMaxInt31 = kMaxInt / 2;
1822 enum StackFrameId { ID_MIN_VALUE = kMinInt, ID_MAX_VALUE = kMaxInt, NO_ID = 0 };
/third_party/node/lib/internal/http2/
Dcore.js218 const kMaxInt = (2 ** 32) - 1; constant
950 0, kMaxInt);
953 0, kMaxInt);
962 0, kMaxInt);
965 0, kMaxInt);
2283 validateInteger(code, 'code', 0, kMaxInt);
/third_party/node/deps/v8/src/objects/
Djs-array-buffer.h32 static constexpr size_t kMaxByteLength = kMaxInt;

1234