Searched refs:words64_count (Results 1 – 2 of 2) sorted by relevance
159 int words64_count,164 void ToWordsArray64(int* sign_bit, int* words64_count, uint64_t* words);
2302 int words64_count, in FromWords64() argument2304 if (words64_count < 0 || words64_count > kMaxLength / (64 / kDigitBits)) { in FromWords64()2308 if (words64_count == 0) return MutableBigInt::Zero(isolate); in FromWords64()2310 int length = (64 / kDigitBits) * words64_count; in FromWords64()2312 if (kDigitBits == 32 && words[words64_count - 1] <= (1ULL << 32)) length--; in FromWords64()2342 void BigInt::ToWordsArray64(int* sign_bit, int* words64_count, in ToWordsArray64() argument2345 DCHECK_NE(words64_count, nullptr); in ToWordsArray64()2347 int available_words = *words64_count; in ToWordsArray64()2348 *words64_count = Words64Count(); in ToWordsArray64()