Home
last modified time | relevance | path

Searched refs:shift_size (Results 1 – 14 of 14) 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()
68 where(E::shift_size); in test1()
88 static_assert((E::shift_size == 156), ""); in test2()
104 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.cc2968 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) in DoLoadKeyedExternalArray() local
2979 if (shift_size < 0) { in DoLoadKeyedExternalArray()
2980 if (shift_size == -32) { in DoLoadKeyedExternalArray()
2983 __ dsra(scratch0(), key, -shift_size); in DoLoadKeyedExternalArray()
2986 __ dsll(scratch0(), key, shift_size); in DoLoadKeyedExternalArray()
3000 element_size_shift, shift_size, base_offset); in DoLoadKeyedExternalArray()
3064 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) in DoLoadKeyedFixedDoubleArray() local
3067 if (shift_size > 0) { in DoLoadKeyedFixedDoubleArray()
3068 __ dsll(at, key, shift_size); in DoLoadKeyedFixedDoubleArray()
3069 } else if (shift_size == -32) { in DoLoadKeyedFixedDoubleArray()
[all …]
Dlithium-codegen-mips64.h129 int shift_size,
/external/opencv3/modules/cudalegacy/include/opencv2/
Dcudalegacy.hpp195 … Size block_size, Size shift_size, Size max_range, bool use_previous,
/external/v8/src/crankshaft/arm/
Dlithium-codegen-arm.cc2899 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) in DoLoadKeyedExternalArray() local
2907 : Operand(key, LSL, shift_size); in DoLoadKeyedExternalArray()
2919 element_size_shift, shift_size, base_offset); in DoLoadKeyedExternalArray()
2983 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) in DoLoadKeyedFixedDoubleArray() local
2985 __ add(scratch, scratch, Operand(key, LSL, shift_size)); in DoLoadKeyedFixedDoubleArray()
3070 int shift_size, in PrepareKeyedOperand() argument
3077 if (shift_size >= 0) { in PrepareKeyedOperand()
3078 return MemOperand(base, key, LSL, shift_size); in PrepareKeyedOperand()
3080 DCHECK_EQ(-1, shift_size); in PrepareKeyedOperand()
3085 if (shift_size >= 0) { in PrepareKeyedOperand()
[all …]
Dlithium-codegen-arm.h128 int shift_size,
/external/v8/src/crankshaft/mips/
Dlithium-codegen-mips.cc2828 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) in DoLoadKeyedExternalArray() local
2837 __ sll(scratch0(), key, shift_size); in DoLoadKeyedExternalArray()
2850 element_size_shift, shift_size, base_offset); in DoLoadKeyedExternalArray()
2914 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) in DoLoadKeyedFixedDoubleArray() local
2916 __ sll(at, key, shift_size); in DoLoadKeyedFixedDoubleArray()
3003 int shift_size, in PrepareKeyedOperand() argument
3010 if (shift_size >= 0) { in PrepareKeyedOperand()
3011 __ sll(scratch0(), key, shift_size); in PrepareKeyedOperand()
3015 DCHECK_EQ(-1, shift_size); in PrepareKeyedOperand()
3022 if (shift_size >= 0) { in PrepareKeyedOperand()
[all …]
Dlithium-codegen-mips.h127 int shift_size,
/external/opencv/cv/include/
Dcv.h469 CvSize block_size, CvSize shift_size, in LOAD_CHDL()
/external/v8/src/crankshaft/ia32/
Dlithium-codegen-ia32.cc2966 int shift_size = element_shift_size; in BuildFastArrayOperand() local
2973 ((constant_value) << shift_size) in BuildFastArrayOperand()
2977 if (key_representation.IsSmi() && (shift_size >= 1)) { in BuildFastArrayOperand()
2978 shift_size -= kSmiTagSize; in BuildFastArrayOperand()
2980 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size); in BuildFastArrayOperand()
/external/v8/src/crankshaft/x87/
Dlithium-codegen-x87.cc3238 int shift_size = element_shift_size; in BuildFastArrayOperand() local
3245 ((constant_value) << shift_size) in BuildFastArrayOperand()
3249 if (key_representation.IsSmi() && (shift_size >= 1)) { in BuildFastArrayOperand()
3250 shift_size -= kSmiTagSize; in BuildFastArrayOperand()
3252 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size); in BuildFastArrayOperand()
/external/v8/src/crankshaft/x64/
Dlithium-codegen-x64.cc3036 int shift_size = ElementsKindToShiftSize(elements_kind); in BuildFastArrayOperand() local
3043 (constant_value << shift_size) + offset); in BuildFastArrayOperand()
3048 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;