Searched defs:ofp (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c2447 /* {{{ mp_print(mp, ofp) */
2451 mp_print(mp, ofp)
2454 stream 'ofp'. Output is generated using the internal radix.
2457 void mp_print(mp_int *mp, FILE *ofp) argument
2461 if(mp == NULL || ofp == NULL)
2464 fputc((SIGN(mp) == NEG) ? '-' : '+', ofp);
2467 fprintf(ofp, DIGIT_FMT, DIGIT(mp, ix));

Completed in 45 milliseconds