Searched refs:shift (Results 226 - 250 of 1142) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/
H A Dprocess_info_snapshot_mac.cc90 int shift = 0; local
93 shift = 0;
97 shift = 1;
100 shift = 2;
103 shift = 3;
106 shift = 4;
109 shift = 5;
112 shift = 6;
119 for (int i = 0; i < shift; i++)
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/armv5te/
H A Dboolhuff_armv5te.asm81 sub r6, r6, #24 ; shift
85 adds r3, r3, r6 ; count += shift
86 lsl r5, r4, r6 ; range <<= shift
89 sub r6, r6, r3 ; offset = shift - count
118 mov r6, r3 ; shift = count
129 lsl r2, r2, r6 ; lowvalue <<= shift
157 sub r6, r6, #24 ; shift
161 adds r3, r3, r6 ; count += shift
162 lsl r5, r4, r6 ; range <<= shift
165 sub r6, r6, r3 ; offset = shift
[all...]
/external/libvpx/libvpx/vp8/encoder/arm/armv5te/
H A Dboolhuff_armv5te.asm81 sub r6, r6, #24 ; shift
85 adds r3, r3, r6 ; count += shift
86 lsl r5, r4, r6 ; range <<= shift
89 sub r6, r6, r3 ; offset = shift - count
118 mov r6, r3 ; shift = count
129 lsl r2, r2, r6 ; lowvalue <<= shift
157 sub r6, r6, #24 ; shift
161 adds r3, r3, r6 ; count += shift
162 lsl r5, r4, r6 ; range <<= shift
165 sub r6, r6, r3 ; offset = shift
[all...]
/external/aac/libFDK/include/
H A DFDK_trigFcts.h148 int shift = (31-scale-LD-1); local
153 s = ((LONG)residual) >> shift;
155 residual &= ( (1<<shift) - 1 );
/external/chromium_org/third_party/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...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/math/
H A Ddatatypes.c326 v128_right_shift(v128_t *x, int shift) { argument
327 const int base_index = shift >> 5;
328 const int bit_index = shift & 31;
332 if (shift > 127) {
364 v128_left_shift(v128_t *x, int shift) { argument
366 const int base_index = shift >> 5;
367 const int bit_index = shift & 31;
369 if (shift > 127) {
481 bitvector_left_shift(bitvector_t *x, int shift) { argument
483 const int base_index = shift >>
[all...]
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dcomplex_fft_mips.c151 int scale = 0, shift = 0; local
171 "addiu %[shift], $zero, 14 \n\t"
222 "addu %[shift], %[shift], %[tmp1] \n\t"
269 "srav %[tmp4], %[tmp4], %[shift] \n\t"
270 "srav %[tmp1], %[tmp1], %[shift] \n\t"
271 "srav %[tmp6], %[tmp6], %[shift] \n\t"
272 "srav %[tmp5], %[tmp5], %[shift] \n\t"
292 "sra %[tmp4], %[tmp4], %[shift] \n\t"
293 "sra %[tmp1], %[tmp1], %[shift] \
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/utility/
H A Dquality_scaler.cc64 for (int shift = downscale_shift_;
65 shift > 0 && res.width > 1 && res.height > 1;
66 --shift) {
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-keyboard.js109 // Flag values for ctrl, alt and shift as defined by EventFlags
277 shift: null,
323 if (detail.relegateToShift && this.shift) {
324 this.keyset = this.shift.textKeyset;
498 // Notify shift key.
499 if (this.shift)
500 this.shift.onNonControlKeyDown();
525 * Handles key-out event that is sent by kb-shift-key.
527 * kb-shift-key.
528 * @param {Object} detail The detail of pressed kb-shift
[all...]
/external/compiler-rt/lib/builtins/arm/
H A Dumodsi3.S42 * The code before JMP computes the correct shift I, so that
47 * block(shift) implements the test-and-update-quotient core.
48 * It assumes (r0 << shift) can be computed without overflow and
49 * that (r0 << shift) < 2 * r1. The quotient is stored in r3.
93 #define block(shift) \
94 cmp r0, r1, lsl IMM shift; \
95 subhs r0, r0, r1, lsl IMM shift
/external/compiler-rt/lib/builtins/
H A Dfp_trunc_impl.inc109 // to get the shift amount for the denormalization.
111 const int shift = srcExpBias - dstExpBias - aExp + 1;
115 // Right shift by the denormalization amount with sticky.
116 if (shift > srcSigBits) {
119 const bool sticky = significand << (srcBits - shift);
120 src_rep_t denormalizedSignificand = significand >> shift | sticky;
/external/guava/guava/src/com/google/common/math/
H A DDoubleUtils.java155 int shift = exponent - SIGNIFICAND_BITS - 1;
156 long twiceSignifFloor = absX.shiftRight(shift).longValue();
166 && ((signifFloor & 1) != 0 || absX.getLowestSetBit() < shift);
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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...]
/external/valgrind/main/none/tests/ppc32/
H A Dtest_dfp2.c112 static void _test_dscri (int shift) argument
114 switch(shift) {
131 printf(" dscri, unsupported shift case %d\n", shift);
135 static void _test_dscli (int shift) argument
137 switch(shift) {
154 printf(" dscli, unsupported shift case %d\n", shift);
179 static void _test_dscriq (int shift) argument
181 switch(shift) {
199 _test_dscliq(int shift) argument
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Dtest_dfp2.c112 static void _test_dscri (int shift) argument
114 switch(shift) {
131 printf(" dscri, unsupported shift case %d\n", shift);
135 static void _test_dscli (int shift) argument
137 switch(shift) {
154 printf(" dscli, unsupported shift case %d\n", shift);
179 static void _test_dscriq (int shift) argument
181 switch(shift) {
199 _test_dscliq(int shift) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_swizzle.c229 int shift = shifts[channel][i]; local
232 shift = -shift;
235 if(shift > 0)
236 tmp = LLVMBuildLShr(builder, a, lp_build_const_int_vec(bld->gallivm, type4, shift*type.width), "");
237 if(shift < 0)
238 tmp = LLVMBuildShl(builder, a, lp_build_const_int_vec(bld->gallivm, type4, -shift*type.width), "");
360 int shift; local
385 * Mask and shift the channels, trying to group as many channels in the
386 * same shift a
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkColorMatrixFilter.cpp30 const int shift = state.fShift; local
32 result[0] = rowmul4(&array[0], r, g, b, a) >> shift;
33 result[1] = rowmul4(&array[5], r, g, b, a) >> shift;
34 result[2] = rowmul4(&array[10], r, g, b, a) >> shift;
35 result[3] = rowmul4(&array[15], r, g, b, a) >> shift;
53 const int shift = state.fShift; local
55 result[0] = rowmul3(&array[0], r, g, b) >> shift;
56 result[1] = rowmul3(&array[5], r, g, b) >> shift;
57 result[2] = rowmul3(&array[10], r, g, b) >> shift;
76 const int shift local
101 const int shift = state.fShift; local
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_swizzle.c229 int shift = shifts[channel][i]; local
232 shift = -shift;
235 if(shift > 0)
236 tmp = LLVMBuildLShr(builder, a, lp_build_const_int_vec(bld->gallivm, type4, shift*type.width), "");
237 if(shift < 0)
238 tmp = LLVMBuildShl(builder, a, lp_build_const_int_vec(bld->gallivm, type4, -shift*type.width), "");
360 int shift; local
385 * Mask and shift the channels, trying to group as many channels in the
386 * same shift a
[all...]
/external/skia/src/effects/
H A DSkColorMatrixFilter.cpp30 const int shift = state.fShift; local
32 result[0] = rowmul4(&array[0], r, g, b, a) >> shift;
33 result[1] = rowmul4(&array[5], r, g, b, a) >> shift;
34 result[2] = rowmul4(&array[10], r, g, b, a) >> shift;
35 result[3] = rowmul4(&array[15], r, g, b, a) >> shift;
53 const int shift = state.fShift; local
55 result[0] = rowmul3(&array[0], r, g, b) >> shift;
56 result[1] = rowmul3(&array[5], r, g, b) >> shift;
57 result[2] = rowmul3(&array[10], r, g, b) >> shift;
76 const int shift local
101 const int shift = state.fShift; local
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/source/spreadsortlib/
H A Dspreadsort.hpp86 //Gets a non-negative right bit shift to operate as a logarithmic divisor
204 inline void inner_swap_loop(RandomAccessIter * bins, const RandomAccessIter & nextbinstart, unsigned ii, right_shift &shift
209 for(RandomAccessIter * target_bin = (bins + (shift(*current, log_divisor) - div_min)); target_bin != local_bin;
210 target_bin = bins + (shift(*current, log_divisor) - div_min)) {
213 RandomAccessIter * b_bin = bins + (shift(*b, log_divisor) - div_min);
232 inline void swap_loop(RandomAccessIter * bins, RandomAccessIter & nextbinstart, unsigned ii, right_shift &shift
236 inner_swap_loop<RandomAccessIter, div_type, data_type, right_shift>(bins, nextbinstart, ii, shift, log_divisor, div_min);
243 , std::vector<size_t> &bin_sizes, right_shift shift, compare comp)
249 unsigned log_divisor = get_log_divisor(last - first, rough_log_2_size((size_t)(shift(*max, 0)) - (shift(*mi
242 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift, compare comp) argument
290 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift) argument
347 spread_sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift, compare comp) argument
356 spread_sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift) argument
377 integer_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift, compare comp) argument
387 integer_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift) argument
419 find_extremes(RandomAccessIter current, RandomAccessIter last, div_type & max, div_type & min, right_shift shift) argument
583 negative_float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift) argument
632 negative_float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift, compare comp) argument
766 float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift) argument
850 float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift, compare comp) argument
943 float_Sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift) argument
952 float_Sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift, compare comp) argument
982 float_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift) argument
991 float_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift, compare comp) argument
[all...]
/external/webrtc/src/system_wrappers/source/spreadsortlib/
H A Dspreadsort.hpp86 //Gets a non-negative right bit shift to operate as a logarithmic divisor
204 inline void inner_swap_loop(RandomAccessIter * bins, const RandomAccessIter & nextbinstart, unsigned ii, right_shift &shift
209 for(RandomAccessIter * target_bin = (bins + (shift(*current, log_divisor) - div_min)); target_bin != local_bin;
210 target_bin = bins + (shift(*current, log_divisor) - div_min)) {
213 RandomAccessIter * b_bin = bins + (shift(*b, log_divisor) - div_min);
232 inline void swap_loop(RandomAccessIter * bins, RandomAccessIter & nextbinstart, unsigned ii, right_shift &shift
236 inner_swap_loop<RandomAccessIter, div_type, data_type, right_shift>(bins, nextbinstart, ii, shift, log_divisor, div_min);
243 , std::vector<size_t> &bin_sizes, right_shift shift, compare comp)
249 unsigned log_divisor = get_log_divisor(last - first, rough_log_2_size((size_t)(shift(*max, 0)) - (shift(*mi
242 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift, compare comp) argument
290 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift) argument
347 spread_sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift, compare comp) argument
356 spread_sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift) argument
377 integer_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift, compare comp) argument
387 integer_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift) argument
419 find_extremes(RandomAccessIter current, RandomAccessIter last, div_type & max, div_type & min, right_shift shift) argument
583 negative_float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift) argument
632 negative_float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift, compare comp) argument
766 float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift) argument
850 float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift, compare comp) argument
943 float_Sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift) argument
952 float_Sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift, compare comp) argument
982 float_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift) argument
991 float_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift, compare comp) argument
[all...]
/external/opencv/cxcore/src/
H A Dcxconvert.cpp953 CvSize size, double scale, double shift,
968 double val = shift;
990 if( fabs( scale ) <= 1. && fabs(shift) < DBL_EPSILON )
1008 CV_CAST_8U, scale, shift );
1013 fabs( shift ) <= (INT_MAX*0.5)/(1 << ICV_FIX_SHIFT))
1016 int ishift = cvRound(shift*(1 << ICV_FIX_SHIFT));
1032 CV_CAST_8U, scale, shift );
1037 CV_CAST_8U, scale, shift );
1041 CV_CAST_8U, scale, shift );
1045 CV_CAST_8U, scale, shift );
951 icvCvtScaleAbsTo_8u_C1R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, double scale, double shift, int param ) argument
[all...]
/external/chromium-trace/trace-viewer/src/base/
H A Draf.js59 runTask(currentRAFDispatchList.shift());
69 stackLines.shift();
/external/chromium_org/ash/test/
H A Dui_controls_factory_ash.cc64 bool shift,
68 window, key, control, shift, alt, command, base::Closure());
75 bool shift,
83 window, key, control, shift, alt, command, closure);
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Ddisplay_overscan.css39 #display-overscan-operation-shift {
49 html[dir=rtl] #display-overscan-operation-shift {

Completed in 896 milliseconds

1234567891011>>