Searched refs:tmpc (Results 1 – 6 of 6) sorted by relevance
/dflybsd-src/contrib/wpa_supplicant/src/tls/ |
H A D | libtommath.c | 250 register mp_digit u, *tmpa, *tmpb, *tmpc; in s_mp_add() local 262 tmpc = c->dp; in s_mp_add() 268 *tmpc = *tmpa++ + *tmpb++ + u; in s_mp_add() 271 u = *tmpc >> ((mp_digit)DIGIT_BIT); in s_mp_add() 274 *tmpc++ &= MP_MASK; in s_mp_add() 283 *tmpc = x->dp[i] + u; in s_mp_add() 286 u = *tmpc >> ((mp_digit)DIGIT_BIT); in s_mp_add() 289 *tmpc++ &= MP_MASK; in s_mp_add() 294 *tmpc++ = u; in s_mp_add() 298 *tmpc++ = 0; in s_mp_add() [all …]
|
/dflybsd-src/contrib/mpfr/src/ |
H A D | add1sp.c | 34 mpfr_t tmpa, tmpb, tmpc; in mpfr_add1sp() local 39 mpfr_init2 (tmpc, MPFR_PREC (c)); in mpfr_add1sp() 44 inexc = mpfr_set (tmpc, c, MPFR_RNDN); in mpfr_add1sp() 47 inexact2 = mpfr_add1 (tmpa, tmpb, tmpc, rnd_mode); in mpfr_add1sp() 60 mpfr_fprint_binary (stderr, tmpc); in mpfr_add1sp() 69 mpfr_clears (tmpa, tmpb, tmpc, (mpfr_ptr) 0); in mpfr_add1sp()
|
H A D | sub1sp.c | 34 mpfr_t tmpa, tmpb, tmpc; in mpfr_sub1sp() local 39 mpfr_init2 (tmpc, MPFR_PREC (c)); in mpfr_sub1sp() 44 inexc = mpfr_set (tmpc, c, MPFR_RNDN); in mpfr_sub1sp() 47 inexact2 = mpfr_sub1 (tmpa, tmpb, tmpc, rnd_mode); in mpfr_sub1sp() 58 mpfr_fprint_binary (stderr, tmpc); in mpfr_sub1sp() 67 mpfr_clears (tmpa, tmpb, tmpc, (mpfr_ptr) 0); in mpfr_sub1sp()
|
/dflybsd-src/contrib/wpa_supplicant/src/p2p/ |
H A D | p2p_utils.c | 325 const struct p2p_channels *tmpc = channels ? in p2p_get_pref_freq() local 328 if (tmpc == NULL) in p2p_get_pref_freq() 334 if (p2p_channels_includes_freq(tmpc, freq)) in p2p_get_pref_freq()
|
/dflybsd-src/contrib/gcc-8.0/gcc/ |
H A D | tree-ssa-structalias.c | 4010 auto_vec<ce_s> tmpc; in handle_rhs_call() local 4012 get_constraint_for_address_of (gimple_call_lhs (stmt), &tmpc); in handle_rhs_call() 4016 FOR_EACH_VEC_ELT (tmpc, i, c) in handle_rhs_call() 4045 struct constraint_expr tmpc; in handle_lhs_call() local 4046 tmpc.var = escaped_id; in handle_lhs_call() 4047 tmpc.offset = 0; in handle_lhs_call() 4048 tmpc.type = SCALAR; in handle_lhs_call() 4049 lhsc.safe_push (tmpc); in handle_lhs_call() 4067 struct constraint_expr tmpc; in handle_lhs_call() local 4080 tmpc.var = vi->id; in handle_lhs_call() [all …]
|
/dflybsd-src/contrib/gcc-4.7/gcc/ |
H A D | tree-ssa-structalias.c | 3816 VEC(ce_s, heap) *tmpc = NULL; in handle_rhs_call() 3818 get_constraint_for_address_of (gimple_call_lhs (stmt), &tmpc); in handle_rhs_call() 3822 FOR_EACH_VEC_ELT (ce_s, tmpc, i, c) in handle_rhs_call() 3824 VEC_free(ce_s, heap, tmpc); in handle_rhs_call() 3852 struct constraint_expr tmpc; in handle_lhs_call() local 3853 tmpc.var = escaped_id; in handle_lhs_call() 3854 tmpc.offset = 0; in handle_lhs_call() 3855 tmpc.type = SCALAR; in handle_lhs_call() 3856 VEC_safe_push (ce_s, heap, lhsc, &tmpc); in handle_lhs_call() 3875 struct constraint_expr tmpc; in handle_lhs_call() local [all …]
|