HomeSort by: relevance | last modified time | path
    Searched defs:nextkey (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libpthread/
pthread_tsd.c 49 static int nextkey; variable in typeref:typename:int
146 /* 1. Search from "nextkey" to the end of the list. */
147 for (i = nextkey; i < pthread_keys_max; i++)
153 * of the list back to "nextkey".
155 for (i = 0; i < nextkey; i++)
159 if (i == nextkey) {
172 nextkey = (i + 1) % pthread_keys_max;
401 nextkey = (key + 1) % pthread_keys_max;
pthread_tsd.c 49 static int nextkey; variable in typeref:typename:int
146 /* 1. Search from "nextkey" to the end of the list. */
147 for (i = nextkey; i < pthread_keys_max; i++)
153 * of the list back to "nextkey".
155 for (i = 0; i < nextkey; i++)
159 if (i == nextkey) {
172 nextkey = (i + 1) % pthread_keys_max;
401 nextkey = (key + 1) % pthread_keys_max;

Completed in 21 milliseconds