Lines Matching refs:i
35 int i; in fixed_test() local
37 for (i = 0; i < N; ++i) in fixed_test()
41 ptrs[i] = (char *) calloc (1, size); in fixed_test()
43 if (ptrs[i] == NULL) in fixed_test()
48 if (ptrs[i][j] != '\0') in fixed_test()
51 size, i, j); in fixed_test()
52 ptrs[i][j] = '\xff'; in fixed_test()
56 while (i-- > 0) in fixed_test()
57 free (ptrs[i]); in fixed_test()
65 int i; in random_test() local
67 for (i = 0; i < N; ++i) in random_test()
74 ptrs[i] = (char *) calloc (n, elem); in random_test()
76 if (ptrs[i] == NULL) in random_test()
81 if (ptrs[i][j] != '\0') in random_test()
84 size, i, j); in random_test()
85 ptrs[i][j] = '\xff'; in random_test()
89 while (i-- > 0) in random_test()
90 free (ptrs[i]); in random_test()