Home | History | Annotate | Download | only in soft-fp

Lines Matching refs:low_zeros

101       USItype low_zeros = (n / 64) * (64 / BIL_TYPE_SIZE);
104 if (low_zeros)
105 __builtin_memset (r + BITINT_END (rn - low_zeros, 0), '\0',
106 low_zeros * sizeof (UBILtype));
107 __builtin_memcpy (r + BITINT_END (rn - low_zeros - cnt, low_zeros),
109 if (rn > low_zeros + cnt)
110 __builtin_memset (r + BITINT_END (0, low_zeros + cnt), '\0',
111 (rn - low_zeros - cnt) * sizeof (UBILtype));
112 return low_zeros;
118 USItype low_zeros = ((n / 64) + (m * 4)) * (64 / BIL_TYPE_SIZE);
123 if (low_zeros)
124 __builtin_memset (r + BITINT_END (rn - low_zeros, 0), '\0',
125 low_zeros * sizeof (UBILtype));
126 __mulbitint3 (r + BITINT_END (0, low_zeros),
127 rprec - low_zeros * BIL_TYPE_SIZE,
129 return low_zeros;