| /art/compiler/dex/quick/arm/ |
| int_arm.cc | 468 uint32_t shift; member in struct:art::MagicTable 521 EncodeShift(kArmAsr, magic_table[lit].shift)); 527 EncodeShift(kArmAsr, magic_table[lit].shift)); 555 op->shift = LowestSetBit(lit); 561 op->shift = LowestSetBit(lit - 1); 567 op->shift = LowestSetBit(lit + 1); 572 op->shift = 0; 581 ops[1].shift = 0; 586 uint32_t shift = LowestSetBit(lit1); local 587 if (GetEasyMultiplyOp(lit1 >> shift, &ops[0])) [all...] |
| /art/compiler/dex/quick/arm64/ |
| int_arm64.cc | 379 uint32_t shift; member in struct:art::MagicTable 431 32 + magic_table[lit].shift); 437 OpRegRegImm(kOpAsr, r_long_mul, r_long_mul, magic_table[lit].shift); 497 OpRegRegImm(kOpAsr, r_long_mul, r_long_mul, magic_table[lit].shift); 502 OpRegRegImm(kOpAsr, r_long_mul, r_long_mul, magic_table[lit].shift); 554 int shift = EncodeShift(kA64Lsr, nbits - k); local 558 OpRegRegRegShift(kOpAdd, t_reg, rl_src.reg, rl_src.reg, shift); 562 OpRegRegRegShift(kOpAdd, t_reg, rl_src.reg, t_reg, shift); 567 OpRegRegRegShift(kOpAdd, t_reg, rl_src.reg, rl_src.reg, shift); 569 OpRegRegRegShift(kOpSub, rl_result.reg, t_reg, rl_src.reg, shift); [all...] |
| /art/compiler/dex/quick/x86/ |
| int_x86.cc | 525 void X86Mir2Lir::CalculateMagicAndShift(int64_t divisor, int64_t& magic, int& shift, bool is_long) { 526 // It does not make sense to calculate magic and shift for zero divisor. 531 * The magic number M and shift S can be calculated in the following way: 540 * So the shift p is the smallest p satisfying 549 * the shift number S. 593 shift = (is_long) ? p - 64 : p - 32; 653 int shift; local 654 CalculateMagicAndShift((int64_t)imm, magic, shift, false /* is_long */); 709 // Do we need the shift? 710 if (shift != 0) 1838 int shift; local [all...] |
| /external/aac/libSBRdec/src/ |
| env_calc.cpp | 889 int shift = fixMin(DFRACT_BITS-1,(int)(h_sbr_cal_env->filtBufferNoise_e - noise_e)); local 894 int shift = fixMin(DFRACT_BITS-1,-(int)(h_sbr_cal_env->filtBufferNoise_e - noise_e)); local 938 int shift = (int) (noise_e - final_e); local 1346 SCHAR shift; local 1468 SCHAR shift, sum_e; local 1792 int shift = (int) (scale_change+1); local 1821 int shift = (int) (scale_change+1); local 1966 int shift; local [all...] |
| /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
| SAX2DTM2.java | 1872 int shift; local [all...] |
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
| LongArray.java | 569 private static long shiftUp(long[] x, int xOff, int count, int shift) 571 int shiftInv = 64 - shift; 576 x[xOff + i] = (next << shift) | prev; 582 private static long shiftUp(long[] x, int xOff, long[] z, int zOff, int count, int shift) 584 int shiftInv = 64 - shift; 589 z[zOff + i] = (next << shift) | prev; 611 // int shift = bits & 0x3F; 613 // if (shift == 0) 631 // long carry = addShiftedByBits(m_ints, words, other.m_ints, 0, otherUsedLen, shift); 640 int shift = bits & 0x3F local 741 int shift = bit & 0x3F; local [all...] |
| /external/chromium_org/content/browser/indexed_db/ |
| indexed_db_leveldb_coding.cc | 410 int shift = 0; local 414 ret |= static_cast<int64>(c) << shift; 415 shift += 8; 427 int shift = 0; local 434 ret |= static_cast<int64>(c & 0x7f) << shift; 435 shift += 7; [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/editing/ |
| TextIterator.cpp | 125 unsigned shift = m_size & bitInWordMask; local 126 if (!shift && index == m_words.size()) { 131 unsigned mask = 1U << shift; 149 unsigned shift = (m_size - 1) & bitInWordMask; local 150 return m_words.last() & (1U << shift); [all...] |
| /external/chromium_org/third_party/freetype/src/smooth/ |
| ftgrays.c | 1519 int shift; local [all...] |
| /external/chromium_org/third_party/icu/source/i18n/ |
| smpdtfmt.cpp | 1152 int32_t shift = numLen - 6; local [all...] |
| usearch.cpp | 481 * Initializing shift tables, with the default values. 482 * If a corresponding default value is 0, the shift table is not set. 483 * @param shift table for forwards shift 484 * @param backshift table for backwards shift 492 inline void setShiftTable(int16_t shift[], int16_t backshift[], 498 // estimate the value to shift. to do that we estimate the smallest 504 shift[count] = defaultforward; 510 shift[hash(cetable[count])] = temp > 1 ? temp : 1; 512 shift[hash(cetable[cesize])] = 1 748 int32_t shift = pattern->shift[hash(ce)]; local 1989 int32_t shift = strsrch->pattern.backShift[hash(ce)]; local 3393 UBool shift; local [all...] |
| /external/chromium_org/third_party/libpng/ |
| pngrutil.c | 2532 int shift; local 2586 int shift; local 2638 int shift; local [all...] |
| /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
| lp_bld_arit.c | 704 LLVMValueRef shift; local 743 shift = lp_build_const_int_vec(bld->gallivm, type, type.width/2); 745 shift = NULL; 752 if(shift) { 754 res = LLVMConstAShr(res, shift); 756 res = LLVMConstLShr(res, shift); 764 if(shift) { 766 res = LLVMBuildAShr(builder, res, shift, ""); 768 res = LLVMBuildLShr(builder, res, shift, ""); 802 unsigned shift = ffs(b) - 1 local 938 LLVMValueRef shift; local 1223 LLVMValueRef shift = lp_build_const_int_vec(bld->gallivm, type, type.width - 1); local [all...] |
| /external/chromium_org/third_party/mesa/src/src/mesa/main/ |
| ff_fragment_shader.cpp | 816 rgb_saturate = GL_FALSE; /* saturate after rgb shift */ 823 alpha_saturate = GL_FALSE; /* saturate after alpha shift */ 883 /* Deal with the final shift: 886 ir_constant *shift; local 889 shift = new(p->mem_ctx) ir_constant((float)(1 << rgb_shift)); 898 shift = new(p->mem_ctx) ir_constant(glsl_type::vec4_type, 902 return saturate(mul(deref, shift)); [all...] |
| get.c | 2068 int shift, i; local 2157 int shift, i; local 2246 int shift, i; local 2342 int shift, i; local 2438 int shift, i; local 2737 int shift, i; local [all...] |
| /external/chromium_org/third_party/opus/src/celt/ |
| celt_encoder.c | 285 int shift=0; local 286 shift = 14-celt_ilog2(1+celt_maxabs16(tmp, len)); 287 if (shift!=0) 290 tmp[i] = SHL16(tmp[i], shift); 425 int shift; local 431 shift = mode->maxLM; 435 shift = mode->maxLM-LM; 441 clt_mdct_forward(&mode->mdct, in+c*(B*N+overlap)+b*N, &out[b+c*N*B], mode->window, overlap, shift, B); [all...] |
| /external/chromium_org/third_party/opus/src/src/ |
| opus_encoder.c | 359 int shift; local 362 shift=celt_ilog2(Fs/(cutoff_Hz*3)); 371 hp_mem[2*c] = hp_mem[2*c] + PSHR32(x - hp_mem[2*c], shift); 374 hp_mem[2*c+1] = hp_mem[2*c+1] + PSHR32(tmp - hp_mem[2*c+1], shift); [all...] |
| /external/chromium_org/ui/views/controls/textfield/ |
| textfield.cc | 83 const bool shift = event.IsShiftDown(); local 88 if (control && !shift && !alt) 90 return (control && shift && !alt) ? IDS_APP_REDO : kNoCommand; 105 if (!shift) 113 if (!shift) 118 return shift ? IDS_MOVE_TO_BEGINNING_OF_LINE_AND_MODIFY_SELECTION : 121 return shift ? IDS_MOVE_TO_END_OF_LINE_AND_MODIFY_SELECTION : 128 if (shift) 134 return (shift && has_selection) ? IDS_APP_CUT : IDS_DELETE_FORWARD; 137 if (shift) [all...] |
| /external/chromium_org/v8/src/arm64/ |
| macro-assembler-arm64-inl.h | 300 unsigned shift) { 303 asr(rd, rn, shift); 894 unsigned shift) { 897 lsl(rd, rn, shift); 912 unsigned shift) { 915 lsr(rd, rn, shift); 959 void MacroAssembler::Movk(const Register& rd, uint64_t imm, int shift) { 962 movk(rd, imm, shift); 1036 unsigned shift) { 1039 ror(rd, rs, shift); 1530 const int shift = CountTrailingZeros(unit_size, kXRegSizeInBits); local 1547 const int shift = CountTrailingZeros(unit_size, kXRegSizeInBits) - kSmiShift; local 1588 const int shift = CountTrailingZeros(unit_size, kXRegSizeInBits); local 1608 const int shift = CountTrailingZeros(unit_size, kXRegSizeInBits) - kSmiShift; local [all...] |
| macro-assembler-arm64.h | 248 inline void Asr(const Register& rd, const Register& rn, unsigned shift); 401 inline void Lsl(const Register& rd, const Register& rn, unsigned shift); 403 inline void Lsr(const Register& rd, const Register& rn, unsigned shift); 411 inline void Movk(const Register& rd, uint64_t imm, int shift = -1); 425 inline void Ror(const Register& rd, const Register& rs, unsigned shift); 850 static const uint64_t shift = Field::kShift; local [all...] |
| /external/chromium_org/v8/src/ |
| assembler.h | 1148 int32_t shift() const { return shift_; } function in class:v8::internal::MultiplierAndShift [all...] |
| /external/chromium_org/v8/src/x64/ |
| assembler-x64.cc | 608 void Assembler::shift(Register dst, function in class:v8::internal::Assembler 628 void Assembler::shift(Register dst, int subcode, int size) { function in class:v8::internal::Assembler [all...] |
| /external/chromium_org/v8/test/cctest/ |
| test-assembler-arm64.cc | 4514 int shift[] = {1, 3, 5, 9, 17, 33}; local 4567 int shift[] = {1, 3, 5, 9, 17, 33}; local 4622 int shift[] = {1, 3, 5, 9, 17, 33}; local 4677 int shift[] = {4, 8, 12, 16, 24, 36}; local [all...] |
| /external/freetype/src/smooth/ |
| ftgrays.c | 1541 int shift; local [all...] |
| /external/icu/icu4c/source/i18n/ |
| usearch.cpp | 468 * Initializing shift tables, with the default values. 469 * If a corresponding default value is 0, the shift table is not set. 470 * @param shift table for forwards shift 471 * @param backshift table for backwards shift 479 inline void setShiftTable(int16_t shift[], int16_t backshift[], 485 // estimate the value to shift. to do that we estimate the smallest 491 shift[count] = defaultforward; 497 shift[hash(cetable[count])] = temp > 1 ? temp : 1; 499 shift[hash(cetable[cesize])] = 1 735 int32_t shift = pattern->shift[hash(ce)]; local 1976 int32_t shift = strsrch->pattern.backShift[hash(ce)]; local 3393 UBool shift; local [all...] |