Lines Matching defs:newList
943 char **newList = malloc(nnew * sizeof(char *));
945 if (!newList)
948 memmove(newList, directoryList, (ndirs * sizeof(char *)));
949 memmove((newList + ndirs), currentList, (ncurrent * sizeof(char *)));
950 XSetFontPath(dpy, newList, (int) nnew);
952 memmove(newList, currentList, (ncurrent * sizeof(char *)));
953 memmove((newList + ncurrent), directoryList,
955 XSetFontPath(dpy, newList,(int) nnew);
957 free(newList);
964 char **newList = malloc(ncurrent * sizeof(char *));
966 if (!newList)
975 newList[nnew++] = currentList[i];
982 XSetFontPath(dpy, newList, (int) nnew);
983 free(newList);