Home
last modified time | relevance | path

Searched refs:UnaryMinus (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/runtime/
Druntime-bigint.cc170 result = BigInt::UnaryMinus(isolate, x); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/objects/
Dbigint.h155 static Handle<BigInt> UnaryMinus(Isolate* isolate, Handle<BigInt> x);
Dbigint.cc353 Handle<BigInt> BigInt::UnaryMinus(Isolate* isolate, Handle<BigInt> x) { in UnaryMinus() function in v8::internal::BigInt
393 return UnaryMinus(isolate, base); in Exponentiate()
483 return result_sign == x->sign() ? x : UnaryMinus(isolate, x); in Divide()
553 if (x->is_zero()) return UnaryMinus(isolate, y); in Subtract()
Djs-temporal-objects.cc3928 nanoseconds = BigInt::UnaryMinus(isolate, nanoseconds); in NanosecondsToDays()