Home | History | Annotate | Download | only in libxml2

Lines Matching refs:nb_paths

129     unsigned int nb_paths = 0;
153 nb_paths = 20;
154 ret->gl_pathv = (char **) malloc(nb_paths * sizeof(char *));
167 if (ret->gl_pathc + 2 > nb_paths) {
168 char **tmp = realloc(ret->gl_pathv, nb_paths * 2 * sizeof(char *));
172 nb_paths *= 2;