Lines Matching refs:UNSIGNED

43 #define UNSIGNED(x, df) ((x) & DF_MAX_UINT(df))  macro
77 x = UNSIGNED(arg, df); in msa_nlzc_df()
95 return msa_nlzc_df(df, UNSIGNED((~arg), df)); in msa_nloc_df()
218 x = UNSIGNED(arg, df); in msa_pcnt_df()
314 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_binsl_df()
315 uint64_t u_dest = UNSIGNED(dest, df); in msa_binsl_df()
321 return UNSIGNED(UNSIGNED(u_dest << sh_d, df) >> sh_d, df) | in msa_binsl_df()
322 UNSIGNED(UNSIGNED(u_arg1 >> sh_a, df) << sh_a, df); in msa_binsl_df()
395 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_binsr_df()
396 uint64_t u_dest = UNSIGNED(dest, df); in msa_binsr_df()
402 return UNSIGNED(UNSIGNED(u_dest >> sh_d, df) << sh_d, df) | in msa_binsr_df()
403 UNSIGNED(UNSIGNED(u_arg1 << sh_a, df) >> sh_a, df); in msa_binsr_df()
479 pwd->d[0] = UNSIGNED( \ in helper_msa_bmnz_v()
481 pwd->d[1] = UNSIGNED( \ in helper_msa_bmnz_v()
491 pwd->d[0] = UNSIGNED( \ in helper_msa_bmz_v()
493 pwd->d[1] = UNSIGNED( \ in helper_msa_bmz_v()
503 pwd->d[0] = UNSIGNED( \ in helper_msa_bsel_v()
505 pwd->d[1] = UNSIGNED( \ in helper_msa_bsel_v()
533 return UNSIGNED(arg1 & (~(1LL << b_arg2)), df); in msa_bclr_df()
601 return UNSIGNED(arg1 ^ (1LL << b_arg2), df); in msa_bneg_df()
670 return UNSIGNED(arg1 | (1LL << b_arg2), df); in msa_bset_df()
1047 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_adds_u_df()
1048 uint64_t u_arg2 = UNSIGNED(arg2, df); in msa_adds_u_df()
1396 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_ave_u_df()
1397 uint64_t u_arg2 = UNSIGNED(arg2, df); in msa_ave_u_df()
1542 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_aver_u_df()
1543 uint64_t u_arg2 = UNSIGNED(arg2, df); in msa_aver_u_df()
1803 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_cle_u_df()
1804 uint64_t u_arg2 = UNSIGNED(arg2, df); in msa_cle_u_df()
1967 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_clt_u_df()
1968 uint64_t u_arg2 = UNSIGNED(arg2, df); in msa_clt_u_df()
2133 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_div_u_df()
2134 uint64_t u_arg2 = UNSIGNED(arg2, df); in msa_div_u_df()
2746 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_max_u_df()
2747 uint64_t u_arg2 = UNSIGNED(arg2, df); in msa_max_u_df()
2966 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_min_u_df()
2967 uint64_t u_arg2 = UNSIGNED(arg2, df); in msa_min_u_df()
3130 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_mod_u_df()
3131 uint64_t u_arg2 = UNSIGNED(arg2, df); in msa_mod_u_df()
3558 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_asub_u_df()
3559 uint64_t u_arg2 = UNSIGNED(arg2, df); in msa_asub_u_df()
3806 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_subs_u_df()
3807 uint64_t u_arg2 = UNSIGNED(arg2, df); in msa_subs_u_df()
3880 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_subsus_u_df()
3964 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_subsuu_s_df()
3965 uint64_t u_arg2 = UNSIGNED(arg2, df); in msa_subsuu_s_df()
5122 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_srl_df()
5196 uint64_t u_arg1 = UNSIGNED(arg1, df); in msa_srlr_df()
5291 UNSIGNED(((dest & (~arg2)) | (arg1 & arg2)), df)
5296 UNSIGNED((dest & arg2) | (arg1 & (~arg2)), df)
5301 UNSIGNED((arg1 & (~dest)) | (arg2 & dest), df)
5430 uint64_t u_arg = UNSIGNED(arg, df); in msa_sat_u_df()