v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
vector-arithmetic.cc File Reference
Include dependency graph for vector-arithmetic.cc:

Go to the source code of this file.

Namespaces

namespace  v8
 
namespace  v8::bigint
 

Functions

digit_t v8::bigint::AddAndReturnOverflow (RWDigits Z, Digits X)
 
digit_t v8::bigint::SubAndReturnBorrow (RWDigits Z, Digits X)
 
void v8::bigint::Add (RWDigits Z, Digits X, Digits Y)
 
void v8::bigint::Subtract (RWDigits Z, Digits X, Digits Y)
 
digit_t v8::bigint::AddAndReturnCarry (RWDigits Z, Digits X, Digits Y)
 
digit_t v8::bigint::SubtractAndReturnBorrow (RWDigits Z, Digits X, Digits Y)
 
bool v8::bigint::AddSigned (RWDigits Z, Digits X, bool x_negative, Digits Y, bool y_negative)
 
bool v8::bigint::SubtractSigned (RWDigits Z, Digits X, bool x_negative, Digits Y, bool y_negative)
 
void v8::bigint::AddOne (RWDigits Z, Digits X)
 
void v8::bigint::SubtractOne (RWDigits Z, Digits X)