Home
last modified time | relevance | path

Searched refs:kMinValue (Results 1 – 17 of 17) sorted by relevance

/third_party/node/deps/v8/src/snapshot/
Dserializer-deserializer.h186 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()
/third_party/node/deps/v8/src/objects/
Dtagged-index.h58 return kMinValue <= value && value <= kMaxValue; in IsValid()
68 static constexpr intptr_t kMinValue = variable
70 static constexpr intptr_t kMaxValue = -(kMinValue + 1);
Dsmi.h73 value >= kMinValue && value <= kMaxValue); in IsValid()
96 static constexpr int kMinValue = kSmiMinValue; variable
/third_party/node/deps/v8/src/numbers/
Dconversions-inl.h150 return value >= Smi::kMinValue && value <= Smi::kMaxValue && in IsSmiDouble()
/third_party/cef/libcef/browser/osr/
Dosr_accessibility_util.cc44 for (unsigned i = static_cast<unsigned>(ax::mojom::Role::kMinValue) + 1; in ToCefValue()
306 for (int action_index = static_cast<int>(ax::mojom::Action::kMinValue) + 1; in ToCefValue()
/third_party/node/deps/v8/src/ic/
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/
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/
Dconstants-loong64.h92 static const int64_t kMinValue = 0x8000000000000000l; variable
/third_party/node/deps/v8/src/codegen/mips/
Dconstants-mips.h256 static const int32_t kMinValue = 0x80000000; variable
/third_party/node/deps/v8/src/execution/mips/
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); in DecodeTypeImmediate()
6603 if (rs >= Registers::kMinValue - se_imm16) { in DecodeTypeImmediate()
6620 BranchCompactHelper(rs >= Registers::kMinValue - rt, 16); in DecodeTypeImmediate()
/third_party/node/deps/v8/src/codegen/mips64/
Dconstants-mips64.h218 static const int64_t kMinValue = 0x8000000000000000l; variable
/third_party/node/deps/v8/src/codegen/riscv64/
Dconstants-riscv64.h112 static const int64_t kMinValue = 0x8000000000000000l; variable
/third_party/node/deps/v8/src/deoptimizer/
Dtranslated-state.cc421 bool is_smi = (int64_value() >= static_cast<int64_t>(Smi::kMinValue) && in GetRawValue()
/third_party/node/deps/v8/src/execution/mips64/
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) { in DecodeTypeImmediate()
/third_party/node/deps/v8/src/init/
Dbootstrapper.cc1962 const double kMinValue = 5e-324; in InitializeGlobal() local
1968 factory->NewNumber(kMinValue)); in InitializeGlobal()
/third_party/node/deps/v8/src/interpreter/
Dbytecode-generator.cc2032 builder()->LoadLiteral(Smi::kMinValue); in VisitSwitchStatement()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc6895 Float64Constant(static_cast<double>(Smi::kMinValue)); in IsNumberNormalized()