Lines Matching refs:i
95 for (unsigned int i = 0; i < array_length (repeating_pattern); ++i) in test_main() local
96 repeating_pattern[i] = 0x80 | i; in test_main()
117 for (size_t i = 0; i < unshared_size; ++i) in test_main() local
118 start[i] = expected_value (i); in test_main()
119 for (size_t i = allocation_size - unshared_size; i < allocation_size; in test_main() local
120 ++i) in test_main()
121 start[i] = expected_value (i); in test_main()
125 for (size_t i = 0; i < unshared_size; ++i) in test_main() local
126 TEST_COMPARE (start[i], expected_value (i)); in test_main()
127 for (size_t i = allocation_size - unshared_size; i < allocation_size; in test_main() local
128 ++i) in test_main()
129 TEST_COMPARE (start[i], expected_value (i)); in test_main()
159 for (size_t i = 0; i < unshared_size - 1; ++i) in test_main() local
160 check_one_index (i, start[i], expected_value (i + 1)); in test_main()
164 for (size_t i = allocation_size - unshared_size; i < allocation_size - 1; in test_main() local
165 ++i) in test_main()
166 check_one_index (i, start[i], expected_value (i + 1)); in test_main()