Lines Matching refs:elt
3079 struct nameseq *elt in multi_glob() local
3082 bzero (((char *) elt) + sizeof (struct nameseq), in multi_glob()
3084 elt->name = (char *) xmalloc (alen + 1 + mlen + 2); in multi_glob()
3085 bcopy (gl.gl_pathv[i], elt->name, alen); in multi_glob()
3086 elt->name[alen] = '('; in multi_glob()
3087 bcopy (memname, &elt->name[alen + 1], mlen); in multi_glob()
3088 elt->name[alen + 1 + mlen] = ')'; in multi_glob()
3089 elt->name[alen + 1 + mlen + 1] = '\0'; in multi_glob()
3090 elt->next = new; in multi_glob()
3091 new = elt; in multi_glob()
3111 struct nameseq *elt = (struct nameseq *) xmalloc (size); in multi_glob() local
3113 bzero (((char *) elt) + sizeof (struct nameseq), in multi_glob()
3115 elt->name = xstrdup (gl.gl_pathv[i]); in multi_glob()
3116 elt->next = new; in multi_glob()
3117 new = elt; in multi_glob()