Home | History | Annotate | Download | only in mips64

Lines Matching refs:byte_shift

4580       uint8_t byte_shift = kInt32AlignmentMask - al_offset;
4581 uint32_t mask = (1 << byte_shift * 8) - 1;
4584 val <<= byte_shift * 8;
4607 uint8_t byte_shift = kInt32AlignmentMask - al_offset;
4608 uint32_t mask = al_offset ? (~0 << (byte_shift + 1) * 8) : 0;
4619 uint8_t byte_shift = kInt64AlignmentMask - al_offset;
4620 uint64_t mask = (1UL << byte_shift * 8) - 1;
4623 alu_out <<= byte_shift * 8;
4631 uint8_t byte_shift = kInt64AlignmentMask - al_offset;
4632 uint64_t mask = al_offset ? (~0UL << (byte_shift + 1) * 8) : 0UL;
4648 uint8_t byte_shift = kInt32AlignmentMask - al_offset;
4649 uint32_t mask = byte_shift ? (~0 << (al_offset + 1) * 8) : 0;
4652 mem_value |= static_cast<uint32_t>(rt) >> byte_shift * 8;
4673 uint8_t byte_shift = kInt64AlignmentMask - al_offset;
4674 uint64_t mask = byte_shift ? (~0UL << (al_offset + 1) * 8) : 0;
4677 mem_value |= rt >> byte_shift * 8;