Lines Matching refs:wspace
80 Char *wspace; /* Space of word buffer */
130 tok->wspace = tok_malloc(WINCR * sizeof(*tok->wspace));
131 if (tok->wspace == NULL) {
137 tok->wmax = tok->wspace + WINCR;
138 tok->wstart = tok->wspace;
139 tok->wptr = tok->wspace;
155 tok->wstart = tok->wspace;
156 tok->wptr = tok->wspace;
170 tok_free(tok->wspace);
397 size_t size = (size_t)(tok->wmax - tok->wspace + WINCR);
398 Char *s = tok_realloc(tok->wspace,
403 if (s != tok->wspace) {
407 (tok->argv[i] - tok->wspace) + s;
409 tok->wptr = (tok->wptr - tok->wspace) + s;
410 tok->wstart = (tok->wstart - tok->wspace) + s;
411 tok->wspace = s;