HomeSort by relevance Sort by last modified time
    Searched refs:shift_amount (Results 1 - 25 of 40) sorted by null

1 2

  /external/lldb/source/Utility/
StringExtractor.cpp 192 uint32_t shift_amount = 0; local
209 result |= ((uint32_t)nibble_hi << (shift_amount + 4));
210 result |= ((uint32_t)nibble_lo << shift_amount);
212 shift_amount += 8;
216 result |= ((uint32_t)nibble_hi << shift_amount);
218 shift_amount += 4;
254 uint32_t shift_amount = 0; local
271 result |= ((uint64_t)nibble_hi << (shift_amount + 4));
272 result |= ((uint64_t)nibble_lo << shift_amount);
274 shift_amount += 8
342 uint32_t shift_amount; local
    [all...]
  /external/v8/src/
fixed-dtoa.cc 41 void Shift(int shift_amount) {
42 DCHECK(-64 <= shift_amount && shift_amount <= 64);
43 if (shift_amount == 0) {
45 } else if (shift_amount == -64) {
48 } else if (shift_amount == 64) {
51 } else if (shift_amount <= 0) {
52 high_bits_ <<= -shift_amount;
53 high_bits_ += low_bits_ >> (64 + shift_amount);
54 low_bits_ <<= -shift_amount;
56 low_bits_ >>= shift_amount; local
58 high_bits_ >>= shift_amount; local
    [all...]
bignum.h 35 void ShiftLeft(int shift_amount);
99 void BigitsShiftLeft(int shift_amount);
strtod.cc 306 int shift_amount = (precision_digits_count + kDenominatorLog) -
308 input.set_f(input.f() >> shift_amount);
309 input.set_e(input.e() + shift_amount);
312 error = (error >> shift_amount) + 1 + kDenominator;
313 precision_digits_count -= shift_amount;
bignum.cc 219 void Bignum::ShiftLeft(int shift_amount) {
221 exponent_ += shift_amount / kBigitSize;
222 int local_shift = shift_amount % kBigitSize;
700 void Bignum::BigitsShiftLeft(int shift_amount) {
701 DCHECK(shift_amount < kBigitSize);
702 DCHECK(shift_amount >= 0);
705 Chunk new_carry = bigits_[i] >> (kBigitSize - shift_amount);
706 bigits_[i] = ((bigits_[i] << shift_amount) + carry) & kBigitMask;
  /external/valgrind/memcheck/tests/vbit-test/
vbits.c 665 shl_vbits(vbits_t v, unsigned shift_amount)
667 assert(shift_amount < v.num_bits);
672 case 8: new.bits.u8 <<= shift_amount; break;
673 case 16: new.bits.u16 <<= shift_amount; break;
674 case 32: new.bits.u32 <<= shift_amount; break;
675 case 64: new.bits.u64 <<= shift_amount; break;
687 shr_vbits(vbits_t v, unsigned shift_amount)
689 assert(shift_amount < v.num_bits);
694 case 8: new.bits.u8 >>= shift_amount; break;
695 case 16: new.bits.u16 >>= shift_amount; break
    [all...]
binary.c 93 unsigned shift_amount = opnd2->value.u8; local
95 expected_vbits = shl_vbits(opnd1->vbits, shift_amount);
106 unsigned shift_amount = opnd2->value.u8; local
108 expected_vbits = shr_vbits(opnd1->vbits, shift_amount);
119 unsigned shift_amount = opnd2->value.u8; local
121 expected_vbits = sar_vbits(opnd1->vbits, shift_amount);
  /external/v8/src/arm64/
assembler-arm64-inl.h 338 Operand::Operand(Register reg, Shift shift, unsigned shift_amount)
343 shift_amount_(shift_amount) {
344 DCHECK(reg.Is64Bits() || (shift_amount < kWRegSizeInBits));
345 DCHECK(reg.Is32Bits() || (shift_amount < kXRegSizeInBits));
350 Operand::Operand(Register reg, Extend extend, unsigned shift_amount)
355 shift_amount_(shift_amount) {
357 DCHECK(shift_amount <= 4);
426 unsigned Operand::shift_amount() const {
470 unsigned shift_amount)
472 shift_(NO_SHIFT), extend_(extend), shift_amount_(shift_amount) {
    [all...]
assembler-arm64.h 638 // rm, {<shift> {#<shift_amount>}}
640 // <shift_amount> is uint6_t.
645 unsigned shift_amount = 0); // NOLINT(runtime/explicit)
647 // rm, <extend> {#<shift_amount>}
649 // <shift_amount> is uint2_t.
652 unsigned shift_amount = 0);
679 inline unsigned shift_amount() const;
707 unsigned shift_amount = 0);
711 unsigned shift_amount = 0);
722 unsigned shift_amount() const { return shift_amount_;
    [all...]
assembler-arm64.cc 2476 unsigned shift_amount = addr.shift_amount(); local
    [all...]
lithium-arm64.h 603 LAddI(LOperand* left, LOperand* right, Shift shift, LOperand* shift_amount)
604 : shift_(shift), shift_amount_(shift_amount) {
613 LOperand* shift_amount() const { return shift_amount_; } function in class:v8::internal::FINAL
786 LBitI(LOperand* left, LOperand* right, Shift shift, LOperand* shift_amount)
787 : shift_(shift), shift_amount_(shift_amount) {
796 LOperand* shift_amount() const { return shift_amount_; } function in class:v8::internal::FINAL
2852 LOperand* shift_amount() const { return shift_amount_; } function in class:v8::internal::FINAL
    [all...]
  /external/v8/src/arm/
disasm-arm.cc 193 int shift_amount = instr->ShiftAmountValue(); local
198 if ((instr->RegShiftValue() == 0) && (shift == LSL) && (shift_amount == 0)) {
204 if ((shift == ROR) && (shift_amount == 0)) {
207 } else if (((shift == LSR) || (shift == ASR)) && (shift_amount == 0)) {
208 shift_amount = 32;
213 shift_amount);
    [all...]
simulator-arm.cc 1350 int shift_amount = instr->ShiftAmountValue(); local
    [all...]
  /art/compiler/dex/quick/arm/
int_arm.cc 1555 int shift_amount = mir_graph_->ConstantValue(rl_shift) & 0x3f; local
    [all...]
  /art/compiler/optimizing/
common_arm64.h 176 return vixl::Operand(mem_op.regoffset(), mem_op.extend(), mem_op.shift_amount());
178 return vixl::Operand(mem_op.regoffset(), mem_op.shift(), mem_op.shift_amount());
  /external/vixl/src/vixl/a64/
macro-assembler-a64.cc 779 VIXL_ASSERT(operand.shift_amount() <= 4);
786 operand.shift_amount());
806 } else if (operand.IsShiftedRegister() && (operand.shift_amount() != 0)) {
810 EmitShift(rd, operand.reg(), operand.shift(), operand.shift_amount());
815 operand.shift_amount());
975 int shift_amount) {
978 if (shift_amount != 0 || shift != LSL) {
979 movi(vd, imm, shift, shift_amount);
1026 operand.shift_amount());
1079 if ((operand.IsShiftedRegister() && (operand.shift_amount() == 0)) |
    [all...]
assembler-a64.cc 320 Operand::Operand(Register reg, Shift shift, unsigned shift_amount)
324 shift_amount_(shift_amount) {
326 VIXL_ASSERT(reg.Is64Bits() || (shift_amount < kWRegSize));
327 VIXL_ASSERT(reg.Is32Bits() || (shift_amount < kXRegSize));
332 Operand::Operand(Register reg, Extend extend, unsigned shift_amount)
336 shift_amount_(shift_amount) {
338 VIXL_ASSERT(shift_amount <= 4);
387 unsigned shift_amount)
389 shift_(NO_SHIFT), extend_(extend), shift_amount_(shift_amount) {
402 unsigned shift_amount)
    [all...]
assembler-a64.h 655 // rm, {<shift> #<shift_amount>}
657 // <shift_amount> is uint6_t.
662 unsigned shift_amount = 0); // NOLINT(runtime/explicit)
664 // rm, {<extend> {#<shift_amount>}}
666 // <shift_amount> is uint2_t.
667 explicit Operand(Register reg, Extend extend, unsigned shift_amount = 0);
698 unsigned shift_amount() const {
721 unsigned shift_amount = 0);
725 unsigned shift_amount = 0);
736 unsigned shift_amount() const { return shift_amount_;
    [all...]
  /art/compiler/dex/quick/x86/
int_x86.cc 662 int shift_amount = CTZ(imm); local
663 OpRegImm(kOpAsr, rl_result.reg, shift_amount);
1755 int shift_amount = CTZ(val); local
2198 int shift_amount = CTZ(imm); local
2640 int shift_amount = mir_graph_->ConstantValue(rl_shift) & 0x3f; local
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
signal_processing_unittest.cc 87 int shift_amount = 1; // Workaround compiler warning using variable here. local
89 EXPECT_EQ(32766, WEBRTC_SPL_SHIFT_W16(a, shift_amount));
90 EXPECT_EQ(32766, WEBRTC_SPL_SHIFT_W32(a, shift_amount));
  /external/libnfc-nci/halimpl/bcm2079x/gki/common/
gki.h 402 GKI_API extern void GKI_shiftdown (UINT8 *p_mem, UINT32 len, UINT32 shift_amount);
  /external/libnfc-nci/src/gki/common/
gki.h 404 GKI_API extern void GKI_shiftdown (UINT8 *p_mem, UINT32 len, UINT32 shift_amount);
  /external/v8/src/compiler/
simplified-lowering.cc 807 Node* shift_amount = jsgraph()->Int32Constant(kSmiTagSize + kSmiShiftSize); local
808 return graph()->NewNode(machine()->WordSar(), node, shift_amount);
814 Node* shift_amount = jsgraph()->Int32Constant(kSmiTagSize + kSmiShiftSize); local
815 return graph()->NewNode(machine()->WordShl(), node, shift_amount);
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c     [all...]
  /external/libnfc-nci/src/gki/ulinux/
gki_ulinux.c     [all...]

Completed in 1003 milliseconds

1 2