HomeSort by relevance Sort by last modified time
    Searched defs:shift (Results 526 - 550 of 828) sorted by null

<<21222324252627282930>>

  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 404 int shift = 0; local
406 while (shift < 64) {
408 result |= (long)(b & 0x7F) << shift;
412 shift += 7;
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java 360 int shift = 0; local
362 while (shift < 64) {
364 result |= (long)(b & 0x7F) << shift;
368 shift += 7;
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
CodedInputByteBufferNano.java 320 int shift = 0; local
322 while (shift < 64) {
324 result |= (long)(b & 0x7F) << shift;
328 shift += 7;
  /external/qemu/audio/
audio_int.h 64 int shift; member in struct:audio_pcm_info
  /external/qemu/block/
raw-posix.c 318 int size, ret, shift, sum; local
327 shift = offset & 0x1ff;
328 size = (shift + count + 0x1ff) & ~0x1ff;
331 ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, size);
335 size = 512 - shift;
338 memcpy(buf, s->aligned_buf + shift, size);
406 int size, ret, shift, sum; local
414 shift = offset & 0x1ff;
415 ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, 512);
419 size = 512 - shift;
    [all...]
  /external/qemu/telephony/
gsm.c 45 int shift = 0;
48 int c = (bcd[0] >> shift) & 0xf;
58 shift += 4;
59 if (shift == 8) {
61 shift = 0;
656 int shift = (septet_offset & 7); local
663 int c = (src[0] >> shift) & 0x7f;
666 if (shift > 1) {
667 c = ((src[1] << (8-shift)) | c) & 0x7f;
682 shift += 7
745 int shift = (septet_offset & 7); local
810 int shift = start & 7; local
999 int shift = 0; local
    [all...]
  /external/skia/src/core/
SkScalerContext.cpp 562 int shift = 7; local
563 for (int i = 0; i < leftOverBits; ++i, --shift) {
564 bits |= convert_8_to_1(*src++) << shift;
    [all...]
  /external/strace/
time.c 422 int shift; member in struct:__anon35087
445 tprintf(", shift=%d, stabil=%d, jitcnt=%d",
446 tx.shift, tx.stabil, tx.jitcnt);
488 tprintf(", shift=%d, stabil=%ld, jitcnt=%ld",
489 tx.shift, (long) tx.stabil, (long) tx.jitcnt);
  /external/svox/pico/lib/
picosig2.c 533 picoos_int32 *D, K2, shift; local
548 shift = 27 - scmeanMGC;
549 K2 = 1 << shift;
553 XXr[nI] = c1[nI] << shift;
    [all...]
  /external/valgrind/main/none/tests/ppc32/
test_dfp1.c 394 int shift = 0; local
411 *hex_fpscr_in = (i << shift);
419 *hex_fpscr_out &= (max_rm - 1) << shift;
420 expected_val = i << shift;
422 *hex_fpscr_out &= BFP_MAX_RM | ((max_rm - 1) << shift);
423 expected_val = (i << shift) | BFP_MAX_RM;
433 shift = 32;
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
sf_estim.c 102 Word32 sfbOffs, sfb, shift; local
544 /* shift sfbs for next band */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_DequantTransformResidualFromPairAndAdd_s.s 84 shift RN 14 label
234 LDRSB shift,[pQPdiv,QP] ;// Shift = QP / 6
241 VDUP dShift,shift
286 VMOV dZero,#0 ;// Used to right shift by 1
  /frameworks/base/core/java/android/net/
NetworkStatsHistory.java 654 int shift = 0; local
656 while (shift < 64) {
658 result |= (long) (b & 0x7F) << shift;
661 shift += 7;
  /frameworks/rs/driver/runtime/
rs_structs.h 63 uint32_t shift; member in struct:Allocation::__anon39035::DrvState::YuvState
  /hardware/intel/img/psb_video/src/
psb_overlay.c 278 i830_swidth(unsigned int offset, unsigned int width, unsigned int mask, int shift)
280 int swidth = ((offset + width + mask) >> shift) - (offset >> shift);
421 unsigned int mask, shift, offsety, offsetu; local
528 shift = 6;
542 swidthy = i830_swidth(offsety, width, mask, shift);
543 swidthuv = i830_swidth(offsetu, width / 2, mask, shift);
550 swidthy = i830_swidth(offsety, width, mask, shift);
551 swidthuv = i830_swidth(offsetu, width / 2, mask, shift);
559 swidth = ((offsety + (width << 1) + mask) >> shift)
    [all...]
  /libcore/luni/src/main/java/java/math/
BigInt.java 231 // n > 0: shift left (multiply)
232 static BigInt shift(BigInt a, int n) { method in class:BigInt
238 void shift(int n) { method in class:BigInt
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
Unwind-EHABI.cpp 278 uint32_t shift = 0; local
284 addend |= (v & 0x7f) << shift;
287 shift += 7;
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Attachment.java 674 int shift = attachmentIndex * 2 + rendition; local
675 int mask = 1 << shift;
696 int shift = attachmentIndex * 2; local
697 int mask = 1 << shift;
700 // implicit shift of 0 finds the SIMPLE rendition bit
703 // shift of 1 finds the BEST rendition bit
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 1270 void shift(int where, int gapLength, boolean exclusive) { method in class:CodeIterator.Branch
1347 void shift(int where, int gapLength, boolean exclusive) { method in class:CodeIterator.Branch16
1435 void shift(int where, int gapLength, boolean exclusive) { method in class:CodeIterator.Jump32
1458 void shift(int where, int gapLength, boolean exclusive) { method in class:CodeIterator.Switcher
    [all...]
  /art/compiler/dex/quick/arm64/
utility_arm64.cc 288 for (int shift = 0; shift < 64; shift += 16) {
289 uint16_t halfword = static_cast<uint16_t>(value >> shift);
422 int shift; local
425 shift = 0;
429 shift = 1;
435 res = NewLIR3(kA64Movn3rdM, r_dest.GetReg(), ~useful_bits, shift);
437 res = NewLIR3(kA64Movz3rdM, r_dest.GetReg(), useful_bits, shift);
503 int shift; local
516 NewLIR3(WIDE(kA64Movk3rdM), r_dest.GetReg(), halfword, shift); local
943 bool shift; local
    [all...]
  /art/disassembler/
disassembler_arm.cc 149 explicit Rm(uint32_t instruction) : shift((instruction >> 4) & 0xff), rm(instruction & 0xf) {}
150 uint32_t shift; member in struct:art::arm::Rm
155 if (r.shift != 0) {
156 os << "-shift-" << r.shift; // TODO
668 // TODO: use canonical form if there is a shift (lsl, ...).
735 // Shift operand.
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java 247 int shift = (opcode == Opcodes.CONST_HIGH16) ? 16 : 48; local
248 short literal = (short) (insn.getLiteral() >> shift);
    [all...]
  /device/htc/flounder/audio/visualizer/
nv_offload_visualizer.c 674 int32_t shift; local
679 shift = 32;
686 if (shift > clz) shift = clz;
689 * translate to a shift of 8 (for converting 16 bit to 8 bit) */
690 shift = 25 - shift;
692 if (shift < 3) {
693 shift = 3;
697 shift++
    [all...]
  /external/aac/libAACenc/src/
aacenc_tns.cpp 600 int shift = 0; local
601 FIXP_DBL tmp = invSqrtNorm2(value,&shift);
604 *sc += (2*shift);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
IntArray.java 268 public void addOneShifted(int shift)
270 if (shift >= m_ints.length)
272 m_ints = resizedInts(shift + 1);
275 m_ints[shift] ^= 1;
281 int shift = bits & 0x1F; local
283 if (shift == 0)
301 int shiftInv = 32 - shift, prev = 0;
305 m_ints[i + words] ^= (next << shift) | prev;
311 private static int addShiftedByBits(int[] x, int[] y, int count, int shift)
313 int shiftInv = 32 - shift, prev = 0
392 int shift = bit & 0x1F; local
416 int shift = bit & 0x1F; local
    [all...]

Completed in 2436 milliseconds

<<21222324252627282930>>