Lines Matching defs:delta
351 int delta) {
356 DCHECK_GT(delta, 0);
359 if (Bytecodes::ScaleForUnsignedOperand(delta) == OperandScale::kSingle) {
363 bytecodes()->at(operand_location) = static_cast<uint8_t>(delta);
369 OperandSize::kByte, Smi::FromInt(delta));
379 int delta) {
384 DCHECK_GT(delta, 0);
387 if (Bytecodes::ScaleForUnsignedOperand(delta) <= OperandScale::kDouble) {
392 reinterpret_cast<Address>(operand_bytes), static_cast<uint16_t>(delta));
398 OperandSize::kShort, Smi::FromInt(delta));
411 int delta) {
417 static_cast<uint32_t>(delta));
431 int delta = static_cast<int>(jump_target - jump_location);
437 delta -= 1;
447 PatchJumpWith8BitOperand(jump_location, delta);
450 PatchJumpWith16BitOperand(jump_location + prefix_offset, delta);
453 PatchJumpWith32BitOperand(jump_location + prefix_offset, delta);
471 uint32_t delta =
473 OperandScale operand_scale = Bytecodes::ScaleForUnsignedOperand(delta);
476 delta += 1;
478 node->update_operand0(delta);