Home
last modified time | relevance | path

Searched refs:res64 (Results 1 – 5 of 5) sorted by relevance

/qemu/tests/tcg/hexagon/
H A Dmulti_result.c151 int64_t res64; in test_vacsh() local
155 res64 = vacsh(0x0004000300020001LL, in test_vacsh()
158 check64(res64, 0x0004000300030004LL); in test_vacsh()
162 res64 = vacsh(0x0004000300020001LL, in test_vacsh()
169 res64 = vacsh(0x00047fff00020001LL, in test_vacsh()
176 res64 = vacsh(0x0004000300020001LL, in test_vacsh()
186 int64_t res64; in test_vminub() local
189 res64 = vminub(0x0807060504030201LL, in test_vminub()
195 res64 = vminub(0x0802060405030701LL, in test_vminub()
204 int64_t res64; in test_add_carry() local
[all …]
H A Dfpstuff.c524 uint64_t res64; in check_float2int_convs() local
552 check64(res64, 0); in check_float2int_convs()
560 check64(res64, 0); in check_float2int_convs()
584 check64(res64, 0); in check_float2int_convs()
592 check64(res64, 0); in check_float2int_convs()
619 check64(res64, -1); in check_float2int_convs()
666 uint64_t res64; in check_float_consts() local
683 uint64_t res64; in dfmpyll() local
685 return res64; in dfmpyll()
692 return res64; in dfmpylh()
[all …]
H A Dmem_noshuf.c202 uint64_t res64; in main() local
229 check64(res64, 0xffffffffffffff87LL); in main()
256 check64(res64, 0xffffffff8a87ffffLL); in main()
283 check64(res64, 0xffffffff12345678LL); in main()
310 check64(res64, 0x123456789abcdef0LL); in main()
328 check64(res64, 0xffffffffffffffffLL); in main()
332 check64(res64, 0xffffffff12345678LL); in main()
336 check64(res64, 0xffffffffffffffffLL); in main()
340 check64(res64, 0x12345678ffffffffLL); in main()
372 check64(res64, 0xffffffffffffffffLL); in main()
[all …]
H A Dmisc.c410 int64_t res64; in main() local
518 res64 = creg_pair(5, 7); in main()
519 check32((int32_t)res64, 5); in main()
520 check32((int32_t)(res64 >> 32), 7); in main()
528 res64 = decbin(0xf0f1f2f3f4f5f6f7LL, 0x7f6f5f4f3f2f1f0fLL, &pred); in main()
529 check64(res64, 0x357980003700010cLL); in main()
532 res64 = decbin(0xfLL, 0x1bLL, &pred); in main()
533 check64(res64, 0x78000100LL); in main()
/qemu/target/hexagon/
H A Dgenptr.c297 TCGv_i64 res64 = tcg_temp_new_i64(); in gen_get_byte_i64() local
299 tcg_gen_sextract_i64(res64, src, N * 8, 8); in gen_get_byte_i64()
301 tcg_gen_extract_i64(res64, src, N * 8, 8); in gen_get_byte_i64()
303 tcg_gen_extrl_i64_i32(result, res64); in gen_get_byte_i64()