Home
last modified time | relevance | path

Searched refs:IsBigInt (Results 1 - 25 of 33) sorted by relevance

12

/third_party/node/src/quic/
H A Ddefs.h49 CHECK_IMPLIES(!value->IsBigInt(), value->IsNumber()); in SetOption()
52 if (value->IsBigInt()) { in SetOption()
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-bigint.cc81 if (value->IsBigInt()) return Handle<BigInt>::cast(value); in ThisBigIntValue()
87 if (data.IsBigInt()) return handle(BigInt::cast(data), isolate); in ThisBigIntValue()
H A Dbuiltins-array-gen.cc909 GotoIfNot(IsBigInt(CAST(element_k)), &continue_loop); in GenerateSmiOrObject()
/third_party/node/src/
H A Dhistogram.cc199 CHECK_IMPLIES(!args[0]->IsNumber(), args[0]->IsBigInt()); in Record()
201 int64_t value = args[0]->IsBigInt() in Record()
253 CHECK_IMPLIES(!args[0]->IsNumber(), args[0]->IsBigInt()); in New()
254 CHECK_IMPLIES(!args[1]->IsNumber(), args[1]->IsBigInt()); in New()
264 } else if (args[0]->IsBigInt()) { in New()
270 } else if (args[1]->IsBigInt()) { in New()
H A Djs_native_api_v8.cc3219 } else if (v->IsBigInt()) {
3567 RETURN_STATUS_IF_FALSE(env, val->IsBigInt(), JSVM_BIGINT_EXPECTED);
3585 RETURN_STATUS_IF_FALSE(env, val->IsBigInt(), JSVM_BIGINT_EXPECTED);
3603 RETURN_STATUS_IF_FALSE(env, val->IsBigInt(), JSVM_BIGINT_EXPECTED);
3891 if (val->IsBigInt()) {
5085 *isBigInt = val->IsBigInt();
H A Dnode_wasi.cc49 if (!(input)->IsBigInt()) { \
/third_party/node/deps/v8/src/runtime/
H A Druntime-bigint.cc107 if (!left_obj->IsBigInt() || !right_obj->IsBigInt()) { in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/objects/
H A Dobjects-inl.h298 this_heap_object.IsBigInt(cage_base); in IsNumeric()
302 return IsNumber(cage_base) || IsBigInt(cage_base); in IsNumeric()
379 JSPrimitiveWrapper::cast(*this).value().IsBigInt(cage_base); in DEF_GETTER()
595 if (input->IsNumber() || input->IsBigInt()) return input; // Shortcut. in ToNumeric()
1143 } else if (InstanceTypeChecker::IsBigInt(instance_type)) { in GetSimpleHash()
1269 SLOW_DCHECK(object.IsBigInt()); in cast()
H A Djs-number-format.cc1655 if (numeric_obj->IsBigInt()) { in IcuFormatNumber()
1709 if (obj->IsBigInt()) { in ToFormattable()
1921 if (v->IsBigInt()) return false; in IsPositiveInfinity()
1931 if (v->IsBigInt()) return false; in IsNegativeInfinity()
1942 if (v->IsBigInt()) return false; in IsNegativeZero()
H A Dobjects.cc317 if (input->IsBigInt()) { in ConvertToNumberOrNumeric()
410 if (input->IsBigInt()) { in ConvertToString()
483 } else if (input->IsBigInt()) { in NoSideEffectsToMaybeString()
656 if (IsBigInt()) return BigInt::cast(*this).ToBoolean(); in BooleanValue()
722 if (x->IsBigInt() && y->IsString()) { in Compare()
726 if (x->IsString() && y->IsBigInt()) { in Compare()
771 } else if (y->IsBigInt()) { in Equals()
792 } else if (y->IsBigInt()) { in Equals()
813 } else if (y->IsBigInt()) { in Equals()
836 } else if (x->IsBigInt()) { in Equals()
[all...]
H A Dbigint.cc72 SLOW_DCHECK(bigint->IsBigInt()); in Cast()
76 SLOW_DCHECK(o.IsBigInt()); in cast()
136 bool IsMutableBigInt() const { return IsBigInt(); } in IsMutableBigInt()
1045 if (obj->IsBigInt()) { in FromObject()
H A Delements.cc3363 if (!value->IsBigInt()) return Just(false); in IncludesValueImpl()
3433 if (!value->IsBigInt()) return Just<int64_t>(-1); in IndexOfValueImpl()
3480 if (!value->IsBigInt()) return Just<int64_t>(-1); in LastIndexOfValueImpl()
H A Dvalue-serializer.cc820 } else if (inner_value.IsBigInt(cage_base)) { in WriteJSPrimitiveWrapper()
/third_party/node/deps/v8/include/
H A Dv8-value.h121 bool IsBigInt() const;
/third_party/node/deps/v8/include/v8-include/
H A Dv8-value.h121 bool IsBigInt() const;
/third_party/node/deps/v8/src/ic/
H A Dbinary-op-assembler.cc161 Branch(IsBigInt(rhs_heap_object), &bigint, &call_with_any_feedback); in Generate_AddWithFeedback()
380 Branch(IsBigInt(CAST(rhs)), &if_both_bigint, &call_with_any_feedback); in Generate_BinaryOperationWithFeedback()
/third_party/node/deps/v8/src/api/
H A Dapi-arguments-inl.h25 IsBigInt() || IsUndefined() || IsTrue() || IsFalse() || IsNull())) { in VerifyApiCallResultType()
/third_party/node/deps/v8/src/heap/
H A Dlarge-spaces.cc402 object.IsBigInt(cage_base) || // in Verify()
/third_party/node/deps/v8/src/inspector/
H A Dv8-console-message.cc100 if (value->IsBigInt()) return append(value.As<v8::BigInt>()); in append()
H A Dvalue-mirror.cc1684 if (value->IsBigInt()) { in create()
/third_party/node/deps/v8/src/compiler/
H A Dheap-refs.cc767 } else if (InstanceTypeChecker::IsBigInt(t)) { in TryGetBooleanValueImpl()
H A Drepresentation-change.cc1121 if (m.HasResolvedValue() && m.Ref(broker_).IsBigInt() && in GetWord64RepresentationFor()
/third_party/node/deps/v8/src/interpreter/
H A Dinterpreter-assembler.cc1586 GotoIfNot(IsBigInt(CAST(object)), &not_bigint); in ToNumberOrNumeric()
H A Dinterpreter-generator.cc1833 Branch(IsBigInt(CAST(object)), &if_true, &if_false); in IGNITION_HANDLER()
/third_party/node/deps/v8/src/wasm/
H A Dmodule-instantiate.cc1555 if (global.type == kWasmI64 && value->IsBigInt()) { in ProcessImportedGlobal()

Completed in 67 milliseconds

12