Lines Matching defs:base
5 #include "src/base/numbers/bignum.h"
7 #include "src/base/strings.h"
10 namespace base {
375 void Bignum::AssignPowerUInt16(uint16_t base, int power_exponent) {
376 DCHECK_NE(base, 0);
384 // We expect base to be in range 2-32, and most often to be 10.
387 while ((base & 1) == 0) {
388 base >>= 1;
392 int tmp_base = base;
409 uint64_t this_value = base;
422 this_value *= base;
431 MultiplyByUInt32(base);
438 MultiplyByUInt32(base);
716 } // namespace base