Searched defs:shift (Results 1 - 25 of 657) 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/chrome/test/remoting/
H A Dkey_code_conv.cc16 char c, const char** code, ui::KeyboardCode* vkey_code, bool* shift) {
24 *shift = false;
31 *shift = true;
15 GetKeyValuesFromChar( char c, const char** code, ui::KeyboardCode* vkey_code, bool* shift) argument
/external/chromium_org/ui/events/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...]
/external/chromium_org/v8/src/
H A Dmisc-intrinsics.h40 int result, shift; local
42 shift = (value > 0xFFFF) << 4;
43 value >>= shift; local
44 result = shift;
46 shift = (value > 0xFF) << 3;
47 value >>= shift; local
48 result |= shift;
50 shift = (value > 0xF) << 2;
51 value >>= shift; local
52 result |= shift;
55 value >>= shift; local
[all...]
/external/compiler-rt/lib/builtins/
H A Dfloatsidf.c46 const int shift = significandBits - exponent; local
47 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
H A Dfloatsisf.c43 // Shift a into the significand field, rounding if it is a right-shift
45 const int shift = significandBits - exponent; local
46 result = (rep_t)a << shift ^ implicitBit;
48 const int shift = exponent - significandBits; local
49 result = (rep_t)a >> shift ^ implicitBit;
50 rep_t round = (rep_t)a << (typeWidth - shift);
H A Dfloatunsidf.c36 const int shift = significandBits - exponent; local
37 result = (rep_t)a << shift ^ implicitBit;
H A Dfloatunsisf.c35 // Shift a into the significand field, rounding if it is a right-shift
37 const int shift = significandBits - exponent; local
38 result = (rep_t)a << shift ^ implicitBit;
40 const int shift = exponent - significandBits; local
41 result = (rep_t)a >> shift ^ implicitBit;
42 rep_t round = (rep_t)a << (typeWidth - shift);
/external/libunwind/src/mi/
H A D_ReadSLEB.c6 unsigned shift = 0; local
13 result |= (byte & 0x7f) << shift;
14 shift += 7;
19 if (shift < 8 * sizeof (unw_word_t) && (byte & 0x40) != 0)
21 result |= ((unw_word_t) -1) << shift;
H A D_ReadULEB.c6 unsigned shift = 0; local
13 result |= (byte & 0x7f) << shift;
16 shift += 7;
/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/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/chromium_org/v8/src/base/
H A Ddivision-by-constant.h19 : multiplier(m), shift(s), add(a) {}
23 unsigned shift; member in struct:v8::base::MagicNumbersForDivision
28 // Calculate the multiplier and shift for signed division via multiplication.
34 // Calculate the multiplier and shift for unsigned division via multiplication,
/external/libopus/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:__anon31116
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/pdf/
H A Dfading_control.cc58 double shift = local
60 if (shift > delta)
63 alpha_shift_ = static_cast<int>(ceil(shift));
68 // If disabling, make alpha shift negative.
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_leb128.h23 size_t shift = 0; local
28 value |= static_cast<uint32_t>(byte & 127) << shift;
29 shift += 7;
49 size_t shift = 0; local
54 value |= (static_cast<ssize_t>(byte & 127) << shift);
55 shift += 7;
58 if (shift < size && (byte & 64))
59 value |= -(static_cast<ssize_t>(1) << shift);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_systemdependent.h68 const int shift = (1 << i); local
69 const unsigned int x = value >> shift;
72 log += shift;
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmap_scroll.cpp26 int shift = this->bytesPerPixel() >> 1; local
83 src -= dx << shift;
86 dst += dx << shift;
96 width <<= shift; // now width is the number of bytes to move per line local
/external/chromium_org/third_party/speex/libspeex/
H A Dlpc.c138 int shift, ac_shift; local
143 shift = 8;
144 while (shift && ac0<0x40000000)
146 shift--;
162 d = ADD32(d,SHR32(MULT16_16(x[j],x[j-i]), shift));
/external/chromium_org/tools/relocation_packer/src/
H A Dleb128.cc50 size_t shift = 0; local
56 value |= static_cast<ELF::Xword>(byte & 127) << shift;
57 shift += 7;
/external/chromium_org/ui/events/
H A Devent_utils.cc67 base::char16 GetControlCharacterForKeycode(int windows_key_code, bool shift) { argument
73 if (shift) {
74 // following graphics chars require shift key to input.

Completed in 561 milliseconds

1234567891011>>