|
int | v8::bigint::Compare (Digits A, Digits B) |
|
void | v8::bigint::Add (RWDigits Z, Digits X, Digits Y) |
|
bool | v8::bigint::AddSigned (RWDigits Z, Digits X, bool x_negative, Digits Y, bool y_negative) |
|
void | v8::bigint::AddOne (RWDigits Z, Digits X) |
|
void | v8::bigint::Subtract (RWDigits Z, Digits X, Digits Y) |
|
bool | v8::bigint::SubtractSigned (RWDigits Z, Digits X, bool x_negative, Digits Y, bool y_negative) |
|
void | v8::bigint::SubtractOne (RWDigits Z, Digits X) |
|
void | v8::bigint::BitwiseAnd_PosPos (RWDigits Z, Digits X, Digits Y) |
|
void | v8::bigint::BitwiseAnd_NegNeg (RWDigits Z, Digits X, Digits Y) |
|
void | v8::bigint::BitwiseAnd_PosNeg (RWDigits Z, Digits X, Digits Y) |
|
void | v8::bigint::BitwiseOr_PosPos (RWDigits Z, Digits X, Digits Y) |
|
void | v8::bigint::BitwiseOr_NegNeg (RWDigits Z, Digits X, Digits Y) |
|
void | v8::bigint::BitwiseOr_PosNeg (RWDigits Z, Digits X, Digits Y) |
|
void | v8::bigint::BitwiseXor_PosPos (RWDigits Z, Digits X, Digits Y) |
|
void | v8::bigint::BitwiseXor_NegNeg (RWDigits Z, Digits X, Digits Y) |
|
void | v8::bigint::BitwiseXor_PosNeg (RWDigits Z, Digits X, Digits Y) |
|
void | v8::bigint::LeftShift (RWDigits Z, Digits X, digit_t shift) |
|
void | v8::bigint::RightShift (RWDigits Z, Digits X, digit_t shift, const RightShiftState &state) |
|
bool | v8::bigint::AsIntN (RWDigits Z, Digits X, bool x_negative, int n) |
|
void | v8::bigint::AsUintN_Pos (RWDigits Z, Digits X, int n) |
|
void | v8::bigint::AsUintN_Neg (RWDigits Z, Digits X, int n) |
|
int | v8::bigint::AddResultLength (int x_length, int y_length) |
|
int | v8::bigint::AddSignedResultLength (int x_length, int y_length, bool same_sign) |
|
int | v8::bigint::SubtractResultLength (int x_length, int y_length) |
|
int | v8::bigint::SubtractSignedResultLength (int x_length, int y_length, bool same_sign) |
|
int | v8::bigint::MultiplyResultLength (Digits X, Digits Y) |
|
int | v8::bigint::DivideResultLength (Digits A, Digits B) |
|
int | v8::bigint::ModuloResultLength (Digits B) |
|
uint32_t | v8::bigint::ToStringResultLength (Digits X, int radix, bool sign) |
|
int | v8::bigint::RightShift_ResultLength (Digits X, bool x_sign, digit_t shift, RightShiftState *state) |
|
int | v8::bigint::AsIntNResultLength (Digits X, bool x_negative, int n) |
|
int | v8::bigint::AsUintN_Pos_ResultLength (Digits X, int n) |
|
int | v8::bigint::AsUintN_Neg_ResultLength (int n) |
|