Searched refs:szPath (Results 1 - 1 of 1) sorted by relevance

/xsrc/external/mit/xkbcomp/dist/
H A Dxkbpath.c40 #define PATH_CHUNK 8 /* initial szPath */
43 static int szPath; /* number of entries allocated for includePath */ variable in typeref:typename:int
160 szPath = PATH_CHUNK;
161 includePath = (char **) calloc(szPath, sizeof(char *));
181 if (szPath > 0)
214 if (nPathEntries >= szPath)
217 szPath += PATH_CHUNK;
218 new = (char **) realloc(includePath, szPath * sizeof(char *));

Completed in 2 milliseconds