Searched refs:shift_op (Results 1 – 6 of 6) sorted by relevance
/external/iptables/extensions/ |
D | libxt_CONNMARK.c | 419 const char *shift_op = xt_connmark_shift_ops[info->shift_dir]; in connmark_tg_print_v2() local 462 printf(" %s %u", shift_op, info->shift_bits); in connmark_tg_print_v2() 526 const char *shift_op = xt_connmark_shift_ops[info->shift_dir]; in connmark_tg_save_v2() local 547 printf(" --%s %u", shift_op, info->shift_bits); in connmark_tg_save_v2() 598 const char *shift_op = xt_connmark_shift_ops[info->shift_dir]; in connmark_tg_xlate_v2() local 637 xt_xlate_add(xl, " %s %u", shift_op, info->shift_bits); in connmark_tg_xlate_v2()
|
/external/v8/src/codegen/arm/ |
D | assembler-arm.h | 100 explicit Operand(Register rm, ShiftOp shift_op, int shift_imm); 114 explicit Operand(Register rm, ShiftOp shift_op, Register rs); 168 ShiftOp shift_op() const { return shift_op_; } in shift_op() function 205 explicit MemOperand(Register rn, Register rm, ShiftOp shift_op, int shift_imm,
|
D | assembler-arm.cc | 353 Operand::Operand(Register rm, ShiftOp shift_op, int shift_imm) { in Operand() argument 358 shift_op_ = shift_op; in Operand() 361 if ((shift_op == ROR) && (shift_imm == 0)) { in Operand() 364 shift_op = LSL; in Operand() 365 } else if (shift_op == RRX) { in Operand() 373 Operand::Operand(Register rm, ShiftOp shift_op, Register rs) { in Operand() argument 374 DCHECK(shift_op != RRX); in Operand() 377 shift_op_ = shift_op; in Operand() 410 MemOperand::MemOperand(Register rn, Register rm, ShiftOp shift_op, in MemOperand() argument 414 shift_op_(shift_op), in MemOperand() [all …]
|
/external/v8/src/execution/arm64/ |
D | simulator-arm64.cc | 2423 Shift shift_op = NO_SHIFT; in DataProcessing2Source() local 2455 shift_op = LSL; in DataProcessing2Source() 2459 shift_op = LSR; in DataProcessing2Source() 2463 shift_op = ASR; in DataProcessing2Source() 2467 shift_op = ROR; in DataProcessing2Source() 2473 if (shift_op != NO_SHIFT) { in DataProcessing2Source() 2482 result = ShiftOperand(reg<T>(instr->Rn()), shift_op, shift); in DataProcessing2Source()
|
/external/vixl/src/aarch64/ |
D | simulator-aarch64.cc | 2653 Shift shift_op = NO_SHIFT; in VisitDataProcessing2Source() local 2708 shift_op = LSL; in VisitDataProcessing2Source() 2712 shift_op = LSR; in VisitDataProcessing2Source() 2716 shift_op = ASR; in VisitDataProcessing2Source() 2720 shift_op = ROR; in VisitDataProcessing2Source() 2784 if (shift_op != NO_SHIFT) { in VisitDataProcessing2Source() 2791 shift_op, in VisitDataProcessing2Source()
|
/external/v8/src/compiler/backend/s390/ |
D | instruction-selector-s390.cc | 1259 template <class Matcher, ArchOpcode shift_op> 1276 selector->Emit(shift_op, dst, g.UseRegister(left), g.UseImmediate(power), in TryMatchShiftFromMul() 1279 selector->Emit(shift_op, dst, g.UseRegister(left), g.UseImmediate(power)); in TryMatchShiftFromMul()
|