Lines Matching defs:SImm
459 int32_t SImm = static_cast<int32_t>(Imm);
460 if (isInlinableIntLiteral(SImm)) {
461 O << SImm;
526 int16_t SImm = static_cast<int16_t>(Imm);
527 if (isInlinableIntLiteral(SImm)) {
528 O << SImm;
541 int16_t SImm = static_cast<int16_t>(Imm);
542 if (isInlinableIntLiteral(SImm)) {
543 O << SImm;
558 int32_t SImm = static_cast<int32_t>(Imm);
559 if (isInlinableIntLiteral(SImm)) {
560 O << SImm;
625 int32_t SImm = static_cast<int32_t>(Imm);
626 if (isInlinableIntLiteral(SImm)) {
627 O << SImm;
640 int64_t SImm = static_cast<int64_t>(Imm);
641 if (SImm >= -16 && SImm <= 64) {
642 O << SImm;