Lines Matching defs:idx
107 unsigned int idx = 0;
129 idx++;
130 printf("%2d: Thread %ld file(%s) open,write,read,close %u times\n", threadNo, tid, name.c_str(), idx);
139 int idx;
153 for (idx = 0; idx < threadNum; ++idx) {
154 args[idx][0] = idx;
155 args[idx][1] = writeReadTime;
156 if (pthread_create(thrArray + idx, nullptr, ThreadFuncCpp, static_cast<void*>(args[idx])) != 0) {
161 for (idx = 0; idx < threadNum; ++idx) {
162 pthread_join(thrArray[idx], nullptr);