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

  /frameworks/av/media/libstagefright/codecs/aacdec/
tns_decode_coef.cpp 309 Int shift_amount; local
443 shift_amount = 0;
448 shift_amount++;
461 shift_amount--;
468 if (shift_amount >= 0)
473 *(pLPC++) = *(pA++) << (16 - shift_amount);
478 q_lpc -= shift_amount;
487 shift_amount = q_lpc - 15;
492 *(pLPC++) >>= shift_amount;
495 q_lpc -= shift_amount;
    [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/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/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...]
  /external/valgrind/main/VEX/priv/
guest_s390_toIR.c 6848 IRTemp shift_amount = newTemp(Ity_I64); local
6890 IRTemp shift_amount = newTemp(Ity_I64); local
6912 IRTemp shift_amount = newTemp(Ity_I64); local
6934 IRTemp shift_amount = newTemp(Ity_I64); local
10653 IRTemp shift_amount = newTemp(Ity_I8); local
    [all...]

Completed in 240 milliseconds