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

<<11121314151617

  /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/qemu/audio/
audio_int.h 64 int shift; member in struct:audio_pcm_info
  /external/qemu/block/
qcow.c 96 int len, i, shift; local
128 shift = s->cluster_bits + s->l2_bits;
129 s->l1_size = (header.size + (1LL << shift) - 1) >> shift;
744 int fd, header_size, backing_filename_len, l1_size, i, shift; local
791 shift = header.cluster_bits + header.l2_bits;
792 l1_size = ((total_size * 512) + (1LL << shift) - 1) >> shift;
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/distrib/libpng-1.2.19/
pngvcrd.c 534 int shift; local
555 shift = s_start;
563 value = (*sp >> shift) & 0x1;
564 *dp &= (png_byte)((0x7f7f >> (7 - shift)) & 0xff);
565 *dp |= (png_byte)(value << shift);
568 if (shift == s_end)
570 shift = s_start;
575 shift += s_inc;
591 int shift; local
613 shift = s_start
646 int shift; local
    [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/strace/
time.c 576 int shift; member in struct:__anon12873
599 tprintf(", shift=%d, stabil=%d, jitcnt=%d",
600 tx.shift, tx.stabil, tx.jitcnt);
642 tprintf(", shift=%d, stabil=%ld, jitcnt=%ld",
643 tx.shift, tx.stabil, tx.jitcnt);
  /external/svox/pico/lib/
picosig2.c 532 picoos_int32 *D, K2, shift; local
547 shift = 27 - scmeanMGC;
548 K2 = 1 << shift;
552 XXr[nI] = c1[nI] << shift;
    [all...]
  /external/v8/src/arm/
disasm-arm.cc 201 // These shift names are defined in a way to match the native disassembler
208 // Print the register shift operands for the instruction. Generally used for
211 ShiftOp shift = instr->ShiftField(); local
218 if ((instr->RegShiftValue() == 0) && (shift == LSL) && (shift_amount == 0)) {
224 if ((shift == ROR) && (shift_amount == 0)) {
227 } else if (((shift == LSR) || (shift == ASR)) && (shift_amount == 0)) {
255 // Print the optional shift and immediate used by saturating instructions.
257 int shift = instr->Bits(11, 7); local
258 if (shift > 0)
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Lexer.cpp 108 /* 14 - Shift Out */ CharacterInvalid,
109 /* 15 - Shift In */ CharacterInvalid,
274 ALWAYS_INLINE void Lexer::shift() function in class:JSC::Lexer
302 shift();
303 shift();
304 shift();
305 shift();
314 shift();
318 shift();
410 shift();
    [all...]
  /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 647 int shift = 0; local
649 while (shift < 64) {
651 result |= (long) (b & 0x7F) << shift;
654 shift += 7;
  /frameworks/base/telephony/java/com/android/internal/telephony/
GsmAlphabet.java 66 * Using a non-default language locking shift table OR single shift table
72 * Using a non-default language locking shift table AND single shift table
242 * @param languageShiftTable the 7 bit single shift language table, or 0 for the default
299 * @param languageShiftTable the 7 bit single shift language table, or 0 for the default
325 * @param languageShiftTable the 7 bit single shift language table, or 0 for the default
385 int shift = bitOffset % 8; local
387 packedChars[++byteOffset] |= value << shift;
389 if (shift > 1)
457 int shift = bitOffset % 8; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
soc-dapm.h 73 { .id = snd_soc_dapm_pga, .name = wname, .reg = wreg, .shift = wshift, \
77 { .id = snd_soc_dapm_mixer, .name = wname, .reg = wreg, .shift = wshift, \
80 { .id = snd_soc_dapm_micbias, .name = wname, .reg = wreg, .shift = wshift, \
83 { .id = snd_soc_dapm_switch, .name = wname, .reg = wreg, .shift = wshift, \
86 { .id = snd_soc_dapm_mux, .name = wname, .reg = wreg, .shift = wshift, \
92 { .id = snd_soc_dapm_pga, .name = wname, .reg = wreg, .shift = wshift, \
97 { .id = snd_soc_dapm_mixer, .name = wname, .reg = wreg, .shift = wshift, \
101 { .id = snd_soc_dapm_micbias, .name = wname, .reg = wreg, .shift = wshift, \
106 { .id = snd_soc_dapm_switch, .name = wname, .reg = wreg, .shift = wshift, \
111 { .id = snd_soc_dapm_mux, .name = wname, .reg = wreg, .shift = wshift,
260 unsigned char shift; \/* bits to shift *\/ member in struct:snd_soc_dapm_widget
    [all...]
  /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...]
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java 248 int shift = (opcode == Opcodes.CONST_HIGH16) ? 16 : 48; local
249 short literal = (short) (insn.getLiteral() >> shift);
    [all...]
  /dalvik/vm/reflect/
Annotation.cpp 63 int shift = 0; local
73 assert(shift < 32);
76 result |= (val & 0x7f) << shift;
77 shift += 7;
    [all...]
  /external/aac/libAACenc/src/
aacenc_tns.cpp 602 int shift = 0; local
603 FIXP_DBL tmp = invSqrtNorm2(value,&shift);
606 *sc += (2*shift);
    [all...]
  /external/chromium/chrome/browser/resources/
keyboard_overlay.js 43 glyph_shift: 'shift',
49 shift: 'shift',
54 'SHIFT': 'modifier-shift',
60 '2A': 'is-shift',
125 16: 'SHIFT',
128 91: 'ALT', // left ALT pressed with SHIFT
129 92: 'ALT', // right ALT pressed with SHIFT
132 var isPressed = {'SHIFT': e.shiftKey, 'CTRL': e.ctrlKey, 'ALT': e.altKey}
    [all...]
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_gtk.cc 1464 int shift = dir == GTK_MENU_DIR_PARENT ? -1 : 1; local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
InstructionCodec.java 248 int shift = (opcode == Opcodes.CONST_HIGH16) ? 16 : 48; local
249 short literal = (short) (insn.getLiteral() >> shift);
    [all...]
  /external/freetype/include/freetype/
ftimage.h 698 int shift; member in struct:FT_Outline_Funcs_
    [all...]
  /external/libpng/
pngrtran.c 1611 png_uint_32 shift = 7 - (int)((row_width + 7) & 0x07); local
1633 png_uint_32 shift = (int)((3 - ((row_width + 3) & 0x03)) << 1); local
1654 png_uint_32 shift = (int)((1 - ((row_width + 1) & 0x01)) << 2); local
1695 int shift[4]; local
1753 *bp >>= shift[0]; local
1767 *bp++ >>= shift[i%channels]; local
1781 value >>= shift[i%channels]; local
2821 int shift; local
3697 int shift, value; local
3844 int shift, value; local
4245 int i, j, shift, num; local
    [all...]
pngwutil.c 2001 int shift; local
2035 int shift; local
2068 int shift; local
    [all...]

Completed in 1258 milliseconds

<<11121314151617