Home
last modified time | relevance | path

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

/netbsd-src/external/gpl2/xcvs/dist/src/
H A Dbuffer.c1315 char *holdbuf; member
1361 pb->holdbuf = xmalloc (pb->holdbufsize); in packetizing_buffer_initialize()
1444 pb->holdbuf[1] = bytes[0]; in packetizing_buffer_input()
1447 pb->holdbuf[0] = bytes[0]; in packetizing_buffer_input()
1455 pb->holdbuf[1] = bytes[1]; in packetizing_buffer_input()
1462 count = (((pb->holdbuf[0] & 0xff) << 8) in packetizing_buffer_input()
1463 + (pb->holdbuf[1] & 0xff)); in packetizing_buffer_input()
1472 n = xrealloc (pb->holdbuf, count + 2); in packetizing_buffer_input()
1478 pb->holdbuf = n; in packetizing_buffer_input()
1507 memcpy (pb->holdbuf + pb->holdsize, bytes, nread); in packetizing_buffer_input()
[all …]
H A DChangeLog-97178 holdbuf.
/netbsd-src/bin/ksh/
H A Dvi.c1369 static char holdbuf[CMDLEN]; /* place to hold last edit buffer */ variable
1375 memmove(holdbuf, es->cbuf, es->linelen); in save_cbuf()
1377 holdbuf[holdlen] = '\0'; in save_cbuf()
1385 memmove(es->cbuf, holdbuf, holdlen); in restore_cbuf()
1723 if (start != 0 && fwd && FILECMP(holdbuf, pat) >= 0) {