Lines Matching refs:byte_shift
4314 uint8_t byte_shift = kPointerAlignmentMask - al_offset;
4315 uint32_t mask = (1 << byte_shift * 8) - 1;
4318 alu_out <<= byte_shift * 8;
4335 uint8_t byte_shift = kPointerAlignmentMask - al_offset;
4336 uint32_t mask = al_offset ? (~0 << (byte_shift + 1) * 8) : 0;
4352 uint8_t byte_shift = kPointerAlignmentMask - al_offset;
4353 uint32_t mask = byte_shift ? (~0 << (al_offset + 1) * 8) : 0;
4357 mem_value |= static_cast<uint32_t>(rt) >> byte_shift * 8;