Lines Matching defs:rank
188 * The following code for computing Marsaglia's rank is based on the
198 isc_uint32_t rank = 0;
217 return (rank);
220 rank++;
237 return (rank);
514 * This is the binary matrix rank test taken from the NIST SP 800-22 RNG
555 isc_uint32_t rank;
570 rank = matrix_binaryrank(bits, matrix_m, matrix_q);
572 if (rank == matrix_m)
574 else if (rank == (matrix_m - 1))
634 atf_tc_set_md_var(tc, "descr", "Binary matrix rank test for the RNG");
638 * This is the binary matrix rank test taken from the NIST SP 800-22 RNG