Searched defs:shift (Results 76 - 100 of 522) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/
H A Dprocess_info_snapshot_mac.cc89 int shift = 0; local
92 shift = 0;
96 shift = 1;
99 shift = 2;
102 shift = 3;
105 shift = 4;
108 shift = 5;
111 shift = 6;
118 for (int i = 0; i < shift; i++)
/external/chromium_org/chrome/common/extensions/
H A Dcommand.cc157 bool shift = (modifiers & ui::EF_SHIFT_DOWN) != 0; local
166 (shift && !ctrl && !alt && !command)) {
/external/chromium_org/remoting/codec/
H A Daudio_encoder_opus_unittest.cc24 // Phase shift between left and right channels.
43 // small changes (e.g. one sample shift between signals).
51 // defines frequency of the signal. |channel| is used to calculate phase shift
88 // This function returns the approximate shift in samples by finding the first
104 // phase shift from the original signal, then calculates standard deviation of
110 double shift = EstimateSignalShift(received_data); local
115 GetSampleValue(rate, frequency_hz, i - shift, 0);
118 GetSampleValue(rate, frequency_hz, i - shift, 1);
/external/chromium_org/third_party/WebKit/Source/web/gtk/
H A DWebInputEventFactory.cpp311 static WebUChar getControlCharacter(int windowsKeyCode, bool shift) argument
317 if (shift) {
318 // following graphics chars require shift key to input.
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTCPackedCache.h189 const int shift = kHashbits - kValuebits; local
191 return static_cast<T>(k >> shift) & kUpperMask;
198 const int shift = kHashbits - kValuebits; local
200 return static_cast<K>(u) << shift;
/external/chromium_org/third_party/freetype/src/base/
H A Dftbbox.c382 int shift = 0; local
392 /* We want to shift `a', `b', and `c' concurrently in order */
396 /* Necessarily, we need to shift `a', `b', and `c' so that */
414 /* Next, we compute the `shift', by shifting `t1' as many */
419 /* Finally, we shift `a', `b', and `c' by the same amount. */
438 shift++;
445 a >>= shift; local
446 b >>= shift; local
447 c >>= shift; local
453 shift
458 a <<= shift; local
459 b <<= shift; local
460 c <<= shift; local
[all...]
H A Dfttrigon.c103 FT_Int shift; local
110 shift = 0;
113 /* determine msb bit index in `shift' */
117 shift += 16;
122 shift += 8;
127 shift += 4;
132 shift += 2;
137 shift += 1;
140 if ( shift <= 27 )
142 shift
420 FT_Int shift; local
457 FT_Int shift; local
493 FT_Int shift; local
[all...]
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttpload.c67 FT_Int shift; local
90 shift = 2;
98 face->num_locations = table_len >> shift;
102 shift = 1;
110 face->num_locations = table_len >> shift;
122 ( (FT_Long)( face->root.num_glyphs ) + 1 ) << shift;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_shader.cpp320 const unsigned shift = 4 * (2 - i); local
321 offset_bits |= (offsets[i] << shift) & (0xF << shift);
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dplhash.h87 PRUint32 shift; /* multiplicative hash shift */ member in struct:PLHashTable
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
H A Dbn_gcd.c263 int shift; local
277 shift = 0;
278 while (!BN_is_bit_set(B, shift)) /* note that 0 < B */
280 shift++;
289 if (shift > 0)
291 if (!BN_rshift(B, B, shift)) goto err;
296 shift = 0;
297 while (!BN_is_bit_set(A, shift)) /* note that 0 < A */
299 shift++;
308 if (shift >
[all...]
/external/chromium_org/third_party/opus/src/celt/
H A Dmathops.c73 int shift = celt_ilog2(b)-29; local
74 a = VSHR32(a,shift);
75 b = VSHR32(b,shift);
H A Dmdct.c106 const opus_val16 *window, int overlap, int shift, int stride)
114 N >>= shift; local
174 yr = -S_MUL(re,t[i<<shift]) - S_MUL(im,t[(N4-i)<<shift]);
175 yi = -S_MUL(im,t[i<<shift]) + S_MUL(re,t[(N4-i)<<shift]);
183 opus_fft(l->kfft[shift], (kiss_fft_cpx *)f, (kiss_fft_cpx *)in);
196 yr = S_MUL(fp[1],t[(N4-i)<<shift]) + S_MUL(fp[0],t[i<<shift]);
197 yi = S_MUL(fp[0],t[(N4-i)<<shift])
105 clt_mdct_forward(const mdct_lookup *l, kiss_fft_scalar *in, kiss_fft_scalar * OPUS_RESTRICT out, const opus_val16 *window, int overlap, int shift, int stride) argument
209 clt_mdct_backward(const mdct_lookup *l, kiss_fft_scalar *in, kiss_fft_scalar * OPUS_RESTRICT out, const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride) argument
219 N >>= shift; local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkEdgeBuilder.cpp75 static void setShiftedClip(SkRect* dst, const SkIRect& src, int shift) { argument
76 dst->set(SkIntToScalar(src.fLeft >> shift),
77 SkIntToScalar(src.fTop >> shift),
78 SkIntToScalar(src.fRight >> shift),
79 SkIntToScalar(src.fBottom >> shift));
/external/chromium_org/third_party/skia/src/image/
H A DSkSurface_Raster.cpp45 int shift = 0; local
48 shift = 0;
51 shift = 1;
54 shift = 2;
66 uint64_t minRB = (uint64_t)info.fWidth << shift;
71 size_t alignedRowBytes = rowBytes >> shift << shift;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dcommon.cc48 int shift = (1 << i); local
49 size_t x = n >> shift;
52 log += shift;
H A Dpacked-cache-inl.h196 // If we have space for a whole key, we just shift it left.
204 const int shift = kHashbits - kValuebits; local
206 return static_cast<T>(k >> shift) & kUpperMask;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpacked-cache-inl.h194 // If we have space for a whole key, we just shift it left.
202 const int shift = kHashbits - kValuebits; local
204 return static_cast<T>(k >> shift) & kUpperMask;
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/
H A Dlc3barch.c143 size_t shift, int warn)
141 lc3b_floatnum_tobytes(yasm_arch *arch, const yasm_floatnum *flt, unsigned char *buf, size_t destsize, size_t valsize, size_t shift, int warn) argument
H A Dlc3bbc.c244 int shift, const yasm_bytecode *bc, int warn)
247 yasm_intnum_get_sized(intn, buf, destsize, valsize, shift, 0, warn);
242 yasm_lc3b__intnum_tobytes(yasm_arch *arch, const yasm_intnum *intn, unsigned char *buf, size_t destsize, size_t valsize, int shift, const yasm_bytecode *bc, int warn) argument
/external/chromium_org/ui/base/test/
H A Dui_controls_aura.cc23 bool shift,
28 window, key, control, shift, alt, command);
35 bool shift,
41 window, key, control, shift, alt, command, task);
20 SendKeyPress(gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command) argument
32 SendKeyPressNotifyWhenDone(gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, const base::Closure& task) argument
/external/eigen/test/
H A Dhouseholder.cpp80 // test householder sequence on the left with a shift
82 Index shift = internal::random<Index>(0, std::max<Index>(rows-2,0)); local
83 Index brows = rows - shift;
85 HBlockMatrixType hbm = m1.block(shift,0,brows,cols);
88 m2.block(shift,0,brows,cols) = qr.matrixQR();
91 hseq.setLength(hc.size()).setShift(shift);
93 VERIFY(hseq.shift() == shift);
96 m5.block(shift,0,brows,cols).template triangularView<StrictlyLower>().setZero();
101 // test householder sequence on the right with a shift
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/
H A DConstantCollection.java208 shift ();
215 shift ();
246 private void shift () method in class:ConstantCollection.ConstantIterator
/external/freetype/src/base/
H A Dftbbox.c406 FT_Int shift; local
418 /* Necessarily, we need to shift `a', `b', and `c' so that the most */
430 shift = FT_MSB( FT_ABS( a ) | FT_ABS( b ) | FT_ABS( c ) );
432 if ( shift > 22 )
434 shift -= 22;
438 a >>= shift; local
439 b >>= shift; local
440 c >>= shift; local
444 shift = 22 - shift;
446 a <<= shift; local
447 b <<= shift; local
448 c <<= shift; local
[all...]
H A Dfttrigon.c118 FT_Int shift; local
124 shift = FT_MSB( FT_ABS( x ) | FT_ABS( y ) );
126 if ( shift <= FT_TRIG_SAFE_MSB )
128 shift = FT_TRIG_SAFE_MSB - shift;
129 vec->x = (FT_Pos)( (FT_ULong)x << shift );
130 vec->y = (FT_Pos)( (FT_ULong)y << shift );
134 shift -= FT_TRIG_SAFE_MSB;
135 vec->x = x >> shift;
136 vec->y = y >> shift;
365 FT_Int shift; local
402 FT_Int shift; local
438 FT_Int shift; local
[all...]

Completed in 734 milliseconds

1234567891011>>