Searched refs:is_2 (Results 1 – 2 of 2) sorted by relevance
/openbmc/qemu/target/arm/tcg/ |
H A D | vec_helper.c | 2022 static uint64_t load4_f16(uint64_t *ptr, int is_q, int is_2) in load4_f16() argument 2030 return ptr[is_q & is_2] >> ((is_2 & ~is_q) << 5); in load4_f16() 2043 int is_2 = extract32(desc, SIMD_DATA_SHIFT + 1, 1); in do_fmlal() local 2048 n_4 = load4_f16(vn, is_q, is_2); in do_fmlal() 2049 m_4 = load4_f16(vm, is_q, is_2); in do_fmlal() 2106 int is_2 = extract32(desc, SIMD_DATA_SHIFT + 1, 1); in do_fmlal_idx() local 2113 n_4 = load4_f16(vn, is_q, is_2); in do_fmlal_idx()
|
H A D | translate-a64.c | 5594 static bool do_fmlal(DisasContext *s, arg_qrrr_e *a, bool is_s, bool is_2) in do_fmlal() argument 5597 int data = (is_2 << 1) | is_s; in do_fmlal() 6393 static bool do_fmlal_idx(DisasContext *s, arg_qrrx_e *a, bool is_s, bool is_2) in TRANS() 6396 int data = (a->idx << 2) | (is_2 << 1) | is_s; in TRANS()
|