Searched refs:shift_size (Results 1 - 11 of 11) 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/v8/src/mips64/
H A Dlithium-codegen-mips64.cc3118 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3133 if (shift_size < 0) {
3134 if (shift_size == -32) {
3137 __ dsra(scratch0(), key, -shift_size);
3140 __ dsll(scratch0(), key, shift_size); local
3155 element_size_shift, shift_size, base_offset);
3226 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3229 if (shift_size > 0) {
3230 __ dsll(at, key, shift_size);
3231 } else if (shift_size
3317 PrepareKeyedOperand(Register key, Register base, bool key_is_constant, int constant_key, int element_size, int shift_size, int base_offset) argument
3330 __ dsll(scratch0(), key, shift_size); local
3345 __ dsll(scratch0(), key, shift_size); local
4258 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
4362 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
[all...]
H A Dlithium-codegen-mips64.h135 int shift_size,
/external/v8/src/arm/
H A Dlithium-codegen-arm.cc3229 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3241 : Operand(key, LSL, shift_size);
3254 element_size_shift, shift_size, base_offset);
3326 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3328 __ add(scratch, scratch, Operand(key, LSL, shift_size));
3396 int shift_size,
3403 if (shift_size >= 0) {
3404 return MemOperand(base, key, LSL, shift_size);
3406 DCHECK_EQ(-1, shift_size);
3411 if (shift_size >
3391 PrepareKeyedOperand(Register key, Register base, bool key_is_constant, int constant_key, int element_size, int shift_size, int base_offset) argument
4280 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
4372 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
[all...]
H A Dlithium-codegen-arm.h135 int shift_size,
/external/v8/src/mips/
H A Dlithium-codegen-mips.cc3134 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3147 __ sll(scratch0(), key, shift_size); local
3161 element_size_shift, shift_size, base_offset);
3232 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3234 __ sll(at, key, shift_size);
3303 int shift_size,
3310 if (shift_size >= 0) {
3311 __ sll(scratch0(), key, shift_size); local
3315 DCHECK_EQ(-1, shift_size);
3322 if (shift_size >
3298 PrepareKeyedOperand(Register key, Register base, bool key_is_constant, int constant_key, int element_size, int shift_size, int base_offset) argument
3323 __ sll(scratch0(), key, shift_size); local
4227 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
4322 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
[all...]
H A Dlithium-codegen-mips.h134 int shift_size,
/external/opencv/cv/include/
H A Dcv.h469 CvSize block_size, CvSize shift_size,
/external/v8/src/ia32/
H A Dlithium-codegen-ia32.cc3182 int shift_size = element_shift_size; local
3189 ((constant_value) << shift_size)
3193 if (key_representation.IsSmi() && (shift_size >= 1)) {
3194 shift_size -= kSmiTagSize;
3196 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size);
/external/v8/src/x64/
H A Dlithium-codegen-x64.cc3266 int shift_size = ElementsKindToShiftSize(elements_kind); local
3273 (constant_value << shift_size) + offset);
3276 if (key_representation.IsSmi() && (shift_size >= 1)) {
3278 shift_size -= kSmiTagSize;
3280 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size);
/external/v8/src/x87/
H A Dlithium-codegen-x87.cc3469 int shift_size = element_shift_size; local
3476 ((constant_value) << shift_size)
3480 if (key_representation.IsSmi() && (shift_size >= 1)) {
3481 shift_size -= kSmiTagSize;
3483 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size);

Completed in 308 milliseconds