HomeSort by relevance Sort by last modified time
    Searched full:divisor (Results 151 - 175 of 852) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/v8/test/unittests/compiler/
machine-operator-reducer-unittest.cc 39 const int32_t divisor) {
41 base::SignedDivisionByConstant(bit_cast<uint32_t>(divisor));
46 if (divisor > 0 && multiplier < 0) {
48 } else if (divisor < 0 && multiplier > 0) {
    [all...]
  /frameworks/base/core/java/android/text/format/
TimeFormatter.java 421 final int DIVISOR = 100;
422 trail = value % DIVISOR;
423 lead = value / DIVISOR + trail / DIVISOR;
424 trail %= DIVISOR;
426 trail += DIVISOR;
429 trail -= DIVISOR;
  /external/llvm/include/llvm/Support/
ScaledNumber.h 138 /// \pre \c Dividend and \c Divisor are non-zero.
139 std::pair<uint64_t, int16_t> divide64(uint64_t Dividend, uint64_t Divisor);
145 /// \pre \c Dividend and \c Divisor are non-zero.
146 std::pair<uint32_t, int16_t> divide32(uint32_t Dividend, uint32_t Divisor);
154 std::pair<DigitsT, int16_t> getQuotient(DigitsT Dividend, DigitsT Divisor) {
162 if (!Divisor)
166 return divide64(Dividend, Divisor);
167 return divide32(Dividend, Divisor);
172 uint32_t Divisor) {
173 return getQuotient(Dividend, Divisor);
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc 1009 int32_t divisor = instr->divisor(); local
1042 int32_t divisor = instr->divisor(); local
1128 DwVfpRegister divisor = ToDoubleRegister(instr->temp2()); local
1160 __ vmul(double_scratch0(), divisor, quotient); local
1178 int32_t divisor = instr->divisor(); local
1222 int32_t divisor = instr->divisor(); local
1254 Register divisor = ToRegister(instr->divisor()); local
1339 int32_t divisor = instr->divisor(); local
1382 int32_t divisor = instr->divisor(); local
    [all...]
lithium-arm.h 602 LModByPowerOf2I(LOperand* dividend, int32_t divisor) {
604 divisor_ = divisor;
608 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
620 LModByConstI(LOperand* dividend, int32_t divisor) {
622 divisor_ = divisor;
626 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
657 LDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
659 divisor_ = divisor;
663 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
675 LDivByConstI(LOperand* dividend, int32_t divisor) {
681 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
700 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
716 int32_t divisor() { return divisor_; } function in class:v8::internal::final
736 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
756 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc 1013 int32_t divisor = instr->divisor(); local
1046 int32_t divisor = instr->divisor(); local
1128 int32_t divisor = instr->divisor(); local
1166 int32_t divisor = instr->divisor(); local
1197 Register divisor = ToRegister(instr->divisor()); local
1245 int32_t divisor = instr->divisor(); local
1289 int32_t divisor = instr->divisor(); local
1336 Register divisor = ToRegister(instr->divisor()); local
    [all...]
lithium-ia32.h 607 LModByPowerOf2I(LOperand* dividend, int32_t divisor) {
609 divisor_ = divisor;
613 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
626 int32_t divisor,
630 divisor_ = divisor;
636 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
667 LDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
669 divisor_ = divisor;
673 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
686 int32_t divisor,
696 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
717 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
733 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
759 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
781 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-codegen-x64.cc 943 int32_t divisor = instr->divisor(); local
953 int32_t mask = divisor < 0 ? -(divisor + 1) : (divisor - 1);
976 int32_t divisor = instr->divisor(); local
979 if (divisor == 0) {
984 __ TruncatingDiv(dividend, Abs(divisor));
985 __ imull(rdx, rdx, Immediate(Abs(divisor)));
1059 int32_t divisor = instr->divisor(); local
1103 int32_t divisor = instr->divisor(); local
1150 Register divisor = ToRegister(instr->divisor()); local
1201 int32_t divisor = instr->divisor(); local
1239 int32_t divisor = instr->divisor(); local
1270 Register divisor = ToRegister(instr->divisor()); local
    [all...]
lithium-x64.h 606 LModByPowerOf2I(LOperand* dividend, int32_t divisor) {
608 divisor_ = divisor;
612 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
625 int32_t divisor,
629 divisor_ = divisor;
635 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
666 LDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
668 divisor_ = divisor;
672 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
685 int32_t divisor,
695 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
716 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
732 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
758 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
780 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.cc 1314 int32_t divisor = instr->divisor(); local
1347 int32_t divisor = instr->divisor(); local
1429 int32_t divisor = instr->divisor(); local
1467 int32_t divisor = instr->divisor(); local
1498 Register divisor = ToRegister(instr->divisor()); local
1546 int32_t divisor = instr->divisor(); local
1590 int32_t divisor = instr->divisor(); local
1637 Register divisor = ToRegister(instr->divisor()); local
    [all...]
lithium-x87.h 623 LModByPowerOf2I(LOperand* dividend, int32_t divisor) {
625 divisor_ = divisor;
629 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
642 int32_t divisor,
646 divisor_ = divisor;
652 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
683 LDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
685 divisor_ = divisor;
689 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
702 int32_t divisor,
712 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
733 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
749 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
775 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
797 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
    [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
natconv.go 355 func (q nat) convertWords(s []byte, charset string, b Word, ndigits int, bb Word, table []divisor) {
362 // find divisor close to sqrt(q) if possible, but in any case < q
429 type divisor struct {
430 bbb nat // divisor
431 nbits int // bit length of divisor (discounting leading zeroes) ~= log2(bbb)
432 ndigits int // digit length of divisor in terms of output base digits
437 table [64]divisor // cached divisors for base 10
446 func divisors(m int, b Word, ndigits int, bb Word) []divisor {
459 var table []divisor // for b == 10, table overlaps with cacheBase10.table
464 table = make([]divisor, k) // create new table for this conversio
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/big/
natconv.go 352 func (q nat) convertWords(s []byte, charset string, b Word, ndigits int, bb Word, table []divisor) {
359 // find divisor close to sqrt(q) if possible, but in any case < q
426 type divisor struct {
427 bbb nat // divisor
428 nbits int // bit length of divisor (discounting leading zeroes) ~= log2(bbb)
429 ndigits int // digit length of divisor in terms of output base digits
434 table [64]divisor // cached divisors for base 10
443 func divisors(m int, b Word, ndigits int, bb Word) []divisor {
456 var table []divisor // for b == 10, table overlaps with cacheBase10.table
461 table = make([]divisor, k) // create new table for this conversio
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
natconv.go 352 func (q nat) convertWords(s []byte, charset string, b Word, ndigits int, bb Word, table []divisor) {
359 // find divisor close to sqrt(q) if possible, but in any case < q
426 type divisor struct {
427 bbb nat // divisor
428 nbits int // bit length of divisor (discounting leading zeroes) ~= log2(bbb)
429 ndigits int // digit length of divisor in terms of output base digits
434 table [64]divisor // cached divisors for base 10
443 func divisors(m int, b Word, ndigits int, bb Word) []divisor {
456 var table []divisor // for b == 10, table overlaps with cacheBase10.table
461 table = make([]divisor, k) // create new table for this conversio
    [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
natconv.go 355 func (q nat) convertWords(s []byte, charset string, b Word, ndigits int, bb Word, table []divisor) {
362 // find divisor close to sqrt(q) if possible, but in any case < q
429 type divisor struct {
430 bbb nat // divisor
431 nbits int // bit length of divisor (discounting leading zeroes) ~= log2(bbb)
432 ndigits int // digit length of divisor in terms of output base digits
437 table [64]divisor // cached divisors for base 10
446 func divisors(m int, b Word, ndigits int, bb Word) []divisor {
459 var table []divisor // for b == 10, table overlaps with cacheBase10.table
464 table = make([]divisor, k) // create new table for this conversio
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/big/
natconv.go 352 func (q nat) convertWords(s []byte, charset string, b Word, ndigits int, bb Word, table []divisor) {
359 // find divisor close to sqrt(q) if possible, but in any case < q
426 type divisor struct {
427 bbb nat // divisor
428 nbits int // bit length of divisor (discounting leading zeroes) ~= log2(bbb)
429 ndigits int // digit length of divisor in terms of output base digits
434 table [64]divisor // cached divisors for base 10
443 func divisors(m int, b Word, ndigits int, bb Word) []divisor {
456 var table []divisor // for b == 10, table overlaps with cacheBase10.table
461 table = make([]divisor, k) // create new table for this conversio
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
natconv.go 352 func (q nat) convertWords(s []byte, charset string, b Word, ndigits int, bb Word, table []divisor) {
359 // find divisor close to sqrt(q) if possible, but in any case < q
426 type divisor struct {
427 bbb nat // divisor
428 nbits int // bit length of divisor (discounting leading zeroes) ~= log2(bbb)
429 ndigits int // digit length of divisor in terms of output base digits
434 table [64]divisor // cached divisors for base 10
443 func divisors(m int, b Word, ndigits int, bb Word) []divisor {
456 var table []divisor // for b == 10, table overlaps with cacheBase10.table
461 table = make([]divisor, k) // create new table for this conversio
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.cc 965 int32_t divisor = instr->divisor(); local
975 int32_t mask = divisor < 0 ? -(divisor + 1) : (divisor - 1);
999 int32_t divisor = instr->divisor(); local
1069 int32_t divisor = instr->divisor(); local
1114 int32_t divisor = instr->divisor(); local
1146 Register divisor = ToRegister(instr->divisor()); local
1206 int32_t divisor = instr->divisor(); local
1261 int32_t divisor = instr->divisor(); local
1309 Register divisor = ToRegister(instr->divisor()); local
    [all...]
lithium-mips64.h 602 LModByPowerOf2I(LOperand* dividend, int32_t divisor) {
604 divisor_ = divisor;
608 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
620 LModByConstI(LOperand* dividend, int32_t divisor) {
622 divisor_ = divisor;
626 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
654 LDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
656 divisor_ = divisor;
660 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
672 LDivByConstI(LOperand* dividend, int32_t divisor) {
678 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
697 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
713 int32_t divisor() { return divisor_; } function in class:v8::internal::final
733 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
752 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
    [all...]
  /external/autotest/client/deps/webgl_mpd/src/resources/
J3DIMath.js 69 void divide(in float divisor); // divide the matrix by the passed divisor
103 void divide(in float divisor); // divide the vector by the passed divisor
587 J3DIMatrix4.prototype.divide = function(divisor)
589 this.$matrix.m11 /= divisor;
590 this.$matrix.m12 /= divisor;
591 this.$matrix.m13 /= divisor;
592 this.$matrix.m14 /= divisor;
594 this.$matrix.m21 /= divisor;
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.h 1280 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
1299 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
1319 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
1900 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
1920 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
1940 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
2032 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
2051 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.h 599 LModByPowerOf2I(LOperand* dividend, int32_t divisor) {
601 divisor_ = divisor;
605 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
617 LModByConstI(LOperand* dividend, int32_t divisor) {
619 divisor_ = divisor;
623 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
651 LDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
653 divisor_ = divisor;
657 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
669 LDivByConstI(LOperand* dividend, int32_t divisor) {
675 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
694 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
710 int32_t divisor() { return divisor_; } function in class:v8::internal::final
730 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
749 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
    [all...]
lithium-codegen-mips.cc 976 int32_t divisor = instr->divisor(); local
1010 int32_t divisor = instr->divisor(); local
1079 int32_t divisor = instr->divisor(); local
1124 int32_t divisor = instr->divisor(); local
1156 Register divisor = ToRegister(instr->divisor()); local
1210 int32_t divisor = instr->divisor(); local
1267 int32_t divisor = instr->divisor(); local
1315 Register divisor = ToRegister(instr->divisor()); local
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.h 588 LModByPowerOf2I(LOperand* dividend, int32_t divisor) {
590 divisor_ = divisor;
594 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
606 LModByConstI(LOperand* dividend, int32_t divisor) {
608 divisor_ = divisor;
612 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
639 LDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
641 divisor_ = divisor;
645 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
657 LDivByConstI(LOperand* dividend, int32_t divisor) {
663 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
681 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
696 int32_t divisor() { return divisor_; } function in class:v8::internal::final
716 int32_t divisor() const { return divisor_; } function in class:v8::internal::final
735 LOperand* divisor() { return inputs_[1]; } function in class:v8::internal::final
    [all...]
  /external/opencv3/modules/cudastereo/src/
stereobp.cpp 191 const int divisor = (int) pow(2.f, levels_ - 1.0f);
192 const int lowest_cols = cols_ / divisor;
193 const int lowest_rows = rows_ / divisor;
221 const int divisor = (int) pow(2.f, levels_ - 1.0f);
222 const int lowest_cols = cols_ / divisor;
223 const int lowest_rows = rows_ / divisor;

Completed in 1692 milliseconds

1 2 3 4 5 67 8 91011>>