Home
last modified time | relevance | path

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

1234

/third_party/node/deps/v8/src/date/
H A 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/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
H A 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/src/gpu/ops/
H A 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/
H A DGrBlurUtils.cpp256 static constexpr int32_t kMaxInt = 2147483520; in get_unclipped_shape_dev_bounds() local
257 if (!shapeDevBounds.intersect(SkRect::MakeLTRB(INT32_MIN, INT32_MIN, kMaxInt, kMaxInt))) { in get_unclipped_shape_dev_bounds()
261 if (SkScalarRoundToInt(shapeDevBounds.width()) > kMaxInt || in get_unclipped_shape_dev_bounds()
262 SkScalarRoundToInt(shapeDevBounds.height()) > kMaxInt) { in get_unclipped_shape_dev_bounds()
/third_party/node/deps/v8/src/wasm/
H A Dsignature-map.cc18 CHECK_GE(kMaxInt, map_.size()); in FindOrInsert()
H A 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()
H A Dwasm-result.cc27 DCHECK_GE(kMaxInt, len); in VPrintFToString()
/third_party/node/deps/v8/src/compiler/
H A Doperator.cc21 static_cast<size_t>(kMaxInt))); in CheckRange()
H A Dlinkage.cc143 uint32_t first_offset = kMaxInt; in GetTaggedParameterSlots()
157 DCHECK(first_offset != kMaxInt); in GetTaggedParameterSlots()
H A 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/
H A Dbaseline-compiler-loong64-inl.h40 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/riscv64/
H A Dbaseline-compiler-riscv64-inl.h39 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/mips64/
H A Dbaseline-compiler-mips64-inl.h40 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/mips/
H A Dbaseline-compiler-mips-inl.h40 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/ia32/
H A Dbaseline-compiler-ia32-inl.h43 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/s390/
H A Dbaseline-compiler-s390-inl.h44 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/x64/
H A Dbaseline-compiler-x64-inl.h45 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/arm64/
H A Dbaseline-compiler-arm64-inl.h46 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/baseline/arm/
H A Dbaseline-compiler-arm-inl.h44 const bool has_new_target = new_target_index != kMaxInt; in PrologueFillFrame()
/third_party/node/deps/v8/src/profiler/
H A Doutput-stream-writer.h58 DCHECK_GE(kMaxInt, len);
/third_party/node/deps/v8/src/interpreter/
H A Dbytecode-register.h114 static const int kInvalidIndex = kMaxInt;
/third_party/node/deps/v8/src/numbers/
H A Dconversions-inl.h155 return value >= kMinInt && value <= kMaxInt && !IsMinusZero(value) && in IsInt32Double()
/third_party/node/deps/v8/src/strings/
H A Dstring-builder-inl.h98 STATIC_ASSERT(String::kMaxLength < kMaxInt); in IncrementCharacterCount()
99 character_count_ = kMaxInt; in IncrementCharacterCount()
/third_party/node/deps/v8/src/common/
H A Dglobals.h193 constexpr int kMaxInt = 0x7FFFFFFF; member
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/
H A Dcore.js218 const kMaxInt = (2 ** 32) - 1;
938 // 1. headerTableSize must be a number in the range 0 <= n <= kMaxInt
939 // 2. initialWindowSize must be a number in the range 0 <= n <= kMaxInt
942 // 5. maxHeaderListSize must be a number in the range 0 <= n <= kMaxInt
950 0, kMaxInt);
953 0, kMaxInt);
962 0, kMaxInt);
965 0, kMaxInt);
2283 validateInteger(code, 'code', 0, kMaxInt);

Completed in 21 milliseconds

1234