Home | History | Annotate | Download | only in pre_gen

Lines Matching refs:maxlen

8437  * Stores upto maxlen-1 chars and always a NULL byte 
8439 int mp_toradix_n(mp_int * a, char *str, int radix, int maxlen)
8446 /* check range of the maxlen, radix */
8447 if (maxlen < 2 || radix < 2 || radix > 64) {
8472 --maxlen;
8477 if (--maxlen < 1) {