Searched refs:encoded_imm (Results 1 – 2 of 2) sorted by relevance
2543 uint32_t encoded_imm = FP64ToImm8(imm); in fmov() local2544 Emit(q | op | ImmNEONabcdefgh(encoded_imm) | NEONCmode(0xf) | Rd(vd)); in fmov()2559 uint32_t encoded_imm = FP32ToImm8(imm); in fmov() local2560 Emit(q | op | ImmNEONabcdefgh(encoded_imm) | NEONCmode(0xf) | Rd(vd)); in fmov()2575 uint32_t encoded_imm = FP16ToImm8(imm); in fmov() local2576 Emit(q | NEONModifiedImmediate_FMOV | ImmNEONabcdefgh(encoded_imm) | in fmov()
9850 uint32_t encoded_imm = in DecodeT32() local9854 uint32_t S = encoded_imm & (1 << 23); in DecodeT32()9855 encoded_imm ^= ((S >> 1) | (S >> 2)) ^ (3 << 21); in DecodeT32()9856 int32_t imm = SignExtend<int32_t>(encoded_imm << 1, 25); in DecodeT32()9879 uint32_t encoded_imm = ((instr >> 1) & 0x3ff) | in DecodeT32() local9884 uint32_t S = encoded_imm & (1 << 22); in DecodeT32()9885 encoded_imm ^= ((S >> 1) | (S >> 2)) ^ (3 << 20); in DecodeT32()9886 int32_t imm = SignExtend<int32_t>(encoded_imm << 2, 25); in DecodeT32()9897 uint32_t encoded_imm = in DecodeT32() local9901 uint32_t S = encoded_imm & (1 << 23); in DecodeT32()[all …]