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

  /external/opencore/codecs_v2/audio/aac/dec/src/
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...]
  /frameworks/base/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/v8/src/
stub-cache.h 264 const int shift_amount = kPointerSizeLog2 + 1 - String::kHashShift; local
266 reinterpret_cast<Address>(table) + (offset << shift_amount));
  /external/v8/src/arm/
disasm-arm.cc 204 int shift_amount = instr->ShiftAmountField(); local
209 if ((instr->RegShiftField() == 0) && (shift == LSL) && (shift_amount == 0)) {
215 if ((shift == ROR) && (shift_amount == 0)) {
218 } else if (((shift == LSR) || (shift == ASR)) && (shift_amount == 0)) {
219 shift_amount = 32;
223 shift_names[shift], shift_amount);
    [all...]
simulator-arm.cc 937 int shift_amount = instr->ShiftAmountField(); local
941 if ((shift == ROR) && (shift_amount == 0)) {
944 } else if (((shift == LSR) || (shift == ASR)) && (shift_amount == 0)) {
945 shift_amount = 32;
949 if (shift_amount == 0) {
958 result >>= (shift_amount - 1);
966 if (shift_amount == 0) {
969 result <<= (shift_amount - 1);
977 if (shift_amount == 0) {
982 uresult >>= (shift_amount - 1)
    [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/v8/src/ia32/
codegen-ia32.cc 1153 int shift_amount = right & 0x1F; local
1160 int shift_amount = right & 0x1F; local
1162 unsigned_left >>= shift_amount; local
1169 int shift_amount = right & 0x1F; local
1175 unsigned_left >>= shift_amount; local
1178 unsigned_left >>= shift_amount; local
5302 Result shift_amount; local
    [all...]
  /external/v8/src/x64/
codegen-x64.cc 3762 Result shift_amount; local
6542 int shift_amount = right & 0x1F; local
6549 int shift_amount = right & 0x1F; local
6551 unsigned_left >>= shift_amount; local
6558 int shift_amount = right & 0x1F; local
6564 unsigned_left >>= shift_amount; local
6567 unsigned_left >>= shift_amount; local
    [all...]

Completed in 274 milliseconds