Home | History | Annotate | Download | only in mips

Lines Matching defs:shift

1510     static const int shift = Field::kShift;
1511 static const int mask = Field::kMask >> shift << kSmiTagSize;
1514 if (shift < kSmiTagSize) {
1515 sll(dst, src, kSmiTagSize - shift);
1517 } else if (shift > kSmiTagSize) {
1518 srl(dst, src, shift - kSmiTagSize);