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;
54 static_assert((E::shift_size == 397), "");
75 where(E::shift_size);
95 static_assert((E::shift_size == 156), "");
116 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.cc2786 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
2797 if (shift_size < 0) {
2798 if (shift_size == -32) {
2801 __ dsra(scratch0(), key, -shift_size);
2804 __ dsll(scratch0(), key, shift_size); local
2818 element_size_shift, shift_size, base_offset);
2885 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
2888 if (shift_size > 0) {
2889 __ dsll(at, key, shift_size);
2890 } else if (shift_size
2995 PrepareKeyedOperand(Register key, Register base, bool key_is_constant, int constant_key, int element_size, int shift_size, int base_offset) argument
3008 __ dsll(scratch0(), key, shift_size); local
3023 __ dsll(scratch0(), key, shift_size); local
3977 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
4072 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.cc2726 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
2734 : Operand(key, LSL, shift_size);
2746 element_size_shift, shift_size, base_offset);
2813 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
2815 __ add(scratch, scratch, Operand(key, LSL, shift_size));
2900 int shift_size,
2907 if (shift_size >= 0) {
2908 return MemOperand(base, key, LSL, shift_size);
2910 DCHECK_EQ(-1, shift_size);
2915 if (shift_size >
2895 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.cc2648 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
2657 __ sll(scratch0(), key, shift_size); local
2670 element_size_shift, shift_size, base_offset);
2737 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
2739 __ Lsa(scratch, scratch, key, shift_size);
2824 int shift_size,
2831 if (shift_size >= 0) {
2832 __ sll(scratch0(), key, shift_size); local
2836 DCHECK_EQ(-1, shift_size);
2843 if (shift_size >
2819 PrepareKeyedOperand(Register key, Register base, bool key_is_constant, int constant_key, int element_size, int shift_size, int base_offset) argument
2844 __ sll(scratch0(), key, shift_size); local
3765 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3851 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.cc2658 int shift_size = element_shift_size; local
2665 ((constant_value) << shift_size)
2669 if (key_representation.IsSmi() && (shift_size >= 1)) {
2670 shift_size -= kSmiTagSize;
2672 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size);
/external/v8/src/crankshaft/x87/
H A Dlithium-codegen-x87.cc2933 int shift_size = element_shift_size; local
2940 ((constant_value) << shift_size)
2944 if (key_representation.IsSmi() && (shift_size >= 1)) {
2945 shift_size -= kSmiTagSize;
2947 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 307 milliseconds