HomeSort by: relevance | last modified time | path
    Searched defs:pow10_limbs (Results 1 - 7 of 7) sorted by relevancy

  /src/external/gpl3/gcc/dist/libgcc/soft-fp/
bitintpow10.h 50 printf ("static UBILtype pow10_limbs[] = {\n");
153 static UBILtype pow10_limbs[] = { variable
fixddbitint.c 45 USItype pow10_limbs, res_limbs, min_limbs, mant_limbs, low_zeros; local
137 pow10_limbs = (exp_bits + BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
138 pow10v = __builtin_alloca (pow10_limbs * sizeof (UBILtype));
fixsdbitint.c 45 USItype pow10_limbs, res_limbs, min_limbs, mant_limbs, low_zeros; local
138 pow10_limbs = (exp_bits + BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
139 pow10v = __builtin_alloca (pow10_limbs * sizeof (UBILtype));
fixtdbitint.c 45 USItype pow10_limbs, res_limbs, min_limbs, mant_limbs, low_zeros; local
164 pow10_limbs = (exp_bits + BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
165 pow10v = __builtin_alloca (pow10_limbs * sizeof (UBILtype));
floatbitintdd.c 80 USItype pow10_limbs, q_limbs, q2_limbs, j; local
94 pow10_limbs = (exp_bits + BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
102 buf = __builtin_alloca ((q_limbs + pow10_limbs * 2 + q2_limbs + 2)
108 buf + q_limbs + pow10_limbs,
109 pow10_limbs * BIL_TYPE_SIZE,
115 inexact = buf[q_limbs + pow10_limbs];
116 for (j = 1; j < pow10_limbs; ++j)
117 inexact |= buf[q_limbs + pow10_limbs + j];
175 __bid_pow10bitint (buf + q_limbs + pow10_limbs * 2,
177 __divmodbitint4 (buf + q_limbs + pow10_limbs * 2 + 1
    [all...]
floatbitintsd.c 80 USItype pow10_limbs, q_limbs, q2_limbs, j; local
94 pow10_limbs = (exp_bits + BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
101 buf = __builtin_alloca ((q_limbs + pow10_limbs * 2 + q2_limbs + 2)
107 buf + q_limbs + pow10_limbs,
108 pow10_limbs * BIL_TYPE_SIZE,
114 inexact = buf[q_limbs + pow10_limbs];
115 for (j = 1; j < pow10_limbs; ++j)
116 inexact |= buf[q_limbs + pow10_limbs + j];
160 __bid_pow10bitint (buf + q_limbs + pow10_limbs * 2,
162 __divmodbitint4 (buf + q_limbs + pow10_limbs * 2 + 1
    [all...]
floatbitinttd.c 81 USItype pow10_limbs, q_limbs, q2_limbs, j, k; local
94 pow10_limbs = (exp_bits + BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
101 buf = __builtin_alloca ((q_limbs + pow10_limbs * 2 + q2_limbs + 2)
107 buf + q_limbs + pow10_limbs,
108 pow10_limbs * BIL_TYPE_SIZE,
114 inexact = buf[q_limbs + pow10_limbs];
115 for (j = 1; j < pow10_limbs; ++j)
116 inexact |= buf[q_limbs + pow10_limbs + j];
134 __bid_pow10bitint (buf + q_limbs + pow10_limbs * 2 + 1,
138 if (buf[k] > buf[q_limbs + pow10_limbs * 2 + 1 + k]
    [all...]

Completed in 15 milliseconds