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

  /src/external/bsd/unbound/dist/edns-subnet/
edns-subnet.c 50 size_t fracpart = n % 8; /* bits */ local
54 if (fracpart && (intpart+1 > dstlen || intpart+1 > srclen))
57 if (fracpart) {
58 dst[intpart] = src[intpart] & ~(0xFF >> fracpart);
  /src/external/bsd/jemalloc.old/dist/test/include/test/
bench.h 25 uint64_t fracpart = nsecs_per_iter1000 % 1000; local
27 fracpart);
  /src/external/bsd/jemalloc/dist/test/include/test/
bench.h 25 uint64_t fracpart = nsecs_per_iter1000 % 1000; local
27 intpart, fracpart);
  /src/external/bsd/jemalloc.old/dist/test/unit/
fxp.c 8 double fracpart = (double)(a & ((1U << 16) - 1)) / (1U << 16); local
9 return intpart + fracpart;
  /src/external/bsd/jemalloc/dist/test/unit/
fxp.c 8 double fracpart = (double)(a & ((1U << 16) - 1)) / (1U << 16); local
9 return intpart + fracpart;
  /src/external/bsd/pcc/dist/pcc/mip/
compat.c 700 long intpart, fracpart; local
731 fracpart = lroundl((ldpow10 (max)) * (ufvalue - intpart));
733 if (fracpart >= ldpow10 (max)) {
735 fracpart -= ldpow10 (max);
753 [fracpart % 10];
754 fracpart = (fracpart / 10);
755 } while(fracpart && (fplace < 20));
  /src/crypto/external/apache2/openssl/dist/crypto/bio/
bio_print.c 580 unsigned long fracpart; local
683 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
685 if (fracpart >= max10) {
687 fracpart -= max10;
701 if (style == G_FORMAT && fplace == 0 && (fracpart % 10) == 0) {
704 fracpart = fracpart / 10;
709 fconvert[fplace++] = "0123456789"[fracpart % 10];
710 fracpart = (fracpart / 10)
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/bio/
bio_print.c 580 unsigned long fracpart; local
680 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
682 if (fracpart >= max10) {
684 fracpart -= max10;
698 if (style == G_FORMAT && fplace == 0 && (fracpart % 10) == 0) {
701 fracpart = fracpart / 10;
706 fconvert[fplace++] = "0123456789"[fracpart % 10];
707 fracpart = (fracpart / 10)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/bio/
b_print.c 580 unsigned long fracpart; local
678 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
680 if (fracpart >= max10) {
682 fracpart -= max10;
696 if (style == G_FORMAT && fplace == 0 && (fracpart % 10) == 0) {
699 fracpart = fracpart / 10;
704 fconvert[fplace++] = "0123456789"[fracpart % 10];
705 fracpart = (fracpart / 10)
    [all...]
  /src/external/bsd/ntp/dist/libntp/
snprintf.c 1099 UINTMAX_T fracpart; local
1219 if ((fracpart = myround(mask * (ufvalue - intpart))) >= mask) {
1227 fracpart = 0;
1292 if (fracpart != 0) /* convert() would return 1 if fracpart == 0. */
1293 fpos = convert(fracpart, fconvert, sizeof(fconvert), 10, 0);

Completed in 27 milliseconds