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

  /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 64 void Shift(int shift_amount) {
65 ASSERT(-64 <= shift_amount && shift_amount <= 64);
66 if (shift_amount == 0) {
68 } else if (shift_amount == -64) {
71 } else if (shift_amount == 64) {
74 } else if (shift_amount <= 0) {
75 high_bits_ <<= -shift_amount;
76 high_bits_ += low_bits_ >> (64 + shift_amount);
77 low_bits_ <<= -shift_amount;
79 low_bits_ >>= shift_amount; local
81 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/v8/src/
fixed-dtoa.cc 64 void Shift(int shift_amount) {
65 ASSERT(-64 <= shift_amount && shift_amount <= 64);
66 if (shift_amount == 0) {
68 } else if (shift_amount == -64) {
71 } else if (shift_amount == 64) {
74 } else if (shift_amount <= 0) {
75 high_bits_ <<= -shift_amount;
76 high_bits_ += low_bits_ >> (64 + shift_amount);
77 low_bits_ <<= -shift_amount;
79 low_bits_ >>= shift_amount; local
81 high_bits_ >>= shift_amount; local
    [all...]
hydrogen.cc 7818 HValue* operand, *shift_amount; local
    [all...]
  /external/v8/src/
fixed-dtoa.cc 64 void Shift(int shift_amount) {
65 ASSERT(-64 <= shift_amount && shift_amount <= 64);
66 if (shift_amount == 0) {
68 } else if (shift_amount == -64) {
71 } else if (shift_amount == 64) {
74 } else if (shift_amount <= 0) {
75 high_bits_ <<= -shift_amount;
76 high_bits_ += low_bits_ >> (64 + shift_amount);
77 low_bits_ <<= -shift_amount;
79 low_bits_ >>= shift_amount; local
81 high_bits_ >>= shift_amount; local
    [all...]
  /external/chromium_org/v8/src/arm/
disasm-arm.cc 219 int shift_amount = instr->ShiftAmountValue(); local
224 if ((instr->RegShiftValue() == 0) && (shift == LSL) && (shift_amount == 0)) {
230 if ((shift == ROR) && (shift_amount == 0)) {
233 } else if (((shift == LSR) || (shift == ASR)) && (shift_amount == 0)) {
234 shift_amount = 32;
239 shift_amount);
    [all...]
simulator-arm.cc 1360 int shift_amount = instr->ShiftAmountValue(); local
    [all...]
  /external/v8/src/arm/
disasm-arm.cc 213 int shift_amount = instr->ShiftAmountValue(); local
218 if ((instr->RegShiftValue() == 0) && (shift == LSL) && (shift_amount == 0)) {
224 if ((shift == ROR) && (shift_amount == 0)) {
227 } else if (((shift == LSR) || (shift == ASR)) && (shift_amount == 0)) {
228 shift_amount = 32;
233 shift_amount);
    [all...]
simulator-arm.cc 1417 int shift_amount = instr->ShiftAmountValue(); local
    [all...]
  /sdk/emulator/qtools/
armdis.cpp 198 uint8_t shift_amount = (insn >> 7) & 0x1f; local
203 if (!shift_is_reg && shift_type == 0 && shift_amount == 0) {
216 if (shift_amount == 0) {
222 shift_amount = 32;
226 shift_name, shift_amount);
373 uint8_t shift_amount = (insn >> 7) & 0x1f; local
378 if (shift_amount == 0) {
389 shift_amount = 32;
393 shift_name, shift_amount, bang);
401 if (shift_amount == 0)
    [all...]
  /art/compiler/dex/quick/arm/
int_arm.cc 996 int shift_amount = mir_graph_->ConstantValue(rl_shift) & 0x3f; local
    [all...]
  /external/valgrind/main/VEX/priv/
guest_s390_toIR.c 6888 IRTemp shift_amount = newTemp(Ity_I64); local
6930 IRTemp shift_amount = newTemp(Ity_I64); local
6952 IRTemp shift_amount = newTemp(Ity_I64); local
6974 IRTemp shift_amount = newTemp(Ity_I64); local
10708 IRTemp shift_amount = newTemp(Ity_I8); local
    [all...]

Completed in 843 milliseconds