Searched refs:newbuf (Results 1 - 9 of 9) sorted by relevance

/haiku-fatelf/src/libs/edit/
H A Dhist.c188 char *newbuf; local
190 newbuf = realloc(el->el_history.buf, newsz);
191 if (!newbuf)
194 (void) memset(&newbuf[oldsz], '\0', newsz - oldsz);
196 el->el_history.last = newbuf +
198 el->el_history.buf = newbuf;
/haiku-fatelf/src/bin/gdb/gdb/
H A Dregcache.c362 struct regcache *newbuf; local
364 newbuf = regcache_xmalloc (src->descr->gdbarch);
365 regcache_cpy (newbuf, src);
366 return newbuf;
372 struct regcache *newbuf; local
374 newbuf = regcache_xmalloc (src->descr->gdbarch);
375 regcache_cpy_no_passthrough (newbuf, src);
376 return newbuf;
/haiku-fatelf/src/libs/tiff/
H A Dtif_jpeg.c461 void* newbuf; local
464 newbuf = _TIFFrealloc((tdata_t) sp->jpegtables,
466 if (newbuf == NULL)
468 sp->dest.next_output_byte = (JOCTET*) newbuf + sp->jpegtables_length;
470 sp->jpegtables = newbuf;
/haiku-fatelf/src/libs/ncurses/form/
H A Dfrm_driver.c602 FIELD_CELL *newbuf; local
633 newbuf = (FIELD_CELL *)malloc(Total_Buffer_Size(field));
634 if (!newbuf)
654 field->buf = newbuf;
720 free(newbuf);
/haiku-fatelf/src/bin/gdb/bfd/
H A Decofflink.c268 char *newbuf;
279 newbuf = (char *) bfd_realloc (*buf, (bfd_size_type) have + want);
280 if (newbuf == NULL)
282 *buf = newbuf;
265 char *newbuf; local
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dcp-demangle.c2657 char *newbuf; local
2660 newbuf = realloc (dpi->buf, newalc);
2661 if (newbuf == NULL)
2668 dpi->buf = newbuf;
/haiku-fatelf/src/tools/docbook/libxml2/
H A DSAX2.c2440 xmlChar *newbuf; local
2445 newbuf = (xmlChar *) xmlRealloc(lastChild->content,size);
2446 if (newbuf == NULL) {
2451 lastChild->content = newbuf;
H A Dtree.c6692 xmlChar *newbuf; local
6712 newbuf = (xmlChar *) xmlRealloc(buf->content, size);
6713 if (newbuf == NULL) {
6717 buf->content = newbuf;
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dtransform.c560 xmlChar *newbuf; local
565 newbuf = (xmlChar *) xmlRealloc(target->content,size);
566 if (newbuf == NULL) {
572 ctxt->lasttext = newbuf;
573 target->content = newbuf;

Completed in 276 milliseconds