Lines Matching defs:scratch
23 // If we haven't opened a scratch scope yet, for the first one add a
141 Register scratch = temps.AcquireScratch();
142 __ And(scratch, value, Operand(mask));
143 __ Branch(target, AsMasmCondition(cc), scratch, Operand(zero_reg));
175 Register scratch = temps.AcquireScratch();
176 __ li(scratch, Operand(smi));
177 __ SmiUntag(scratch);
178 __ Branch(target, AsMasmCondition(cc), value, Operand(scratch));
190 Register scratch = temps.AcquireScratch();
191 __ Ld_d(scratch, operand);
192 __ Branch(target, AsMasmCondition(cc), value, Operand(scratch));
198 Register scratch = temps.AcquireScratch();
199 __ Ld_d(scratch, operand);
200 __ Branch(target, AsMasmCondition(cc), scratch, Operand(value));
366 Register scratch = temps.AcquireScratch();
367 __ li(scratch, Operand(value));
368 __ St_d(scratch, FieldMemOperand(target, offset));