Searched defs:shift_size (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator.c310 int shift_size = 0; local
316 shift_size = self->history_size - abs_shift;
317 assert(shift_size > 0);
324 padding_index = shift_size;
330 sizeof(*self->binary_far_history) * shift_size);
335 sizeof(*self->far_bit_counts) * shift_size);
/external/chromium_org/v8/src/arm/
H A Dlithium-codegen-arm.cc3183 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3195 : Operand(key, LSL, shift_size);
3208 element_size_shift, shift_size, base_offset);
3280 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3282 __ add(scratch, scratch, Operand(key, LSL, shift_size));
3350 int shift_size,
3357 if (shift_size >= 0) {
3358 return MemOperand(base, key, LSL, shift_size);
3360 ASSERT_EQ(-1, shift_size);
3365 if (shift_size >
3345 PrepareKeyedOperand(Register key, Register base, bool key_is_constant, int constant_key, int element_size, int shift_size, int base_offset) argument
4187 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
4279 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
[all...]
/external/chromium_org/v8/src/ia32/
H A Dlithium-codegen-ia32.cc3185 int shift_size = element_shift_size; local
3192 ((constant_value) << shift_size)
3196 if (key_representation.IsSmi() && (shift_size >= 1)) {
3197 shift_size -= kSmiTagSize;
3199 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size);
/external/chromium_org/v8/src/mips/
H A Dlithium-codegen-mips.cc3126 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3139 __ sll(scratch0(), key, shift_size); local
3153 element_size_shift, shift_size, base_offset);
3225 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
3227 __ sll(at, key, shift_size);
3296 int shift_size,
3303 if (shift_size >= 0) {
3304 __ sll(scratch0(), key, shift_size); local
3308 ASSERT_EQ(-1, shift_size);
3315 if (shift_size >
3291 PrepareKeyedOperand(Register key, Register base, bool key_is_constant, int constant_key, int element_size, int shift_size, int base_offset) argument
3316 __ sll(scratch0(), key, shift_size); local
4182 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
4277 int shift_size = (instr->hydrogen()->key()->representation().IsSmi()) local
[all...]
/external/chromium_org/v8/src/x64/
H A Dlithium-codegen-x64.cc3264 int shift_size = ElementsKindToShiftSize(elements_kind); local
3271 (constant_value << shift_size) + offset);
3274 if (key_representation.IsSmi() && (shift_size >= 1)) {
3276 shift_size -= kSmiTagSize;
3278 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size);
/external/chromium_org/v8/src/x87/
H A Dlithium-codegen-x87.cc3315 int shift_size = element_shift_size; local
3322 ((constant_value) << shift_size)
3326 if (key_representation.IsSmi() && (shift_size >= 1)) {
3327 shift_size -= kSmiTagSize;
3329 ScaleFactor scale_factor = static_cast<ScaleFactor>(shift_size);

Completed in 239 milliseconds