Home
last modified time | relevance | path

Searched refs:encoded_imm (Results 1 – 2 of 2) sorted by relevance

/external/vixl/src/aarch64/
Dassembler-aarch64.cc2543 uint32_t encoded_imm = FP64ToImm8(imm); in fmov() local
2544 Emit(q | op | ImmNEONabcdefgh(encoded_imm) | NEONCmode(0xf) | Rd(vd)); in fmov()
2559 uint32_t encoded_imm = FP32ToImm8(imm); in fmov() local
2560 Emit(q | op | ImmNEONabcdefgh(encoded_imm) | NEONCmode(0xf) | Rd(vd)); in fmov()
2575 uint32_t encoded_imm = FP16ToImm8(imm); in fmov() local
2576 Emit(q | NEONModifiedImmediate_FMOV | ImmNEONabcdefgh(encoded_imm) | in fmov()
/external/vixl/src/aarch32/
Ddisasm-aarch32.cc9850 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()
[all …]