Home
last modified time | relevance | path

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

/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/
Dvalues.pass.cpp52 static_assert((E::shift_size == 397), ""); in test1()
73 where(E::shift_size); in test1()
93 static_assert((E::shift_size == 156), ""); in test2()
114 where(E::shift_size); in test2()
/external/webrtc/webrtc/modules/audio_processing/utility/
Ddelay_estimator.c331 int shift_size = 0; in WebRtc_SoftResetBinaryDelayEstimatorFarend() local
337 shift_size = self->history_size - abs_shift; in WebRtc_SoftResetBinaryDelayEstimatorFarend()
338 assert(shift_size > 0); in WebRtc_SoftResetBinaryDelayEstimatorFarend()
345 padding_index = shift_size; in WebRtc_SoftResetBinaryDelayEstimatorFarend()
351 sizeof(*self->binary_far_history) * shift_size); in WebRtc_SoftResetBinaryDelayEstimatorFarend()
356 sizeof(*self->far_bit_counts) * shift_size); in WebRtc_SoftResetBinaryDelayEstimatorFarend()
/external/v8/src/crankshaft/mips64/
Dlithium-codegen-mips64.cc2786 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) in DoLoadKeyedExternalArray() local
2797 if (shift_size < 0) { in DoLoadKeyedExternalArray()
2798 if (shift_size == -32) { in DoLoadKeyedExternalArray()
2801 __ dsra(scratch0(), key, -shift_size); in DoLoadKeyedExternalArray()
2804 __ dsll(scratch0(), key, shift_size); in DoLoadKeyedExternalArray()
2818 element_size_shift, shift_size, base_offset); in DoLoadKeyedExternalArray()
2885 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) in DoLoadKeyedFixedDoubleArray() local
2888 if (shift_size > 0) { in DoLoadKeyedFixedDoubleArray()
2889 __ dsll(at, key, shift_size); in DoLoadKeyedFixedDoubleArray()
2890 } else if (shift_size == -32) { in DoLoadKeyedFixedDoubleArray()
[all …]
Dlithium-codegen-mips64.h127 int shift_size,
/external/v8/src/crankshaft/mips/
Dlithium-codegen-mips.cc2648 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) in DoLoadKeyedExternalArray() local
2657 __ sll(scratch0(), key, shift_size); in DoLoadKeyedExternalArray()
2670 element_size_shift, shift_size, base_offset); in DoLoadKeyedExternalArray()
2737 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) in DoLoadKeyedFixedDoubleArray() local
2739 __ Lsa(scratch, scratch, key, shift_size); in DoLoadKeyedFixedDoubleArray()
2824 int shift_size, in PrepareKeyedOperand() argument
2831 if (shift_size >= 0) { in PrepareKeyedOperand()
2832 __ sll(scratch0(), key, shift_size); in PrepareKeyedOperand()
2836 DCHECK_EQ(-1, shift_size); in PrepareKeyedOperand()
2843 if (shift_size >= 0) { in PrepareKeyedOperand()
[all …]
Dlithium-codegen-mips.h125 int shift_size,
/external/v8/src/crankshaft/arm/
Dlithium-codegen-arm.cc2726 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) in DoLoadKeyedExternalArray() local
2734 : Operand(key, LSL, shift_size); in DoLoadKeyedExternalArray()
2746 element_size_shift, shift_size, base_offset); in DoLoadKeyedExternalArray()
2813 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) in DoLoadKeyedFixedDoubleArray() local
2815 __ add(scratch, scratch, Operand(key, LSL, shift_size)); in DoLoadKeyedFixedDoubleArray()
2900 int shift_size, in PrepareKeyedOperand() argument
2907 if (shift_size >= 0) { in PrepareKeyedOperand()
2908 return MemOperand(base, key, LSL, shift_size); in PrepareKeyedOperand()
2910 DCHECK_EQ(-1, shift_size); in PrepareKeyedOperand()
2915 if (shift_size >= 0) { in PrepareKeyedOperand()
[all …]
Dlithium-codegen-arm.h126 int shift_size,
/external/v8/src/crankshaft/ia32/
Dlithium-codegen-ia32.cc2658 int shift_size = element_shift_size; in BuildFastArrayOperand() local
2665 ((constant_value) << shift_size) in BuildFastArrayOperand()
2669 if (key_representation.IsSmi() && (shift_size >= 1)) { in BuildFastArrayOperand()
2670 shift_size -= kSmiTagSize; in BuildFastArrayOperand()
2672 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size); in BuildFastArrayOperand()
/external/v8/src/crankshaft/x87/
Dlithium-codegen-x87.cc2933 int shift_size = element_shift_size; in BuildFastArrayOperand() local
2940 ((constant_value) << shift_size) in BuildFastArrayOperand()
2944 if (key_representation.IsSmi() && (shift_size >= 1)) { in BuildFastArrayOperand()
2945 shift_size -= kSmiTagSize; in BuildFastArrayOperand()
2947 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size); in BuildFastArrayOperand()
/external/v8/src/crankshaft/x64/
Dlithium-codegen-x64.cc2856 int shift_size = ElementsKindToShiftSize(elements_kind); in BuildFastArrayOperand() local
2863 (constant_value << shift_size) + offset); in BuildFastArrayOperand()
2868 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size); in BuildFastArrayOperand()
/external/libcxx/include/
Drandom84 static constexpr size_t shift_size = m;
2090 static _LIBCPP_CONSTEXPR const size_t shift_size = __m;
2235 …ter_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>::shift_size;