new 480 src/dps8/dps8_console.c unsigned char * new = (unsigned char *) strdupesc (cptr); new 483 src/dps8/dps8_console.c size_t nl = strlen ((char *) new); new 499 src/dps8/dps8_console.c strcpy ((char *) old + ol, (char *) new); new 501 src/dps8/dps8_console.c FREE (new); new 504 src/dps8/dps8_console.c csp->auto_input = new; new 529 src/dps8/dps8_console.c unsigned char * new = (unsigned char *) strdupesc (cptr); new 532 src/dps8/dps8_console.c size_t nl = strlen ((char *) new); new 548 src/dps8/dps8_console.c strcpy ((char *) old + ol, (char *) new); new 550 src/dps8/dps8_console.c FREE (new); new 553 src/dps8/dps8_console.c csp->auto_input = new; new 2711 src/dps8/dps8_fnp2.c unsigned char * new = realloc (linep->inBuffer, (unsigned long) (linep->inSize + nread)); new 2712 src/dps8/dps8_fnp2.c if (! new) new 2717 src/dps8/dps8_fnp2.c memcpy (new + linep->inSize, buf, (unsigned long) nread); new 2719 src/dps8/dps8_fnp2.c linep->inBuffer = new; new 2792 src/dps8/dps8_fnp2.c unsigned char * new = realloc (stn_p->stn_in_buffer, (unsigned long) (stn_p->stn_in_size + nread)); new 2793 src/dps8/dps8_fnp2.c if (! new) new 2798 src/dps8/dps8_fnp2.c memcpy (new + stn_p->stn_in_size, buf, (unsigned long) nread); new 2800 src/dps8/dps8_fnp2.c stn_p->stn_in_buffer = new; new 1208 src/dps8/fnpuv.c unsigned char * new = realloc (linep->inBuffer, (unsigned long) (linep->inSize + nread)); new 1209 src/dps8/fnpuv.c if (! new) new 1221 src/dps8/fnpuv.c memcpy (new + linep->inSize, buf, (unsigned long) nread); new 1223 src/dps8/fnpuv.c linep->inBuffer = new; new 365 src/dps8/uvutil.c unsigned char * new = new 368 src/dps8/uvutil.c if (! new) new 380 src/dps8/uvutil.c memcpy (new + access->inSize, buf, (unsigned long) nread); new 382 src/dps8/uvutil.c access->inBuffer = new; new 312 src/libsir/src/sirhelpers.c struct termios new = cur; new 313 src/libsir/src/sirhelpers.c new.c_lflag &= ~(ICANON | ECHO); new 315 src/libsir/src/sirhelpers.c if (0 != tcsetattr(STDIN_FILENO, TCSANOW, &new)) new 323 src/libsir/src/sirinternal.c bool _sir_updatelevels(const char* name, sir_levels* old, const sir_levels* new) { new 324 src/libsir/src/sirinternal.c bool retval = _sir_validstr(name) && _sir_validptr(old) && _sir_validptr(new); new 326 src/libsir/src/sirinternal.c if (*old != *new) { new 327 src/libsir/src/sirinternal.c _sir_selflog("updating %s levels from %04"PRIx16" to %04"PRIx16, name, *old, *new); new 328 src/libsir/src/sirinternal.c *old = *new; new 337 src/libsir/src/sirinternal.c bool _sir_updateopts(const char* name, sir_options* old, const sir_options* new) { new 338 src/libsir/src/sirinternal.c bool retval = _sir_validstr(name) && _sir_validptr(old) && _sir_validptr(new); new 340 src/libsir/src/sirinternal.c if (*old != *new) { new 341 src/libsir/src/sirinternal.c _sir_selflog("updating %s options from %08"PRIx32" to %08"PRIx32, name, *old, *new); new 342 src/libsir/src/sirinternal.c *old = *new; new 614 src/simh/linehistory.c char *new = realloc(ab->b, 1 + ab->len + len); new 616 src/simh/linehistory.c if (new == NULL) new 621 src/simh/linehistory.c memcpy(new + ab->len, s, len); new 622 src/simh/linehistory.c ab->b = new; new 1812 src/simh/linehistory.c char **new; new 1823 src/simh/linehistory.c new = malloc(sizeof ( char * ) * len); new 1824 src/simh/linehistory.c if (new == NULL) new 1842 src/simh/linehistory.c (void)memset(new, 0, sizeof ( char * ) * len); new 1844 src/simh/linehistory.c new, new 1848 src/simh/linehistory.c history = new;