Home | History | Annotate | Download | only in arm

Lines Matching refs:Vd

434       ((static_cast<int32_t>(sd) & 0x1e) << (12 - 1)) |   // Move Vd from bits 1-4 to bits 12-15.
445 ((static_cast<int32_t>(dd) & 0x0f) << (12 - 0)) | // Move Vd from bits 0-3 to bits 12-15.
3022 uint32_t Vd;
3024 // Encoded as D:Vd.
3026 Vd = reg & 15U /* 0b1111 */;
3028 // Encoded as Vd:D.
3030 Vd = (reg >> 1) & 15U /* 0b1111 */;
3039 Vd << 12;