Searched defs:shift (Results 1 - 25 of 522) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dmmx-shift-with-immediate.c4 void shift(__m64 a, __m64 b, int c) { function
/external/chromium_org/ui/base/keycodes/
H A Dkeyboard_code_conversion.cc13 const bool shift = (flags & EF_SHIFT_DOWN) != 0; local
14 const bool upper = shift ^ ((flags & EF_CAPS_LOCK_DOWN) != 0);
22 if (shift) {
23 // following graphics chars require shift key to input.
65 return shift ? ")!@#$%^&*("[key_code - VKEY_0] :
89 return shift ? ':' : ';';
91 return shift ? '+' : '=';
93 return shift ? '<' : ',';
95 return shift ? '_' : '-';
97 return shift
[all...]
H A Dkeyboard_code_conversion_gtk.cc55 int GdkKeyCodeForWindowsKeyCode(KeyboardCode keycode, bool shift) { argument
57 return XKeysymForWindowsKeyCode(keycode, shift);
71 int GdkNativeKeyCodeForWindowsKeyCode(KeyboardCode keycode, bool shift) { argument
72 int keyval = GdkKeyCodeForWindowsKeyCode(keycode, shift);
H A Dkeyboard_code_conversion_x.cc22 // XLookupKeysym does not take into consideration the state of the lock/shift
538 int XKeysymForWindowsKeyCode(KeyboardCode keycode, bool shift) { argument
574 return shift ? XK_ISO_Left_Tab : XK_Tab;
639 return shift ? XK_parenright : XK_0;
641 return shift ? XK_exclam : XK_1;
643 return shift ? XK_at : XK_2;
645 return shift ? XK_numbersign : XK_3;
647 return shift ? XK_dollar : XK_4;
649 return shift ? XK_percent : XK_5;
651 return shift
[all...]
/external/chromium_org/v8/src/
H A Dmisc-intrinsics.h63 int result, shift; local
65 shift = (value > 0xFFFF) << 4;
66 value >>= shift; local
67 result = shift;
69 shift = (value > 0xFF) << 3;
70 value >>= shift; local
71 result |= shift;
73 shift = (value > 0xF) << 2;
74 value >>= shift; local
75 result |= shift;
78 value >>= shift; local
[all...]
/external/compiler-rt/lib/
H A Dfloatsidf.c45 const int shift = significandBits - exponent; local
46 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
H A Dfloatsisf.c42 // Shift a into the significand field, rounding if it is a right-shift
44 const int shift = significandBits - exponent; local
45 result = (rep_t)a << shift ^ implicitBit;
47 const int shift = exponent - significandBits; local
48 result = (rep_t)a >> shift ^ implicitBit;
49 rep_t round = (rep_t)a << (typeWidth - shift);
H A Dfloatunsidf.c35 const int shift = significandBits - exponent; local
36 result = (rep_t)a << shift ^ implicitBit;
H A Dfloatunsisf.c34 // Shift a into the significand field, rounding if it is a right-shift
36 const int shift = significandBits - exponent; local
37 result = (rep_t)a << shift ^ implicitBit;
39 const int shift = exponent - significandBits; local
40 result = (rep_t)a >> shift ^ implicitBit;
41 rep_t round = (rep_t)a << (typeWidth - shift);
H A Dmuldf3.c74 // Get the significand of a*b. Before multiplying the significands, shift
77 // zero. Normalizing this result is just a conditional left-shift by one
98 // simplify the shift logic.
99 const unsigned int shift = 1U - (unsigned int)productExponent; local
100 if (shift >= typeWidth) return fromRep(productSign);
102 // Otherwise, shift the significand of the result so that the round
104 wideRightShiftWithSticky(&productHi, &productLo, shift);
/external/openfst/src/include/fst/extensions/ngram/
H A Dnthbit.h26 uint32 shift = 0; local
30 shift += (32 & mask);
32 c = __builtin_popcount((v >> shift) & 0xffff);
35 shift += (16 & mask);
37 c = __builtin_popcount((v >> shift) & 0xff);
40 shift += (8 & mask);
42 return shift + ((nth_bit_bit_offset[(v >> shift) & 0xff] >>
/external/v8/src/
H A Dmisc-intrinsics.h63 int result, shift; local
65 shift = (value > 0xFFFF) << 4;
66 value >>= shift; local
67 result = shift;
69 shift = (value > 0xFF) << 3;
70 value >>= shift; local
71 result |= shift;
73 shift = (value > 0xF) << 2;
74 value >>= shift; local
75 result |= shift;
78 value >>= shift; local
[all...]
/external/chromium/base/
H A Dbits.h24 int shift = (1 << i); local
25 uint32 x = value >> shift;
28 log += shift;
/external/chromium_org/base/
H A Dbits.h23 int shift = (1 << i); local
24 uint32 x = value >> shift;
27 log += shift;
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DNavigationPolicy.cpp38 bool navigationPolicyFromMouseEvent(unsigned short button, bool ctrl, bool shift, bool alt, bool meta, NavigationPolicy* policy) argument
45 if (!newTabModifier && !shift && !alt)
50 if (shift)
55 if (shift)
/external/chromium_org/third_party/opus/src/silk/
H A Dsum_sqr_shift.c34 /* Compute number of bits to right shift the sum of squares of a vector */
38 opus_int *shift, /* O Number of bits right shift applied to energy */
82 *shift = shft;
36 silk_sum_sqr_shift( opus_int32 *energy, opus_int *shift, const opus_int16 *x, opus_int len ) argument
/external/srec/srec/include/
H A Dlog_tabl.h32 int shift; member in struct:__anon25919
40 int log_lookup(log_table_info *logtab, int operand, int shift);
/external/aac/libFDK/src/arm/
H A Dscale_arm.cpp106 /* It performs a fMultDiv2 and increments shift by 1 */
107 int shift = scalefactor + 1; local
110 shift = fixmin_I(shift,(INT)DFRACT_BITS-1);
112 if (shift >= 0)
124 tmp0 <<= shift; local
125 tmp1 <<= shift; local
126 tmp2 <<= shift; local
127 tmp3 <<= shift; local
137 tmp0 <<= shift; local
154 tmp0 >>= shift; local
155 tmp1 >>= shift; local
156 tmp2 >>= shift; local
157 tmp3 >>= shift; local
167 tmp0 >>= shift; local
[all...]
/external/chromium_org/chrome/test/base/
H A Dinteractive_test_utils.h48 bool shift,
58 bool shift,
69 bool shift,
90 bool shift,
102 bool shift,
110 if (!SendKeyPressSync(browser, key, control, shift, alt, command))
98 SendKeyPressAndWaitWithDetails( const Browser* browser, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, int type, const content::NotificationSource& source, const content::Details<U>& details) argument
/external/chromium_org/content/browser/renderer_host/
H A Dweb_input_event_aurax11.cc91 WebKit::WebUChar GetControlCharacter(int windows_key_code, bool shift) { argument
97 if (shift) {
98 // following graphics chars require shift key to input.
/external/chromium_org/third_party/skia/include/effects/
H A DSkKernel33MaskFilter.h40 SkKernel33MaskFilter(const int coeff[3][3], int shift, int percent256 = 256) argument
43 fShift = shift;
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmap_scroll.cpp26 int shift; local
31 shift = 0;
35 shift = 1;
38 shift = 2;
101 src -= dx << shift;
104 dst += dx << shift;
114 width <<= shift; // now width is the number of bytes to move per line local
/external/chromium_org/ui/base/gtk/
H A Devent_synthesis_gtk.cc43 bool control, bool shift, bool alt,
49 if (shift) {
56 (shift ? GDK_SHIFT_MASK : 0);
61 // TODO(estade): handle other state flags besides control, shift, alt?
64 (shift ? GDK_SHIFT_MASK : 0) |
67 guint gdk_key = GdkKeyCodeForWindowsKeyCode(key, shift);
73 (shift ? GDK_SHIFT_MASK : 0) | GDK_MOD1_MASK;
78 if (shift) {
41 SynthesizeKeyPressEvents(GdkWindow* window, KeyboardCode key, bool control, bool shift, bool alt, std::vector<GdkEvent*>* events) argument
/external/dropbear/libtommath/
H A Dbn_mp_div_2d.c18 /* shift right by a certain bit count (store quotient in c, optional remainder in d) */
26 /* if the shift count is <= 0 then we do no work */
53 /* shift by as many digits in the bit count */
58 /* shift any bit count < DIGIT_BIT */
61 register mp_digit *tmpc, mask, shift; local
66 /* shift for lsb */
67 shift = DIGIT_BIT - D;
78 /* shift the current word and mix in the carry bits from the previous word */
79 *tmpc = (*tmpc >> D) | (r << shift);
H A Dbn_mp_mul_2d.c18 /* shift left by a certain bit count */
37 /* shift by as many digits in the bit count */
44 /* shift any bit count < DIGIT_BIT */
47 register mp_digit *tmpc, shift, mask, r, rr; local
53 /* shift for msbs */
54 shift = DIGIT_BIT - d;
63 rr = (*tmpc >> shift) & mask;
65 /* shift the current word and OR in the carry */

Completed in 797 milliseconds

1234567891011>>