Lines Matching refs:j
194 size_t i, j, n, align1, align2, len, size, mode; in do_random_tests() local
216 j = align1; in do_random_tests()
218 align2 = j; in do_random_tests()
235 j = align1; in do_random_tests()
236 if (align2 > j) in do_random_tests()
237 j = align2; in do_random_tests()
241 if (size + j > 512) in do_random_tests()
242 size = 512 - j - (random () & 31); in do_random_tests()
245 size = 512 - j; in do_random_tests()
246 if ((mode & 8) && len + j >= 512) in do_random_tests()
247 len = 512 - j - (random () & 7); in do_random_tests()
249 j = len + align1 + 64; in do_random_tests()
250 if (j > 512) in do_random_tests()
251 j = 512; in do_random_tests()
252 for (i = 0; i < j; i++) in do_random_tests()
276 for (j = 0; j < align2 + 64; ++j) in do_random_tests()
278 if (p2[j - 64] != '\1') in do_random_tests()
286 j = align2 + len + 1; in do_random_tests()
287 if (size + align2 > j) in do_random_tests()
288 j = size + align2; in do_random_tests()
289 for (; j < 512; ++j) in do_random_tests()
291 if (p2[j] != '\1') in do_random_tests()
299 for (j = align2 + len + 1; j < align2 + size; ++j) in do_random_tests()
300 if (p2[j]) in do_random_tests()
307 j = len + 1; in do_random_tests()
308 if (size < j) in do_random_tests()
309 j = size; in do_random_tests()
310 if (MEMCMP (p1 + align1, p2 + align2, j)) in do_random_tests()