HomeSort by relevance Sort by last modified time
    Searched defs:shift (Results 326 - 350 of 412) sorted by null

<<11121314151617

  /external/v8/src/ia32/
macro-assembler-ia32.cc 2658 int shift = local
    [all...]
  /external/v8/src/x64/
assembler-x64.cc 789 void Assembler::shift(Register dst, Immediate shift_amount, int subcode) { function in class:v8::internal::Assembler
791 ASSERT(is_uint6(shift_amount.value_)); // illegal shift count
805 void Assembler::shift(Register dst, int subcode) { function in class:v8::internal::Assembler
823 ASSERT(is_uint5(shift_amount.value_)); // illegal shift count
    [all...]
macro-assembler-x64.cc 4272 int shift = local
    [all...]
  /external/valgrind/main/VEX/priv/
host_amd64_isel.c 646 ... base(%rbp, %tmp, shift) ...
951 /* Perhaps a shift op? */
1002 /* Now consider the shift amount. If it's a literal, w
1268 Int shift = 0; local
1525 Int shift = 0; local
1905 UInt shift = imm8->Iex.Const.con->Ico.U8; local
1921 UInt shift = e->Iex.Binop.arg2->Iex.Binop.arg2->Iex.Const.con->Ico.U8; local
    [all...]
host_x86_isel.c 584 Int shift = 0; local
594 case 1: shift = 0; break;
595 case 4: shift = 2; break;
596 case 8: shift = 3; break;
605 ... base(%ebp, %tmp, shift) ...
617 X86AMode_IRRS( descr->base, hregX86_EBP(), tmp, shift );
860 /* Perhaps a shift op? */
899 /* Now consider the shift amount. If it's a literal, we
963 Int shift = (e->Iex.Binop.op == Iop_MullS8 local
972 addInstr(env, X86Instr_Sh32(Xsh_SHL, shift, a16))
1172 Int shift = e->Iex.Unop.op == Iop_16HIto8 ? 8 : 16; local
1434 UInt shift = e->Iex.Binop.arg1 local
1452 UInt shift = e->Iex.Binop.arg2->Iex.Binop.arg2->Iex.Const.con->Ico.U8; local
    [all...]
ir_opt.c 1003 Int shift; local
1424 s32 >>=\/*signed*\/ shift; local
1436 s64 >>=\/*signed*\/ shift; local
1450 u32 >>=\/*unsigned*\/ shift; local
1462 u64 >>=\/*unsigned*\/ shift; local
    [all...]
host_amd64_defs.h 130 Aam_IRRS /* Immediate + Reg1 + (Reg2 << Shift) */
146 Int shift; /* 0, 1, 2 or 3 only */ member in struct:__anon13215::__anon13216::__anon13218
359 Ain_Sh64, /* 64-bit shift/rotate, dst=REG or MEM */
437 UInt src; /* shift amount, or 0 means %cl */
476 //.. UInt amt; /* shift amount, or 0 means %cl */
host_arm_defs.h 138 UInt shift; /* 0, 1 2 or 3 */ member in struct:__anon13288::__anon13289::__anon13291
145 extern ARMAMode1* ARMAMode1_RRS ( HReg base, HReg index, UInt shift );
632 } Shift;
host_ppc_defs.c 683 /* Shift */
3894 UInt shift = i->Pin.AvShlDbl.shift; local
    [all...]
host_ppc_defs.h 402 /* Shift */
485 Pin_AvShlDbl, /* AV shift-left double by imm */
764 UChar shift; member in struct:__anon13409::__anon13410::__anon13450
838 extern PPCInstr* PPCInstr_AvShlDbl ( UChar shift, HReg dst, HReg srcL, HReg srcR );
host_ppc_isel.c 370 the range 1 .. 31 inclusive. Used for doing shift amounts. */
376 the range 1 .. 63 inclusive. Used for doing shift amounts. */
549 Int shift = 0; local
558 case 4: shift = 2; break;
559 case 8: shift = 3; break;
572 sldi %tmp, shift
588 env->mode64 ? False : True/*F:64-bit, T:32-bit shift*/,
590 PPCRH_Imm(False/*unsigned*/, toUShort(shift))));
909 addInstr(env, PPCInstr_Shft(Pshft_SHL, True/*32bit shift*/,
1681 UShort shift = toUShort(op_unop == Iop_16HIto8 ? 8 : 16); local
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp 2987 JSValue shift = stackFrame.args[1].jsValue(); local
3014 JSValue shift = stackFrame.args[1].jsValue(); local
3138 JSValue shift = stackFrame.args[1].jsValue(); local
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
SerializedScriptValue.cpp 1006 int shift = 0; local
1011 *value |= ((currentByte & varIntMask) << shift);
1012 shift += varIntShift;
    [all...]
  /external/webkit/Source/WebCore/editing/
TextIterator.cpp 135 unsigned shift = m_size & bitInWordMask; local
136 if (!shift && index == m_words.size()) {
141 unsigned mask = 1U << shift;
159 unsigned shift = (m_size - 1) & bitInWordMask; local
160 return m_words.last() & (1U << shift);
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
libtommath.c 330 * MSB. As a result a single shift is enough to get the carry
1008 /* shift right by a certain bit count (store quotient in c, optional remainder in d) */
1016 /* if the shift count is <= 0 then we do no work */
1043 /* shift by as many digits in the bit count */
1048 /* shift any bit count < DIGIT_BIT */
1051 register mp_digit *tmpc, mask, shift; local
1056 /* shift for lsb */
1057 shift = DIGIT_BIT - D;
1068 /* shift the current word and mix in the carry bits from the previous word */
1069 *tmpc = (*tmpc >> D) | (r << shift);
1396 register mp_digit *tmpc, shift, mask, r, rr; local
    [all...]
  /external/wpa_supplicant_8/src/tls/
libtommath.c 330 * MSB. As a result a single shift is enough to get the carry
1008 /* shift right by a certain bit count (store quotient in c, optional remainder in d) */
1016 /* if the shift count is <= 0 then we do no work */
1043 /* shift by as many digits in the bit count */
1048 /* shift any bit count < DIGIT_BIT */
1051 register mp_digit *tmpc, mask, shift; local
1056 /* shift for lsb */
1057 shift = DIGIT_BIT - D;
1068 /* shift the current word and mix in the carry bits from the previous word */
1069 *tmpc = (*tmpc >> D) | (r << shift);
1396 register mp_digit *tmpc, shift, mask, r, rr; local
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 1082 int shift = ((digitCount & 0x01) == 1) ? 4 : 0; local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
BinaryDictInputOutput.java 876 final int shift = writeVariableAddress(buffer, index, childrenOffset); local
    [all...]
  /bionic/libc/private/
arpa_nameser.h 120 struct _ns_flagdata { int mask, shift; }; member in struct:_ns_flagdata
  /external/dropbear/libtommath/pre_gen/
mpi.c 318 * shift the words downward [all those least
1984 register mp_digit *tmpc, mask, shift; local
5118 register mp_digit *tmpc, shift, mask, r, rr; local
    [all...]
  /external/elfutils/src/
elflint.c 2008 Elf32_Word shift = ((Elf32_Word *) data->d_buf)[3]; local
    [all...]
  /external/qemu/target-i386/
translate.c 136 /* i386 shift ops */
462 static inline void gen_op_addl_A0_reg_sN(int shift, int reg)
465 if (shift != 0)
466 tcg_gen_shli_tl(cpu_tmp0, cpu_tmp0, shift);
504 static inline void gen_op_addq_A0_reg_sN(int shift, int reg)
507 if (shift != 0)
508 tcg_gen_shli_tl(cpu_tmp0, cpu_tmp0, shift);
1681 int shift = op2 & ((1 << (3 + ot)) - 1); local
4044 int shift, ot; local
    [all...]
  /external/skia/samplecode/
SampleApp.cpp 2064 int shift = 32 - bits; local
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 1416 ShiftOp shift = instr->ShiftField(); local
2563 int32_t shift = instr->Bits(11, 7); local
2567 rm_val <<= shift; local
2569 rm_val >>= shift; local
    [all...]
  /external/v8/src/
hydrogen.h 544 int shift = variable->IsParameter() local
547 return variable->index() + shift;
    [all...]

Completed in 2106 milliseconds

<<11121314151617