HomeSort by relevance Sort by last modified time
    Searched refs:SHIFT (Results 1 - 25 of 46) sorted by null

1 2

  /external/qemu/
softmmu_outside_jit.c 34 #define SHIFT 0
37 #define SHIFT 1
40 #define SHIFT 2
43 #define SHIFT 3
softmmu_template.h 21 #define DATA_SIZE (1 << SHIFT)
83 #if SHIFT <= 2
84 res = io_mem_read[index][SHIFT](io_mem_opaque[index], physaddr);
93 #endif /* SHIFT > 2 */
196 int index, shift; local
220 shift = (addr & (DATA_SIZE - 1)) * 8;
222 res = (res1 << shift) | (res2 >> ((DATA_SIZE * 8) - shift));
224 res = (res1 >> shift) | (res2 << ((DATA_SIZE * 8) - shift));
    [all...]
curses.c 247 if (keycode & SHIFT)
263 if (keycode & SHIFT)
curses_keys.h 31 #define SHIFT 0x0080
131 ['!'] = 2 | SHIFT,
132 ['@'] = 3 | SHIFT,
133 ['#'] = 4 | SHIFT,
134 ['$'] = 5 | SHIFT,
135 ['%'] = 6 | SHIFT,
136 ['^'] = 7 | SHIFT,
137 ['&'] = 8 | SHIFT,
138 ['*'] = 9 | SHIFT,
139 ['('] = 10 | SHIFT,
    [all...]
  /external/skia/src/core/
SkScan_AntiPath.cpp 25 #define SHIFT 2
26 #define SCALE (1 << SHIFT)
81 fSuperLeft = left << SHIFT;
135 aa <<= 8 - 2*SHIFT;
136 aa -= aa >> (8 - SHIFT - 1);
140 #define SUPER_Mask ((1 << SHIFT) - 1)
143 int iy = y >> SHIFT;
169 // int maxValue = (1 << (8 - SHIFT)) - (((y & MASK) + 1) >> SHIFT);
177 int n = (stop >> SHIFT) - (start >> SHIFT) - 1
    [all...]
  /external/qemu/audio/
mixeng.c 40 #define SHIFT 8
46 #undef SHIFT
52 #define SHIFT 8
57 #undef SHIFT
67 #define SHIFT 16
82 #undef SHIFT
88 #define SHIFT 16
102 #undef SHIFT
109 #define SHIFT 32
124 #undef SHIFT
    [all...]
mixeng_template.h 88 return ((int64_t) nv) << (32 - SHIFT);
90 return ((int64_t) nv - HALF) << (32 - SHIFT);
104 return ENDIAN_CONVERT ((IN_T) (v >> (32 - SHIFT)));
106 return ENDIAN_CONVERT ((IN_T) ((v >> (32 - SHIFT)) + HALF));
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
sad_mb_offset.h 52 x10 = ((uint32)x10 >> SHIFT); /* 0 0 0 D */
53 x10 = x10 | (x11 << (32 - SHIFT)); /* G F E D */
54 x11 = ((uint32)x11 >> SHIFT); /* 0 0 0 H */
55 x11 = x11 | (x12 << (32 - SHIFT)); /* K J I H */
78 x10 = ((uint32)x10 >> SHIFT); /* mvn x10, x10, lsr #24 = 0xFF 0xFF 0xFF ~D */
79 x10 = x10 | (x11 << (32 - SHIFT)); /* bic x10, x10, x11, lsl #8 = ~G ~F ~E ~D */
80 x11 = ((uint32)x11 >> SHIFT); /* 0xFF 0xFF 0xFF ~H */
81 x11 = x11 | (x12 << (32 - SHIFT)); /* ~K ~J ~I ~H */
155 MVN x10, x10, lsr #SHIFT;
156 BIC x10, x10, x11, lsl #(32-SHIFT);
    [all...]
sad_inline.h 60 #define SHIFT 24
66 #undef SHIFT
67 #define SHIFT 16
72 #undef SHIFT
73 #define SHIFT 8
230 #define SHIFT 24
237 #undef SHIFT
238 #define SHIFT 16
245 #undef SHIFT
246 #define SHIFT
    [all...]
  /cts/tools/dasm/src/java_cup/
parse_action.java 5 * Full entries will either be SHIFT(state_num), REDUCE(production), or ERROR.
37 /** Constant for action type -- shift action. */
38 public static final int SHIFT = 1;
shift_action.java 4 /** This class represents a shift action within the parse table.
34 /** The state we shift to. */
37 /** The state we shift to. */
45 public int kind() {return SHIFT;}
78 public String toString() {return "SHIFT(" + shift_to().index() + ")";}
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
sad_mb_offset.h 57 x10 = ((uint32)x10 >> SHIFT); /* 0 0 0 D */
58 x10 = x10 | (x11 << (32 - SHIFT)); /* G F E D */
59 x11 = ((uint32)x11 >> SHIFT); /* 0 0 0 H */
60 x11 = x11 | (x12 << (32 - SHIFT)); /* K J I H */
83 x10 = ((uint32)x10 >> SHIFT); /* mvn x10, x10, lsr #24 = 0xFF 0xFF 0xFF ~D */
84 x10 = x10 | (x11 << (32 - SHIFT)); /* bic x10, x10, x11, lsl #8 = ~G ~F ~E ~D */
85 x11 = ((uint32)x11 >> SHIFT); /* 0xFF 0xFF 0xFF ~H */
86 x11 = x11 | (x12 << (32 - SHIFT)); /* ~K ~J ~I ~H */
161 MVN x10, x10, lsr #SHIFT;
162 BIC x10, x10, x11, lsl #(32-SHIFT);
252 int32 shift = SHIFT; local
    [all...]
sad_inline.h 65 #define SHIFT 24
71 #undef SHIFT
72 #define SHIFT 16
77 #undef SHIFT
78 #define SHIFT 8
235 #define SHIFT 24
242 #undef SHIFT
243 #define SHIFT 16
250 #undef SHIFT
251 #define SHIFT
    [all...]
  /frameworks/base/media/libeffects/lvm/lib/Eq/src/
LVEQNB_Process.c 36 #define SHIFT 13
103 SHIFT); /* Scaling shift */
160 SHIFT); /* Scaling shift */
180 SHIFT); /* Scaling shift */
  /external/qemu/target-i386/
ops_sse.h 21 #if SHIFT == 0
41 int shift; local
45 #if SHIFT == 1
49 shift = s->B(0);
50 d->W(0) >>= shift;
51 d->W(1) >>= shift;
52 d->W(2) >>= shift;
53 d->W(3) >>= shift;
54 #if SHIFT == 1
55 d->W(4) >>= shift;
65 int shift; local
86 int shift; local
110 int shift; local
130 int shift; local
147 int shift; local
167 int shift; local
185 int shift; local
204 int shift, i; local
217 int shift, i; local
    [all...]
ops_sse_header.h 20 #if SHIFT == 0
47 #if SHIFT == 1
104 #if SHIFT == 0
123 #if SHIFT == 0
133 #if SHIFT == 1
236 #if SHIFT == 1
242 #if SHIFT == 0
283 #if SHIFT == 1
326 #if SHIFT == 1
336 #undef SHIFT
    [all...]
helper.h 202 #define SHIFT 0
204 #define SHIFT 1
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_IDCT_s.h 142 LCLA SHIFT
233 SHIFT SETA 12
237 MOV xit, #1<<(SHIFT-1)
242 MOV xi3, xi3, ASR #SHIFT
243 PKHBT xi4, xi3, xi4, LSL #(16-SHIFT)
247 MOV xi0, xi0, ASR #SHIFT
248 PKHBT xi5, xi0, xi5, LSL #(16-SHIFT)
251 MOV xi1, xi1, ASR #SHIFT
252 PKHBT xi6, xi1, xi6, LSL #(16-SHIFT)
253 MOV xi2, xi2, ASR #SHIFT
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
armCOMM_IDCT_s.h 142 LCLA SHIFT
233 SHIFT SETA 12
237 MOV xit, #1<<(SHIFT-1)
242 MOV xi3, xi3, ASR #SHIFT
243 PKHBT xi4, xi3, xi4, LSL #(16-SHIFT)
247 MOV xi0, xi0, ASR #SHIFT
248 PKHBT xi5, xi0, xi5, LSL #(16-SHIFT)
251 MOV xi1, xi1, ASR #SHIFT
252 PKHBT xi6, xi1, xi6, LSL #(16-SHIFT)
253 MOV xi2, xi2, ASR #SHIFT
    [all...]
  /external/mesa3d/src/pixelflinger2/
llvm_texture.cpp 140 static const unsigned SHIFT = 16;
184 // arithmetic shift right, since it's the result of subtraction, which could be negative
185 h0 = builder.CreateAShr(h0, constIntVec(builder, SHIFT, SHIFT, SHIFT, SHIFT));
189 h1 = builder.CreateAShr(h1, constIntVec(builder, SHIFT, SHIFT, SHIFT, 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/qemu/target-arm/
op_helper.c 37 int shift; local
41 for (shift = 0; shift < 32; shift += 8) {
42 index = (ireg >> shift) & 0xff;
45 val |= tmp << shift;
47 val |= def & (0xff << shift);
57 #define SHIFT 0
60 #define SHIFT 1
63 #define SHIFT
388 int shift = i & 0xff; local
396 int shift = i & 0xff; local
404 int shift = i & 0xff; local
412 int shift = i & 0xff; local
428 int shift = i & 0xff; local
444 int shift = i & 0xff; local
457 int shift1, shift; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GestureManager.java 512 if (e.keyCode == SWT.SHIFT) {
548 if (e.keyCode == SWT.SHIFT) {
777 boolean toggle = (mLastStateMask & (SWT.CTRL | SWT.SHIFT | SWT.COMMAND)) != 0;
    [all...]
  /external/v8/tools/
ll_prof.py 194 SHIFT = 12 # 4K pages
195 SIZE = (1 << SHIFT)
204 return address >> CodePage.SHIFT
208 return id << CodePage.SHIFT
  /external/opencv/cv/src/
cvhough.cpp 566 const int shift = 16; local
605 dy0 = cvRound( b*(1 << shift)/fabs(a) );
606 y0 = (y0 << shift) + (1 << (shift-1));
612 dx0 = cvRound( a*(1 << shift)/fabs(b) );
613 x0 = (x0 << shift) + (1 << (shift-1));
633 i1 = y >> shift;
637 j1 = x >> shift;
681 i1 = y >> shift;
    [all...]

Completed in 380 milliseconds

1 2