Home
last modified time | relevance | path

Searched refs:ShiftLeft (Results 1 – 25 of 46) sorted by relevance

12

/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcharconv_bigint_test.cc25 TEST(BigUnsigned, ShiftLeft) { in TEST() argument
29 num.ShiftLeft(100); in TEST()
41 a.ShiftLeft(125); in TEST()
42 b.ShiftLeft(125); in TEST()
43 c.ShiftLeft(125); in TEST()
52 a.ShiftLeft(84 * 32 - 3); in TEST()
53 b.ShiftLeft(84 * 32 - 3); in TEST()
54 c.ShiftLeft(84 * 32 - 3); in TEST()
64 a.ShiftLeft(1); in TEST()
66 b.ShiftLeft(i); in TEST()
[all …]
Dcharconv_bigint.h102 void ShiftLeft(int count) { in ShiftLeft() function
180 ShiftLeft(n); in MultiplyByTenToTheNth()
/third_party/icu/vendor/double-conversion/upstream/test/cctest/
Dtest-bignum.cc122 TEST(ShiftLeft) { in TEST() argument
126 bignum.ShiftLeft(100); in TEST()
131 bignum.ShiftLeft(1); in TEST()
136 bignum.ShiftLeft(4); in TEST()
141 bignum.ShiftLeft(32); in TEST()
146 bignum.ShiftLeft(64); in TEST()
151 bignum.ShiftLeft(64); in TEST()
154 bignum.ShiftLeft(1); in TEST()
199 bignum.ShiftLeft(100); in TEST()
205 bignum.ShiftLeft(100); in TEST()
[all …]
/third_party/node/deps/v8/src/base/numbers/
Dbignum-dtoa.cc372 numerator->ShiftLeft(Double(v).Exponent()); in InitialScaledStartValuesPositiveExponent()
379 denominator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
380 numerator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
384 delta_plus->ShiftLeft(Double(v).Exponent()); in InitialScaledStartValuesPositiveExponent()
387 delta_minus->ShiftLeft(Double(v).Exponent()); in InitialScaledStartValuesPositiveExponent()
398 denominator->ShiftLeft(1); // *2 in InitialScaledStartValuesPositiveExponent()
399 numerator->ShiftLeft(1); // *2 in InitialScaledStartValuesPositiveExponent()
400 delta_plus->ShiftLeft(1); // *2 in InitialScaledStartValuesPositiveExponent()
421 denominator->ShiftLeft(-exponent); in InitialScaledStartValuesNegativeExponentPositivePower()
426 denominator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentPositivePower()
[all …]
Dstrtod.cc374 boundary.ShiftLeft(upper_boundary.e()); in BignumStrtod()
376 input.ShiftLeft(-upper_boundary.e()); in BignumStrtod()
Dbignum.h39 void ShiftLeft(int shift_amount);
Dbignum.cc206 void Bignum::ShiftLeft(int shift_amount) { in ShiftLeft() function in v8::base::Bignum
301 ShiftLeft(exponent); in MultiplyByPowerOfTen()
444 ShiftLeft(shifts * power_exponent); in AssignPowerUInt16()
/third_party/icu/icu4c/source/i18n/
Ddouble-conversion-bignum-dtoa.cpp443 numerator->ShiftLeft(exponent); in InitialScaledStartValuesPositiveExponent()
450 denominator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
451 numerator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
455 delta_plus->ShiftLeft(exponent); in InitialScaledStartValuesPositiveExponent()
458 delta_minus->ShiftLeft(exponent); in InitialScaledStartValuesPositiveExponent()
479 denominator->ShiftLeft(-exponent); in InitialScaledStartValuesNegativeExponentPositivePower()
484 denominator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentPositivePower()
485 numerator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentPositivePower()
528 denominator->ShiftLeft(-exponent); in InitialScaledStartValuesNegativeExponentNegativePower()
533 numerator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentNegativePower()
[all …]
Ddouble-conversion-bignum.h73 void ShiftLeft(const int shift_amount);
Ddouble-conversion-bignum.cpp253 void Bignum::ShiftLeft(const int shift_amount) { in ShiftLeft() function in double_conversion::Bignum
365 ShiftLeft(exponent); in MultiplyByPowerOfTen()
511 ShiftLeft(shifts * power_exponent); in AssignPowerUInt16()
Ddouble-conversion-strtod.cpp423 diy_fp_bignum.ShiftLeft(diy_fp.e()); in CompareBufferWithDiyFp()
425 buffer_bignum.ShiftLeft(-diy_fp.e()); in CompareBufferWithDiyFp()
/third_party/node/deps/icu-small/source/i18n/
Ddouble-conversion-bignum-dtoa.cpp443 numerator->ShiftLeft(exponent); in InitialScaledStartValuesPositiveExponent()
450 denominator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
451 numerator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
455 delta_plus->ShiftLeft(exponent); in InitialScaledStartValuesPositiveExponent()
458 delta_minus->ShiftLeft(exponent); in InitialScaledStartValuesPositiveExponent()
479 denominator->ShiftLeft(-exponent); in InitialScaledStartValuesNegativeExponentPositivePower()
484 denominator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentPositivePower()
485 numerator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentPositivePower()
528 denominator->ShiftLeft(-exponent); in InitialScaledStartValuesNegativeExponentNegativePower()
533 numerator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentNegativePower()
[all …]
Ddouble-conversion-bignum.h73 void ShiftLeft(const int shift_amount);
Ddouble-conversion-bignum.cpp253 void Bignum::ShiftLeft(const int shift_amount) { in ShiftLeft() function in double_conversion::Bignum
365 ShiftLeft(exponent); in MultiplyByPowerOfTen()
511 ShiftLeft(shifts * power_exponent); in AssignPowerUInt16()
Ddouble-conversion-strtod.cpp423 diy_fp_bignum.ShiftLeft(diy_fp.e()); in CompareBufferWithDiyFp()
425 buffer_bignum.ShiftLeft(-diy_fp.e()); in CompareBufferWithDiyFp()
/third_party/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion-bignum-dtoa.cpp443 numerator->ShiftLeft(exponent); in InitialScaledStartValuesPositiveExponent()
450 denominator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
451 numerator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
455 delta_plus->ShiftLeft(exponent); in InitialScaledStartValuesPositiveExponent()
458 delta_minus->ShiftLeft(exponent); in InitialScaledStartValuesPositiveExponent()
479 denominator->ShiftLeft(-exponent); in InitialScaledStartValuesNegativeExponentPositivePower()
484 denominator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentPositivePower()
485 numerator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentPositivePower()
528 denominator->ShiftLeft(-exponent); in InitialScaledStartValuesNegativeExponentNegativePower()
533 numerator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentNegativePower()
[all …]
Ddouble-conversion-bignum.h73 void ShiftLeft(const int shift_amount);
Ddouble-conversion-bignum.cpp252 void Bignum::ShiftLeft(const int shift_amount) { in ShiftLeft() function in double_conversion::Bignum
364 ShiftLeft(exponent); in MultiplyByPowerOfTen()
510 ShiftLeft(shifts * power_exponent); in AssignPowerUInt16()
Ddouble-conversion-strtod.cpp423 diy_fp_bignum.ShiftLeft(diy_fp.e()); in CompareBufferWithDiyFp()
425 buffer_bignum.ShiftLeft(-diy_fp.e()); in CompareBufferWithDiyFp()
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
Dbignum-dtoa.cc429 numerator->ShiftLeft(exponent); in InitialScaledStartValuesPositiveExponent()
436 denominator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
437 numerator->ShiftLeft(1); in InitialScaledStartValuesPositiveExponent()
441 delta_plus->ShiftLeft(exponent); in InitialScaledStartValuesPositiveExponent()
444 delta_minus->ShiftLeft(exponent); in InitialScaledStartValuesPositiveExponent()
465 denominator->ShiftLeft(-exponent); in InitialScaledStartValuesNegativeExponentPositivePower()
470 denominator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentPositivePower()
471 numerator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentPositivePower()
514 denominator->ShiftLeft(-exponent); in InitialScaledStartValuesNegativeExponentNegativePower()
519 numerator->ShiftLeft(1); in InitialScaledStartValuesNegativeExponentNegativePower()
[all …]
Dbignum.h59 void ShiftLeft(const int shift_amount);
Dbignum.cc239 void Bignum::ShiftLeft(const int shift_amount) { in ShiftLeft() function in double_conversion::Bignum
351 ShiftLeft(exponent); in MultiplyByPowerOfTen()
497 ShiftLeft(shifts * power_exponent); in AssignPowerUInt16()
Dstrtod.cc409 diy_fp_bignum.ShiftLeft(diy_fp.e()); in CompareBufferWithDiyFp()
411 buffer_bignum.ShiftLeft(-diy_fp.e()); in CompareBufferWithDiyFp()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dcharconv.cc457 lhs.ShiftLeft(exact_exponent - guess_exponent); in MustRoundUp()
459 rhs.ShiftLeft(guess_exponent - exact_exponent); in MustRoundUp()
470 lhs.ShiftLeft(exact_exponent - guess_exponent); in MustRoundUp()
472 rhs.ShiftLeft(guess_exponent - exact_exponent); in MustRoundUp()
/third_party/node/deps/v8/src/common/
Doperation.h20 V(ShiftLeft) \

12