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

  /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/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...]
  /external/webkit/JavaScriptCore/assembler/
MacroAssemblerX86Common.h 146 void lshift32(RegisterID shift_amount, RegisterID dest)
150 if (shift_amount != X86Registers::ecx) {
151 swap(shift_amount, X86Registers::ecx);
154 if (dest == shift_amount)
158 m_assembler.shll_CLr(shift_amount);
163 swap(shift_amount, X86Registers::ecx);
228 void rshift32(RegisterID shift_amount, RegisterID dest)
232 if (shift_amount != X86Registers::ecx) {
233 swap(shift_amount, X86Registers::ecx);
236 if (dest == shift_amount)
    [all...]
MacroAssemblerARM.h 121 void lshift32(RegisterID shift_amount, RegisterID dest)
125 m_assembler.and_r(ARMRegisters::S0, shift_amount, w);
170 void rshift32(RegisterID shift_amount, RegisterID dest)
174 m_assembler.and_r(ARMRegisters::S0, shift_amount, w);
MacroAssemblerARMv7.h 200 void lshift32(RegisterID shift_amount, RegisterID dest)
205 m_assembler.ARM_and(dataTempRegister, shift_amount, armImm);
247 void rshift32(RegisterID shift_amount, RegisterID dest)
252 m_assembler.ARM_and(dataTempRegister, shift_amount, armImm);
    [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/x64/
assembler-x64.h 819 // Shifts dst right, duplicating sign bit, by shift_amount bits.
821 void sar(Register dst, Immediate shift_amount) {
822 shift(dst, shift_amount, 0x7);
825 // Shifts dst right, duplicating sign bit, by shift_amount bits.
827 void sarl(Register dst, Immediate shift_amount) {
828 shift_32(dst, shift_amount, 0x7);
841 void shl(Register dst, Immediate shift_amount) {
842 shift(dst, shift_amount, 0x4);
853 void shll(Register dst, Immediate shift_amount) {
854 shift_32(dst, shift_amount, 0x4)
    [all...]
assembler-x64.cc 654 void Assembler::shift(Register dst, Immediate shift_amount, int subcode) {
657 ASSERT(is_uint6(shift_amount.value_)); // illegal shift count
658 if (shift_amount.value_ == 1) {
666 emit(shift_amount.value_);
689 void Assembler::shift_32(Register dst, Immediate shift_amount, int subcode) {
692 ASSERT(is_uint5(shift_amount.value_)); // illegal shift count
693 if (shift_amount.value_ == 1) {
701 emit(shift_amount.value_);
    [all...]
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...]
  /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/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/webkit/JavaScriptCore/wtf/
FastMalloc.cpp 671 static const int shift_amount[2] = { 3, 7 }; // For divides by 8 or 128
678 return static_cast<int>((s + add_amount[i]) >> shift_amount[i]);
813 // Do some sanity checking on add_amount[]/shift_amount[]/class_array[]
    [all...]

Completed in 319 milliseconds