Lines Matching refs:i
79 int i, ret; in dso_process() local
81 for (i = 0; i < DSO_EXEC_THREADS; i++) in dso_process()
84 ret = pthread_create (&thread[i], NULL, dso_invoke, (void *) fun_vec); in dso_process()
94 for (i = 0; i < DSO_EXEC_THREADS; i++) in dso_process()
96 ret = pthread_join (thread[i], NULL); in dso_process()
120 int i,j; in do_test() local
129 for (i = 0; i < DSO_OPEN_THREADS; i++) in do_test()
131 ret = pthread_create (&thread[i], NULL, dso_process, in do_test()
132 (void *) (uintptr_t) i); in do_test()
143 for (i = 0; i < DSO_OPEN_THREADS; i++) in do_test()
145 ret = pthread_join (thread[i], NULL); in do_test()