Lines Matching refs:j
113 size_t i, j, n, align1, align2, len, size, mode; in do_random_tests() local
132 j = align1; in do_random_tests()
134 align2 = j; in do_random_tests()
151 j = align1; in do_random_tests()
152 if (align2 > j) in do_random_tests()
153 j = align2; in do_random_tests()
157 if (size + j > 512) in do_random_tests()
158 size = 512 - j - (random() & 31); in do_random_tests()
161 size = 512 - j; in do_random_tests()
162 if ((mode & 8) && len + j >= 512) in do_random_tests()
163 len = 512 - j - (random () & 7); in do_random_tests()
165 j = len + align1 + 64; in do_random_tests()
166 if (j > 512) in do_random_tests()
167 j = 512; in do_random_tests()
168 for (i = 0; i < j; i++) in do_random_tests()
196 for (j = 0; j < align2 + 64; ++j) in do_random_tests()
198 if (p2[j - 64] != '\1') in do_random_tests()
206 j = align2 + len + 1; in do_random_tests()
207 if (size + align2 < j) in do_random_tests()
208 j = size + align2; in do_random_tests()
209 for (; j < 512; ++j) in do_random_tests()
211 if (p2[j] != '\1') in do_random_tests()
219 j = len + 1; in do_random_tests()
220 if (size < j) in do_random_tests()
221 j = size; in do_random_tests()
222 if (memcmp (p1 + align1, p2 + align2, j)) in do_random_tests()