Searched refs:most_significant_bigit (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/
H A Dbignum.cc150 Chunk most_significant_bigit = 0; // Could be = 0; local
152 most_significant_bigit <<= 4;
153 most_significant_bigit += HexCharValue(value[j]);
155 if (most_significant_bigit != 0) {
156 bigits_[used_digits_] = most_significant_bigit;
601 Chunk most_significant_bigit = bigits_[used_digits_ - 1];
602 while (most_significant_bigit != 0) {
603 buffer[string_index--] = HexCharOfValue(most_significant_bigit & 0xF);
604 most_significant_bigit >>= 4;

Completed in 41 milliseconds