Lines Matching refs:imm8
2740 void orr(const VRegister& vd, const int imm8, const int left_shift = 0);
2752 void bic(const VRegister& vd, const int imm8, const int left_shift = 0);
2780 const int imm8,
3661 void add(const ZRegister& zd, const ZRegister& zn, int imm8, int shift = -1);
4004 void cpy(const ZRegister& zd, const PRegister& pg, int imm8, int shift = -1);
4057 void dup(const ZRegister& zd, int imm8, int shift = -1);
5072 void mov(const ZRegister& zd, const PRegister& pg, int imm8, int shift = -1);
5075 void mov(const ZRegister& zd, int imm8, int shift);
5108 void mul(const ZRegister& zd, const ZRegister& zn, int imm8);
5317 void smax(const ZRegister& zd, const ZRegister& zn, int imm8);
5329 void smin(const ZRegister& zd, const ZRegister& zn, int imm8);
5358 int imm8,
5501 int imm8,
5641 void sub(const ZRegister& zd, const ZRegister& zn, int imm8, int shift = -1);
5650 void subr(const ZRegister& zd, const ZRegister& zn, int imm8, int shift = -1);
5727 void umax(const ZRegister& zd, const ZRegister& zn, int imm8);
5739 void umin(const ZRegister& zd, const ZRegister& zn, int imm8);
5756 int imm8,
5833 int imm8,
7773 static Instr ImmNEONabcdefgh(int imm8) {
7774 VIXL_ASSERT(IsUint8(imm8));
7776 instr = ((imm8 >> 5) & 7) << ImmNEONabc_offset;
7777 instr |= (imm8 & 0x1f) << ImmNEONdefgh_offset;
8016 int imm8,
8196 const int imm8,
8200 const int imm8,
8285 // If *shift is -1, find values of *imm8 and *shift such that IsInt8(*imm8)
8287 void ResolveSVEImm8Shift(int* imm8, int* shift);