Home | History | Annotate | Download | only in fips181

Lines Matching refs:pwlen

1273     int     pwlen;
1296 pwlen = gen_word (word, hyphenated_word, base::RandInt(minlen, maxlen),
1298 return (pwlen);
1312 gen_word (char *word, char *hyphenated_word, USHORT pwlen, unsigned int pass_mode)
1353 if ( (word_units = (USHORT *) calloc (sizeof (USHORT), pwlen+1))==NULL ||
1354 (syllable_units = (USHORT *) calloc (sizeof (USHORT), pwlen+1))==NULL ||
1355 (new_syllable = (char *) calloc (sizeof (USHORT), pwlen+1)) ==NULL ||
1362 while (word_length < pwlen)
1367 (void) gen_syllable (new_syllable, pwlen - word_length, syllable_units, &syllable_size);
1388 ((word_length + syllable_length == pwlen) && have_final_split (syllable_units, syllable_size)))
1423 (void)memset ( (void *)new_syllable, 0, (size_t)(pwlen * sizeof(USHORT)+1));
1458 (void)memset ( (void *)new_syllable, 0, (size_t)(pwlen * sizeof(USHORT)+1));
1467 * reinitialize the pwlen and word_size variables, clear
1666 gen_syllable (char *syllable, USHORT pwlen, USHORT *units_in_syllable,
1703 length_left = (short int) pwlen;
2095 illegal_placement (USHORT *units, USHORT pwlen)
2104 for (unit_count = 0; !failure && (unit_count <= pwlen);
2118 (unit_count == pwlen)) && (vowel_count != 0)) ||
2156 (unit_count == 0) && (pwlen != 0)))