Lines Matching defs:positive
632 bool positive = (instr & B23) == B23;
634 return positive ? offset : -offset;
639 bool positive = (instr & B23) == B23;
642 return positive ? offset : -offset;
647 bool positive = offset >= 0;
648 if (!positive) offset = -offset;
651 instr = (instr & ~B23) | (positive ? B23 : 0);
659 bool positive = offset >= 0;
660 if (!positive) offset = -offset;
663 instr = (instr & ~B23) | (positive ? B23 : 0);
674 bool positive = offset >= 0;
675 if (!positive) offset = -offset;
678 instr = (instr & ~B23) | (positive ? B23 : 0);