Home
last modified time | relevance | path

Searched refs:digitA (Results 1 – 2 of 2) sorted by relevance

/third_party/protobuf/js/experimental/runtime/
Dint64.js269 let digitA = low + (mid * 6777216) + (high * 6710656); variable
275 if (digitA >= base) {
276 digitB += Math.floor(digitA / base);
277 digitA %= base;
291 decimalFrom1e7WithLeadingZeros(digitA);
/third_party/protobuf/js/binary/
Dutils.js534 var digitA = low + (mid * 6777216) + (high * 6710656);
540 if (digitA >= base) {
541 digitB += Math.floor(digitA / base);
542 digitA %= base;
563 decimalFrom1e7(digitA, /*needLeadingZeros=*/ 1);