Home | History | Annotate | Download | only in codeflinger

Lines Matching refs:_signed

375 // note: _signed parameter defaults to false (un-signed)
377 int ArmToMipsAssembler::dataProcAdrModes(int op, int& source, bool _signed, int tmpReg)
383 if ((!_signed && amode.value > 0xffff)
384 || (_signed && ((int)amode.value < -32768 || (int)amode.value > 32767) )) {