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

Completed in 867 milliseconds