Home
last modified time | relevance | path

Searched refs:kMinValue (Results 1 - 16 of 16) sorted by relevance

/third_party/node/deps/v8/src/objects/
H A Dtagged-index.h58 return kMinValue <= value && value <= kMaxValue; in IsValid()
68 static constexpr intptr_t kMinValue = member in v8::internal::TaggedIndex
70 static constexpr intptr_t kMaxValue = -(kMinValue + 1);
H A Dsmi.h73 value >= kMinValue && value <= kMaxValue); in IsValid()
96 static constexpr int kMinValue = kSmiMinValue; member in v8::internal::Smi
/third_party/node/deps/v8/src/snapshot/
H A Dserializer-deserializer.h180 // the value as an index in that range, starting at kMinValue; thus the range
182 // [kMinValue, kMinValue + 1, ... , kMaxValue]
185 // where N is the number of values, i.e. kMaxValue - kMinValue + 1.
186 template <Bytecode kBytecode, int kMinValue, int kMaxValue,
189 STATIC_ASSERT((kBytecode + kMaxValue - kMinValue) <= kMaxUInt8);
192 return base::IsInRange(static_cast<int>(value), kMinValue, kMaxValue); in IsEncodable()
197 return static_cast<byte>(kBytecode + static_cast<int>(value) - kMinValue); in Encode()
201 DCHECK(base::IsInRange(bytecode, Encode(static_cast<TValue>(kMinValue)), in Decode()
203 return static_cast<TValue>(bytecode - kBytecode + kMinValue); in Decode()
[all...]
/third_party/node/deps/v8/src/numbers/
H A Dconversions-inl.h150 return value >= Smi::kMinValue && value <= Smi::kMaxValue && in IsSmiDouble()
/third_party/node/deps/v8/src/ic/
H A Dunary-op-assembler.cc87 GotoIf(SmiEqual(smi_value, SmiConstant(Smi::kMinValue)), &if_min_smi); in Negate()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A Dqueryutils.cpp119 constexpr unsigned int kMinValue = 0; in ConvertFromColor() local
121 outParams[0] = std::max(color.colorUI.red, kMinValue); in ConvertFromColor()
122 outParams[1] = std::max(color.colorUI.green, kMinValue); in ConvertFromColor()
123 outParams[2] = std::max(color.colorUI.blue, kMinValue); in ConvertFromColor()
124 outParams[3] = std::max(color.colorUI.alpha, kMinValue); in ConvertFromColor()
/third_party/node/deps/v8/src/codegen/loong64/
H A Dconstants-loong64.h92 static const int64_t kMinValue = 0x8000000000000000l; member in v8::internal::Registers
/third_party/node/deps/v8/src/execution/mips/
H A Dsimulator-mips.cc3996 if (rs() >= (Registers::kMinValue - rt())) { in DecodeTypeRegisterSPECIAL()
4013 if (rs() >= (Registers::kMinValue + rt())) { in DecodeTypeRegisterSPECIAL()
6586 BranchCompactHelper(rs < Registers::kMinValue - rt, 16);
6603 if (rs >= Registers::kMinValue - se_imm16) {
6620 BranchCompactHelper(rs >= Registers::kMinValue - rt, 16);
/third_party/node/deps/v8/src/codegen/mips64/
H A Dconstants-mips64.h218 static const int64_t kMinValue = 0x8000000000000000l; member in v8::internal::Registers
/third_party/node/deps/v8/src/codegen/mips/
H A Dconstants-mips.h256 static const int32_t kMinValue = 0x80000000; member in v8::internal::Registers
/third_party/node/deps/v8/src/deoptimizer/
H A Dtranslated-state.cc421 bool is_smi = (int64_value() >= static_cast<int64_t>(Smi::kMinValue) && in GetRawValue()
/third_party/node/deps/v8/src/execution/mips64/
H A Dsimulator-mips64.cc4083 if (rs() < (Registers::kMinValue - rt())) { in DecodeTypeRegisterSPECIAL()
4107 if (rs() < (Registers::kMinValue + rt())) { in DecodeTypeRegisterSPECIAL()
6906 if (rs >= Registers::kMinValue - se_imm16) {
/third_party/node/deps/v8/src/codegen/riscv64/
H A Dconstants-riscv64.h112 static const int64_t kMinValue = 0x8000000000000000l; member in v8::internal::Registers
/third_party/node/deps/v8/src/init/
H A Dbootstrapper.cc1962 const double kMinValue = 5e-324; in InitializeGlobal() local
1968 factory->NewNumber(kMinValue)); in InitializeGlobal()
/third_party/node/deps/v8/src/interpreter/
H A Dbytecode-generator.cc2032 builder()->LoadLiteral(Smi::kMinValue); in VisitSwitchStatement()
/third_party/node/deps/v8/src/codegen/
H A Dcode-stub-assembler.cc6895 Float64Constant(static_cast<double>(Smi::kMinValue));

Completed in 70 milliseconds