Searched refs:shift_size (Results 1 - 12 of 12) sorted by relevance

/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/
H A Dvalues.pass.cpp24 // static constexpr size_t shift_size = m;
52 static_assert((E::shift_size == 397), "");
73 where(E::shift_size);
93 static_assert((E::shift_size == 156), "");
114 where(E::shift_size);
/external/webrtc/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator.c331 int shift_size = 0; local
337 shift_size = self->history_size - abs_shift;
338 assert(shift_size > 0);
345 padding_index = shift_size;
351 sizeof(*self->binary_far_history) * shift_size);
356 sizeof(*self->far_bit_counts) * shift_size);
/external/v8/src/crankshaft/mips64/
H A Dlithium-codegen-mips64.cc2791 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
2802 if (shift_size < 0) {
2803 if (shift_size == -32) {
2806 __ dsra(scratch0(), key, -shift_size);
2809 __ dsll(scratch0(), key, shift_size); local
2823 element_size_shift, shift_size, base_offset);
2890 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
2893 if (shift_size > 0) {
2894 __ dsll(at, key, shift_size);
2895 } else if (shift_size
3000 PrepareKeyedOperand(Register key, Register base, bool key_is_constant, int constant_key, int element_size, int shift_size, int base_offset) argument
3013 __ dsll(scratch0(), key, shift_size); local
3028 __ dsll(scratch0(), key, shift_size); local
3981 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
4076 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
[all...]
H A Dlithium-codegen-mips64.h127 int shift_size,
/external/v8/src/crankshaft/arm/
H A Dlithium-codegen-arm.cc2728 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
2736 : Operand(key, LSL, shift_size);
2748 element_size_shift, shift_size, base_offset);
2815 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
2817 __ add(scratch, scratch, Operand(key, LSL, shift_size));
2902 int shift_size,
2909 if (shift_size >= 0) {
2910 return MemOperand(base, key, LSL, shift_size);
2912 DCHECK_EQ(-1, shift_size);
2917 if (shift_size >
2897 PrepareKeyedOperand(Register key, Register base, bool key_is_constant, int constant_key, int element_size, int shift_size, int base_offset) argument
3807 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3890 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
[all...]
H A Dlithium-codegen-arm.h126 int shift_size,
/external/v8/src/crankshaft/mips/
H A Dlithium-codegen-mips.cc2652 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
2661 __ sll(scratch0(), key, shift_size); local
2674 element_size_shift, shift_size, base_offset);
2741 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
2743 __ Lsa(scratch, scratch, key, shift_size);
2828 int shift_size,
2835 if (shift_size >= 0) {
2836 __ sll(scratch0(), key, shift_size); local
2840 DCHECK_EQ(-1, shift_size);
2847 if (shift_size >
2823 PrepareKeyedOperand(Register key, Register base, bool key_is_constant, int constant_key, int element_size, int shift_size, int base_offset) argument
2848 __ sll(scratch0(), key, shift_size); local
3768 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3854 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
[all...]
H A Dlithium-codegen-mips.h125 int shift_size,
/external/opencv/cv/include/
H A Dcv.h469 CvSize block_size, CvSize shift_size,
/external/v8/src/crankshaft/ia32/
H A Dlithium-codegen-ia32.cc2660 int shift_size = element_shift_size; local
2667 ((constant_value) << shift_size)
2671 if (key_representation.IsSmi() && (shift_size >= 1)) {
2672 shift_size -= kSmiTagSize;
2674 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size);
/external/v8/src/crankshaft/x87/
H A Dlithium-codegen-x87.cc2935 int shift_size = element_shift_size; local
2942 ((constant_value) << shift_size)
2946 if (key_representation.IsSmi() && (shift_size >= 1)) {
2947 shift_size -= kSmiTagSize;
2949 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size);
/external/v8/src/crankshaft/x64/
H A Dlithium-codegen-x64.cc2856 int shift_size = ElementsKindToShiftSize(elements_kind); local
2863 (constant_value << shift_size) + offset);
2868 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size);

Completed in 1133 milliseconds