Searched refs:shift (Results 76 - 100 of 1142) sorted by relevance

1234567891011>>

/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/compiler-rt/lib/builtins/arm/
H A Dclzdi2.S67 #define BLOCK(shift) \
68 lsrs r2, r0, shift; \
70 addeq r1, shift \
/external/libvpx/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/ui/keyboard/resources/
H A Dmain.css18 kb-keyboard.caps-locked kb-shift-key.dark {
24 * Controls whether the shift key should be highlighted or not.
26 kb-keyboard[keyset="upper"] kb-shift-key.dark /deep/
27 .shift-light {
/external/chromium_org/third_party/opus/src/celt/
H A Dmdct.h62 const opus_val16 *window, int overlap, int shift, int stride);
68 const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride);
H A Dmdct.c106 const opus_val16 *window, int overlap, int shift, int stride)
115 N >>= shift; local
176 yr = -S_MUL(re,t[i<<shift]) - S_MUL(im,t[(N4-i)<<shift]);
177 yi = -S_MUL(im,t[i<<shift]) + S_MUL(re,t[(N4-i)<<shift]);
185 opus_fft(l->kfft[shift], (kiss_fft_cpx *)f, (kiss_fft_cpx *)f2);
198 yr = S_MUL(fp[1],t[(N4-i)<<shift]) + S_MUL(fp[0],t[i<<shift]);
199 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
211 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
220 N >>= shift; local
[all...]
/external/chromium_org/v8/src/base/
H A Dbits.h107 inline uint32_t RotateRight32(uint32_t value, uint32_t shift) { argument
108 if (shift == 0) return value;
109 return (value >> shift) | (value << (32 - shift));
113 inline uint64_t RotateRight64(uint64_t value, uint64_t shift) { argument
114 if (shift == 0) return value;
115 return (value >> shift) | (value << (64 - shift));
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/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1050043.js28 function unsignedShiftRight(val, shift) {
29 return val >>> shift;
H A Dregress-1708.js51 // located in a concurrently swept page with intact marking bits. Now shift
55 array.shift();
H A Dregress-builtinbust-1.js12 assertThrows(function() { a.shift(); }, TypeError);
H A Dregress-crbug-412319.js10 for (var __v_6 = -2; __v_6 < 19; __v_6++) __v_7.shift();
/external/compiler-rt/lib/builtins/
H A Dfloatsidf.c46 const int shift = significandBits - exponent; local
47 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
/external/libhevc/common/arm/
H A Dihevc_platform_macros.h114 #define SHR_NEG(val,shift) ((shift>0)?(val>>shift):(val<<(-shift)))
115 #define SHL_NEG(val,shift) ((shift<0)?(val>>(-shift)):(val<<shift))
/external/libopus/celt/
H A Dmdct.h62 const opus_val16 *window, int overlap, int shift, int stride);
68 const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride);
H A Dmdct.c106 const opus_val16 *window, int overlap, int shift, int stride)
115 N >>= shift; local
176 yr = -S_MUL(re,t[i<<shift]) - S_MUL(im,t[(N4-i)<<shift]);
177 yi = -S_MUL(im,t[i<<shift]) + S_MUL(re,t[(N4-i)<<shift]);
185 opus_fft(l->kfft[shift], (kiss_fft_cpx *)f, (kiss_fft_cpx *)f2);
198 yr = S_MUL(fp[1],t[(N4-i)<<shift]) + S_MUL(fp[0],t[i<<shift]);
199 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
211 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
220 N >>= shift; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dvg_context.h196 const VGfloat shift)
198 coords[0] += shift;
199 coords[2] -= shift;
211 const VGfloat shift)
213 coords[1] += shift;
214 coords[3] -= shift;
225 VGfloat shift[4])
236 shift[0] = 0.f;
237 shift[1] = 0.f;
243 shift[
194 vg_shift_rectx(VGfloat coords[4], const VGfloat *bounds, const VGfloat shift) argument
209 vg_shift_recty(VGfloat coords[4], const VGfloat *bounds, const VGfloat shift) argument
223 vg_bound_rect(VGfloat coords[4], const VGfloat bounds[4], VGfloat shift[4]) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dvg_context.h196 const VGfloat shift)
198 coords[0] += shift;
199 coords[2] -= shift;
211 const VGfloat shift)
213 coords[1] += shift;
214 coords[3] -= shift;
225 VGfloat shift[4])
236 shift[0] = 0.f;
237 shift[1] = 0.f;
243 shift[
194 vg_shift_rectx(VGfloat coords[4], const VGfloat *bounds, const VGfloat shift) argument
209 vg_shift_recty(VGfloat coords[4], const VGfloat *bounds, const VGfloat shift) argument
223 vg_bound_rect(VGfloat coords[4], const VGfloat bounds[4], VGfloat shift[4]) argument
[all...]
/external/freetype/src/base/
H A Dftbbox.c266 FT_Int shift; local
279 shift = 27 - FT_MSB( FT_ABS( p2 ) | FT_ABS( p3 ) );
281 if ( shift > 0 )
284 if ( shift > 2 )
285 shift = 2;
287 p1 <<= shift; local
288 p2 <<= shift; local
289 p3 <<= shift; local
290 p4 <<= shift; local
291 nmin = *min << shift;
311 nmin >>= shift; local
312 nmax >>= shift; local
[all...]
/external/libhevc/common/
H A Dihevc_itrans_recon_8x8.c84 * @param[in] shift
85 * Output shift
112 WORD32 shift; local
135 shift = IT_SHIFT_STAGE_1;
136 add = 1 << (shift - 1);
167 CLIP_S16(((e[k] + o[k] + add) >> shift));
169 CLIP_S16(((e[3 - k] - o[3 - k] + add) >> shift));
180 shift = IT_SHIFT_STAGE_2;
181 add = 1 << (shift - 1);
206 CLIP_S16(((e[k] + o[k] + add) >> shift));
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Ddboolhuff.h86 register unsigned int shift = vp8_norm[range]; local
87 range <<= shift; local
88 value <<= shift; local
89 count -= 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/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
H A Dui_controls_win.cc22 bool shift,
27 return internal::SendKeyPressImpl(window, key, control, shift, alt,
34 bool shift,
40 return internal::SendKeyPressImpl(window, key, control, shift, alt, task);
19 SendKeyPress(gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command) argument
31 SendKeyPressNotifyWhenDone(gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, const base::Closure& task) argument
/external/chromium_org/v8/test/mjsunit/compiler/
H A Ddivision-by-constant.js85 for (var shift = 6; shift < 31; shift++) {
86 PushSymmetric(values, 1 << shift);

Completed in 694 milliseconds

1234567891011>>