HomeSort by relevance Sort by last modified time
    Searched refs:intpart (Results 1 - 2 of 2) sorted by null

  /external/openssh/openbsd-compat/
bsd-snprintf.c 624 LLONG intpart; local
626 intpart = (LLONG)value;
627 value = value - intpart;
628 if (value >= 0.5) intpart++;
630 return intpart;
686 double intpart; local
730 my_modf(temp, &intpart);
732 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
735 intpart++;
741 temp = intpart*0.1
    [all...]
  /external/openssl/crypto/bio/
b_print.c 592 long intpart; local
593 intpart = (long) value;
594 value = value - intpart;
596 intpart++;
597 return intpart;
620 long intpart; local
634 intpart = (long)ufvalue;
644 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
647 intpart++;
655 : "0123456789abcdef")[intpart % 10]
    [all...]

Completed in 53 milliseconds