Home
last modified time | relevance | path

Searched refs:wspace (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/libedit/
H A Dtokenizer.c91 Char *wspace; /* Space of word buffer */ in TYPE() local
141 tok->wspace = tok_malloc(WINCR * sizeof(*tok->wspace)); in TYPE()
142 if (tok->wspace == NULL) { in TYPE()
148 tok->wmax = tok->wspace + WINCR; in TYPE()
149 tok->wstart = tok->wspace; in TYPE()
150 tok->wptr = tok->wspace; in TYPE()
166 tok->wstart = tok->wspace; in FUN()
167 tok->wptr = tok->wspace; in FUN()
181 tok_free(tok->wspace); in FUN()
408 size_t size = (size_t)(tok->wmax - tok->wspace + WINCR); in FUN()
[all …]
/freebsd/crypto/openssl/doc/designs/ddd/
H A Dddd-05-mem-nonblocking.c301 size_t wspace; local
318 while ((wspace = net_rx_space(conn)) > 0) {
319 l = read(fd, buf, wspace > sizeof(buf) ? sizeof(buf) : wspace);
/freebsd/crypto/openssh/
H A Dmisc.c472 int wspace = 0; in strdelim_internal() local
498 wspace = 1; in strdelim_internal()
503 if (split_equals && *s[0] == '=' && !wspace) in strdelim_internal()