Lines Matching refs:OpCmode
528 static inline unsigned createNEONModImm(unsigned OpCmode, unsigned Val) {
529 return (OpCmode << 8) | Val;
542 unsigned OpCmode = getNEONModImmOpCmode(ModImm);
546 if (OpCmode == 0xe) {
550 } else if ((OpCmode & 0xc) == 0x8) {
552 unsigned ByteNum = (OpCmode & 0x6) >> 1;
555 } else if ((OpCmode & 0x8) == 0) {
557 unsigned ByteNum = (OpCmode & 0x6) >> 1;
560 } else if ((OpCmode & 0xe) == 0xc) {
562 unsigned ByteNum = 1 + (OpCmode & 0x1);
565 } else if (OpCmode == 0x1e) {