HomeSort by relevance Sort by last modified time
    Searched defs:shift_amount (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/base/i18n/
streaming_utf8_validator.cc 36 const uint8 shift_amount = StateTableLookup(state); local
37 const uint8 shifted_char = (*p & 0x7F) >> shift_amount;
  /external/valgrind/main/memcheck/tests/vbit-test/
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/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/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/chromium_org/third_party/WebKit/Source/wtf/dtoa/
fixed-dtoa.cc 63 void Shift(int shift_amount) {
64 ASSERT(-64 <= shift_amount && shift_amount <= 64);
65 if (shift_amount == 0) {
67 } else if (shift_amount == -64) {
70 } else if (shift_amount == 64) {
73 } else if (shift_amount <= 0) {
74 high_bits_ <<= -shift_amount;
75 high_bits_ += low_bits_ >> (64 + shift_amount);
76 low_bits_ <<= -shift_amount;
78 low_bits_ >>= shift_amount; local
80 high_bits_ >>= shift_amount; local
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
common.h 194 const int shift_amount = big ? 7 : 3; local
195 return (s + add_amount) >> shift_amount;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
common.h 177 const int shift_amount = big ? 7 : 3; local
178 return (s + add_amount) >> shift_amount;
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
signal_processing_unittest.cc 80 int shift_amount = 1; // Workaround compiler warning using variable here. local
82 EXPECT_EQ(32766, WEBRTC_SPL_SHIFT_W16(a, shift_amount));
83 EXPECT_EQ(32766, WEBRTC_SPL_SHIFT_W32(a, shift_amount));
  /external/chromium_org/v8/src/
fixed-dtoa.cc 41 void Shift(int shift_amount) {
42 ASSERT(-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...]
hydrogen.cc 10268 HValue* operand, *shift_amount; local
    [all...]
  /external/chromium_org/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 1349 int shift_amount = instr->ShiftAmountValue(); local
    [all...]
  /art/compiler/dex/quick/arm/
int_arm.cc 1466 int shift_amount = mir_graph_->ConstantValue(rl_shift) & 0x3f; local
    [all...]
  /art/compiler/dex/quick/arm64/
int_arm64.cc 1299 int shift_amount = mir_graph_->ConstantValue(rl_shift) & 0x3f; local
    [all...]
  /art/compiler/dex/quick/x86/
int_x86.cc 642 int shift_amount = LowestSetBit(imm); local
643 OpRegImm(kOpAsr, rl_result.reg, shift_amount);
1390 int shift_amount = LowestSetBit(val); local
1817 int shift_amount = LowestSetBit(imm); local
2253 int shift_amount = mir_graph_->ConstantValue(rl_shift) & 0x3f; local
    [all...]
  /external/vixl/src/a64/
assembler-a64.cc 214 Operand::Operand(Register reg, Shift shift, unsigned shift_amount)
218 shift_amount_(shift_amount) {
219 VIXL_ASSERT(reg.Is64Bits() || (shift_amount < kWRegSize));
220 VIXL_ASSERT(reg.Is32Bits() || (shift_amount < kXRegSize));
225 Operand::Operand(Register reg, Extend extend, unsigned shift_amount)
229 shift_amount_(shift_amount) {
231 VIXL_ASSERT(shift_amount <= 4);
280 unsigned shift_amount)
282 shift_(NO_SHIFT), extend_(extend), shift_amount_(shift_amount) {
295 unsigned shift_amount)
1860 unsigned shift_amount = addr.shift_amount(); local
    [all...]
simulator-a64.cc 667 unsigned shift_amount = instr->ImmDPShift(); local
669 shift_amount);
765 unsigned shift_amount = instr->ImmShiftLS() * instr->SizeLS(); local
768 shift_amount);
    [all...]
  /external/chromium_org/v8/src/arm64/
assembler-arm64.cc 2228 unsigned shift_amount = addr.shift_amount(); local
    [all...]
lithium-arm64.cc 2154 LOperand* shift_amount = UseConstant(hshift->right()); local
    [all...]
lithium-arm64.h 577 LAddI(LOperand* left, LOperand* right, Shift shift, LOperand* shift_amount)
578 : shift_(shift), shift_amount_(shift_amount) {
587 LOperand* shift_amount() const { return shift_amount_; } function in class:v8::internal::V8_FINAL
760 LBitI(LOperand* left, LOperand* right, Shift shift, LOperand* shift_amount)
761 : shift_(shift), shift_amount_(shift_amount) {
770 LOperand* shift_amount() const { return shift_amount_; } function in class:v8::internal::V8_FINAL
2814 LOperand* shift_amount() const { return shift_amount_; } function in class:v8::internal::V8_FINAL
    [all...]
simulator-arm64.cc 1295 unsigned shift_amount = instr->ImmDPShift(); local
1341 unsigned shift_amount = instr->ImmDPShift(); local
1454 unsigned shift_amount = instr->ImmShiftLS() * instr->SizeLS(); local
    [all...]
  /external/valgrind/main/VEX/priv/
guest_s390_toIR.c 7633 IRTemp shift_amount = newTemp(Ity_I64); local
7675 IRTemp shift_amount = newTemp(Ity_I64); local
7697 IRTemp shift_amount = newTemp(Ity_I64); local
7719 IRTemp shift_amount = newTemp(Ity_I64); local
12762 IRTemp shift_amount = newTemp(Ity_I8); local
    [all...]

Completed in 1402 milliseconds