HomeSort by relevance Sort by last modified time
    Searched refs:SHIFT (Results 26 - 50 of 88) sorted by null

12 3 4

  /external/chromium_org/third_party/libyuv/tools/valgrind-libyuv/
libyuv_tests.bat 20 :: NB: SHIFT command doesn't modify %*
24 SHIFT
32 SHIFT
  /external/qemu/target-i386/
ops_sse_header.h 19 #if SHIFT == 0
46 #if SHIFT == 1
103 #if SHIFT == 0
122 #if SHIFT == 0
132 #if SHIFT == 1
239 #if SHIFT == 1
245 #if SHIFT == 0
286 #if SHIFT == 1
329 #if SHIFT == 1
340 #if SHIFT ==
    [all...]
shift_helper_template.h 20 #define DATA_BITS (1 << (3 + SHIFT))
helper.h 202 #define SHIFT 0
204 #define SHIFT 1
cc_helper_template.h 20 #define DATA_BITS (1 << (3 + SHIFT))
215 /* of is defined if shift count == 1 */
240 /* of is defined if shift count == 1 */
  /external/chromium_org/chrome/browser/resources/chromeos/
keyboard_overlay.js 23 'SHIFT': 'modifier-shift',
30 '2A': 'is-shift',
142 delete shortcutDataCache['+<>CTRL<>SHIFT'];
144 delete shortcutDataCache['-<>CTRL<>SHIFT'];
146 delete shortcutDataCache['0<>CTRL<>SHIFT'];
204 16: 'SHIFT',
211 'SHIFT': e.shiftKey,
222 return ['SHIFT', 'CTRL', 'ALT', 'SEARCH'].filter(
281 if ((identifier == '2A' && contains(modifiers, 'SHIFT')) ||
    [all...]
keyboard_overlay_data.js 288 'label': 'shift'
343 'label': 'shift'
606 'label': 'shift'
659 'label': 'shift'
895 'label': 'shift'
937 'label': 'shift'
1195 'label': 'shift'
1245 'label': 'shift'
1484 'label': 'shift'
1525 'label': 'shift'
    [all...]
  /external/jpeg/
mips_idct_le.S 305 SHIFT = 2
351 shll_s.ph $s0, $t0, SHIFT # A a
461 shll_s.ph $s0, $s0, SHIFT
467 shll_s.ph $s7, $s7, SHIFT
482 shll_s.ph $s1, $s1, SHIFT
483 shll_s.ph $s2, $s2, SHIFT
484 shll_s.ph $s3, $s3, SHIFT
485 shll_s.ph $s4, $s4, SHIFT
486 shll_s.ph $s5, $s5, SHIFT
487 shll_s.ph $s6, $s6, SHIFT
    [all...]
  /external/qemu/include/exec/
softmmu_template.h 26 #define DATA_SIZE (1 << SHIFT)
130 #if SHIFT <= 2
131 val = io_mem_read(index, physaddr, 1 << SHIFT);
140 #endif /* SHIFT > 2 */
191 unsigned shift; local
202 shift = (addr & (DATA_SIZE - 1)) * 8;
205 res = (res1 >> shift) | (res2 << ((DATA_SIZE * 8) - shift));
273 unsigned shift; local
284 shift = (addr & (DATA_SIZE - 1)) * 8
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_long.py 18 # SHIFT should match the value in longintrepr.h for best testing.
19 SHIFT = sys.long_info.bits_per_digit
20 BASE = 2 ** SHIFT
34 for i in range(2*SHIFT):
94 nbits_hi = ndigits * SHIFT
95 nbits_lo = nbits_hi - SHIFT + 1
98 r = int(random.random() * (SHIFT * 2)) | 1 # force 1 bits to start
102 self.assertTrue(1 <= bits <= SHIFT)
107 r = int(random.random() * (SHIFT * 2))
119 answer = (answer << SHIFT) | random.randint(0, MASK
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_long.py 18 # SHIFT should match the value in longintrepr.h for best testing.
19 SHIFT = sys.long_info.bits_per_digit
20 BASE = 2 ** SHIFT
34 for i in range(2*SHIFT):
94 nbits_hi = ndigits * SHIFT
95 nbits_lo = nbits_hi - SHIFT + 1
98 r = int(random.random() * (SHIFT * 2)) | 1 # force 1 bits to start
102 self.assertTrue(1 <= bits <= SHIFT)
107 r = int(random.random() * (SHIFT * 2))
119 answer = (answer << SHIFT) | random.randint(0, MASK
    [all...]
  /external/qemu/ui/
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/qemu/target-arm/
op_helper.c 40 int shift; local
44 for (shift = 0; shift < 32; shift += 8) {
45 index = (ireg >> shift) & 0xff;
48 val |= tmp << shift;
50 val |= def & (0xff << shift);
63 #define SHIFT 0
66 #define SHIFT 1
69 #define SHIFT
378 int shift = i & 0xff; local
386 int shift = i & 0xff; local
394 int shift = i & 0xff; local
402 int shift = i & 0xff; local
418 int shift = i & 0xff; local
434 int shift = i & 0xff; local
447 int shift1, shift; local
    [all...]
  /external/mdnsresponder/mDNSShared/
CommonServices.h 671 @abstract Inserts BITS (both 0 and 1 bits) into X, controlled by MASK and SHIFT, and returns the result.
676 SHIFT is the number of bits to shift left for 1 to reach the first bit position of MASK.
683 #define InsertBits( X, BITS, MASK, SHIFT ) ( ( ( X ) & ~( MASK ) ) | ( ( ( BITS ) << ( SHIFT ) ) & ( MASK ) ) )
688 @abstract Extracts bits from X, controlled by MASK and SHIFT, and returns the result.
693 SHIFT is the number of bits to shift right to right justify MASK.
700 #define ExtractBits( X, MASK, SHIFT ) ( ( ( X ) >> ( SHIFT ) ) & ( ( MASK ) >> ( SHIFT ) )
    [all...]
  /external/chromium_org/third_party/libyuv/source/
row_any.cc 339 #define UV422ANY(NAMEANY, ANYTOUV_SIMD, ANYTOUV_C, BPP, MASK, SHIFT) \
345 dst_u + (n >> SHIFT), \
346 dst_v + (n >> SHIFT), \
  /external/chromium_org/tools/win/
copy-installer.bat 141 SHIFT
  /external/chromium_org/ui/keyboard/resources/elements/
kb-key-codes.js 7 // Flag values for ctrl, alt and shift as defined by EventFlags
14 SHIFT: 2
29 // exclude the shift modifer when sending key events for this key. If it's
159 * Retrieves the keyCode and status of the shift modifier.
195 // The shift modifier is handled specially. Some charactares like '+'
214 modifiers = shiftModifier ? modifiers | Modifier.SHIFT : modifiers;
  /external/chromium_org/v8/tools/
ll_prof.py 210 SHIFT = 20 # 1M pages
211 SIZE = (1 << SHIFT)
220 return address >> CodePage.SHIFT
224 return id << CodePage.SHIFT
    [all...]
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GestureManager.java 544 if (e.keyCode == SWT.SHIFT) {
581 if (e.keyCode == SWT.SHIFT) {
823 boolean toggle = (mLastStateMask & (SWT.CTRL | SWT.SHIFT | SWT.COMMAND)) != 0;
    [all...]
  /cts/tools/dasm/src/java_cup/
emit.java 34 * (shift, reduce, or error) under each lookahead symbol.<br>
522 if (act.kind() == parse_action.SHIFT)
lalr_state.java 29 * of these states to parse. The parser has two operations, shift and reduce.
30 * In a shift, it consumes one token and makes a transition to a new state.
347 new_items.add(itm.shift());
433 * out of the state (shift entries) or reductions from the state to some
440 * are resolved by always shifting for shift/reduce conflicts and choosing
494 /* if the other act was not a shift */
495 if (other_act.kind() != parse_action.SHIFT)
513 /* if its on an terminal add a shift entry */
530 /* shift always wins */
592 /* must be a shift on a terminal or non-terminal *
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
ImageViewer.java 56 public static final String HELP_MESSAGE_KEY_TIPS = "Press Shift to erase pixels."
59 public static final String HELP_MESSAGE_KEY_TIPS2 = "Release Shift to draw pixels.";
722 if (keycode == SWT.SHIFT) {
736 if (keycode == SWT.SHIFT) {
  /external/chromium_org/third_party/sqlite/src/tool/
lemon.c 222 enum cfgstatus status; /* used during followset and shift computations */
228 SHIFT,
232 SSCONFLICT, /* A shift/shift conflict */
235 SH_RESOLVED, /* Was a shift. Precedence resolved conflict */
240 /* Every shift or reduce operation is stored as one of the following */
245 struct state *stp; /* The new state, if a shift */
434 if( type==SHIFT ){
866 ** state is any state which can be reached by a shift action.
884 if( cfp->dot>=cfp->rp->nrhs ) continue; /* Can't shift this config *
    [all...]

Completed in 3985 milliseconds

12 3 4