Home
last modified time | relevance | path

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

/titanic_50/usr/src/uts/common/io/ppp/spppcomp/
H A Ddeflate.c306 int wspace; in z_compress() local
374 wspace = 0; in z_compress()
377 wspace = maxolen + state->hdrlen; in z_compress()
378 if (wspace > 4096) { in z_compress()
379 wspace = 4096; in z_compress()
382 m = allocb(wspace, BPRI_MED); in z_compress()
387 wspace = m->b_datap->db_lim - m->b_wptr; in z_compress()
391 if (state->hdrlen + PPP_HDRLEN + 2 < wspace) { in z_compress()
394 wspace -= state->hdrlen; in z_compress()
424 state->strm.avail_out = wspace - (PPP_HDRLEN + 2); in z_compress()
[all …]
/titanic_50/usr/src/tools/aw/
H A Daw.c161 const char *wspace, size_t wspace_len) in copyuntil_path() argument
214 (strncmp(bufptr, wspace, wspace_len) == 0)) { in copyuntil_path()
271 char *wspace; in filter() local
300 wspace = getenv("CODEMGR_WS"); in filter()
301 if (wspace != NULL) in filter()
302 wspace_len = strlen(wspace); in filter()
340 if (wspace != NULL) in filter()
342 wspace, wspace_len); in filter()
/titanic_50/usr/src/cmd/ssh/libssh/common/
H A Dmisc.c133 int wspace = 0; in strdelim() local
146 wspace = 1; in strdelim()
150 if (*s[0] == '=' && !wspace) in strdelim()