Lines Matching refs:n
365 str_to_mpn (const STRING_TYPE *str, int digcnt, mp_limb_t *n, mp_size_t *nsize, in str_to_mpn() argument
386 n[0] = low; in str_to_mpn()
392 cy = __mpn_mul_1 (n, n, *nsize, MAX_FAC_PER_LIMB); in str_to_mpn()
393 cy += __mpn_add_1 (n, n, *nsize, low); in str_to_mpn()
397 n[*nsize] = cy; in str_to_mpn()
442 n[0] = low; in str_to_mpn()
448 cy = __mpn_mul_1 (n, n, *nsize, start); in str_to_mpn()
449 cy += __mpn_add_1 (n, n, *nsize, low); in str_to_mpn()
453 n[(*nsize)++] = cy; in str_to_mpn()
1491 mp_limb_t d, n, quot; in ____STRTOF_INTERNAL() local
1494 n = num[0]; in ____STRTOF_INTERNAL()
1496 assert (numsize == 1 && n < d); in ____STRTOF_INTERNAL()
1500 udiv_qrnnd (quot, n, n, 0, d); in ____STRTOF_INTERNAL()
1544 more_bits || n != 0); in ____STRTOF_INTERNAL()