Lines Matching refs:encoded_imm
9850 uint32_t encoded_imm = in DecodeT32() local
9854 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() local
9884 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() local
9901 uint32_t S = encoded_imm & (1 << 23); in DecodeT32()
9902 encoded_imm ^= ((S >> 1) | (S >> 2)) ^ (3 << 21); in DecodeT32()
9903 int32_t imm = SignExtend<int32_t>(encoded_imm << 1, 25); in DecodeT32()
23627 uint32_t encoded_imm = in DecodeT32() local
23630 ImmediateVFP::Decode<float>(encoded_imm); in DecodeT32()
23973 uint32_t encoded_imm = in DecodeT32() local
23976 ImmediateVFP::Decode<double>(encoded_imm); in DecodeT32()
66200 uint32_t encoded_imm = in DecodeA32() local
66203 ImmediateVFP::Decode<float>(encoded_imm); in DecodeA32()
66648 uint32_t encoded_imm = in DecodeA32() local
66651 ImmediateVFP::Decode<double>(encoded_imm); in DecodeA32()