Home
last modified time | relevance | path

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

/netbsd/lib/libedit/
H A Dtokenizer.c141 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()
409 Char *s = tok_realloc(tok->wspace, in FUN()
414 if (s != tok->wspace) { in FUN()
[all …]
/netbsd/sys/net/
H A Dppp-deflate.c235 int proto, olen, wspace, r, flush; in z_compress() local
257 wspace = M_TRAILINGSPACE(m); in z_compress()
258 if (state->hdrlen + PPP_HDRLEN + 2 < wspace) { in z_compress()
260 wspace -= state->hdrlen; in z_compress()
276 state->strm.avail_out = wspace - (PPP_HDRLEN + 2); in z_compress()
281 wspace = 0; in z_compress()
309 m->m_len = wspace; in z_compress()
310 olen += wspace; in z_compress()
318 state->strm.avail_out = wspace = M_TRAILINGSPACE(m); in z_compress()
328 olen += (m->m_len = wspace - state->strm.avail_out); in z_compress()
/netbsd/lib/libcurses/
H A Dnewwin.c289 win->wspace = NULL; in __makenew()
294 if ((win->wspace = in __makenew()
305 free(win->wspace); in __makenew()
327 lp->line = &win->wspace[i * ncols]; in __makenew()
H A Dresize.c297 newwspace = realloc(win->wspace, in __resizewin()
301 win->wspace = newwspace; in __resizewin()
310 lp->line = &win->wspace[i * ncols]; in __resizewin()
H A Ddelwin.c74 free(win->wspace); in delwin()
H A Dcurses_private.h109 __LDATA *wspace; /* window space (for cleanup) */ member
/netbsd/usr.bin/tip/
H A Dremote.c70 static char wspace[] = "\t\n\b\f"; variable
182 EX = wspace; in getremcap()
/netbsd/crypto/external/bsd/openssh/dist/
H A Dmisc.c374 int wspace = 0; in strdelim_internal() local
400 wspace = 1; in strdelim_internal()
405 if (split_equals && *s[0] == '=' && !wspace) in strdelim_internal()