Searched refs:XtRealloc (Results 1 - 25 of 54) sorted by relevance

123

/xsrc/external/mit/libXmu/dist/src/
H A DIniter.c56 init_list = (struct InitializerList *) XtRealloc( (char *) init_list,
107 *app_list = (XtAppContext *) XtRealloc((char *)(*app_list),
H A DEditresCom.c762 extra_widgets = (Widget *) XtRealloc(
776 extra_widgets = (Widget *) XtRealloc(
829 *children = (Widget *)XtRealloc((char *)*children, sizeof(Widget)
1677 XtRealloc((char *)stream->real_top, stream->alloc + HEADER_SIZE);
1767 XtRealloc((char *)stream->real_top, stream->alloc + HEADER_SIZE);
/xsrc/external/mit/libXt/dist/test/
H A DAlloc.c419 /* Make sure XtRealloc() works for a non-zero amount of memory */
428 p = XtRealloc(NULL, 814);
441 p3 = XtRealloc(p, 7314);
456 /* Make sure XtRealloc(0) returns a valid pointer as expected */
463 p = XtRealloc(NULL, 0);
466 p2 = XtRealloc(p, 0);
485 p = XtRealloc(NULL, size);
490 p2 = XtRealloc(p, ALLOC_LIMIT + 1);
506 /* Make sure XtRealloc catches integer overflow if possible, by requesting
510 * Testing integer overflow cases is limited by the fact that XtRealloc
[all...]
/xsrc/external/mit/xmag/dist/
H A DCutPaste.c73 tmp = (Atom *) XtRealloc(*value, (*length + 3) * sizeof(Atom));
/xsrc/external/mit/libXaw/dist/src/
H A DPixmap.c215 XtRealloc((char *)xaw_params->args,
361 XtRealloc((char *)loader_info,
493 XtRealloc((char *)xaw->elems,
519 XtRealloc((char *)s_cache->elems,
546 XtRealloc((char *)c_cache->elems,
625 xaw_cache->elems = (XtPointer*)XtRealloc((char *)xaw_cache->elems,
644 x_cache->elems = (XtPointer*)XtRealloc((char *)x_cache->elems,
686 pixmap_path = XtRealloc(pixmap_path, (Cardinal)(length + toklen + 5));
695 pixmap_path = XtRealloc(pixmap_path, (Cardinal)((size_t)length + strlen(default_path) + 2));
H A DActions.c712 resource_list = (XawActionResList **)XtRealloc((char *)resource_list,
1007 XtRealloc((char *)variable_list,
1074 list->variables = (XawActionVar **)XtRealloc((char *)list->variables,
1127 XtRealloc((char *)variable_list, (Cardinal) sizeof(XawActionVarList *) *
H A DAsciiSink.c584 paint->text = XtRealloc(paint->text, (Cardinal)(bufsiz += 32));
634 paint->text = XtRealloc(paint->text, paint->length);
822 XtRealloc((XtPointer)rects, (Cardinal)(sizeof(XRectangle) *
835 XtRealloc((XtPointer)rects, (Cardinal)(sizeof(XRectangle) *
859 XtRealloc((XtPointer)rects, (Cardinal)(sizeof(XRectangle) *
877 XtRealloc((XtPointer)rects, (Cardinal)(sizeof(XRectangle) *
1910 XtRealloc((char*)sink->text_sink.tabs, (Cardinal)((size_t)tab_count * sizeof(Position)));
1912 XtRealloc((char*)sink->text_sink.char_tabs, (Cardinal)((size_t)tab_count * sizeof(short)));
H A DVendor.c302 mbs = XtRealloc(mbs, (Cardinal)(len + 1)); /* keep buffer because no one call free :( */
H A DMultiSink.c949 XtRealloc((char *)sink->text_sink.tabs,
952 XtRealloc((char *)sink->text_sink.char_tabs,
H A DTree.c216 *listp = (Dimension *) XtRealloc((char *) *listp,
269 pc->tree.children = (WidgetList) XtRealloc ((char *)pc->tree.children,
/xsrc/external/mit/bitmap/dist/
H A DReqMach.c84 XtRealloc((char *)BW->bitmap.request_stack,
226 XtRealloc((char *)BW->bitmap.request_stack,
/xsrc/external/mit/libXt/dist/src/
H A DCallback.c136 XtRealloc((char *) icl, (Cardinal) (sizeof(InternalCallbackRec) +
224 icl = (InternalCallbackList) XtRealloc((char *) icl,
319 XtRealloc((char *) icl,
429 XtRealloc((char *) icl, (Cardinal) (sizeof(InternalCallbackRec) +
558 XtRealloc((char *) icl, (Cardinal) (sizeof(InternalCallbackRec)
H A DAlloc.c182 XtRealloc(char *ptr, unsigned size) function in typeref:typename:char *
343 #undef XtRealloc
433 XtRealloc(char *ptr, unsigned size) function in typeref:typename:char *
H A DTMprint.c90 sb->start = XtRealloc(old, (Cardinal)(sb->max += STR_INCAMOUNT)); \
97 sb->start = XtRealloc(old, \
/xsrc/external/mit/xedit/dist/
H A Dtags.c466 XtRealloc((char *)entry->filenames,
470 XtRealloc((char *)entry->patterns,
584 text = XtRealloc(text, length);
H A Dhook.c214 left = XtRealloc(left, llen = len + 1);
228 right = XtRealloc(right, rlen += 256);
317 str = XtRealloc(str, size += sizeof(buf));
932 einfo.line = XtRealloc(einfo.line, to - from);
1008 einfo.buffer = XtRealloc(einfo.buffer, einfo.bsize);
1021 einfo.buffer = XtRealloc(einfo.buffer,
H A Dcommands.c772 save = XtRealloc(save, slen - diff + hlen + 2);
852 matches = (char **)XtRealloc((char*)matches, sizeof(char**)
920 matches = (char **)XtRealloc((char*)matches, sizeof(char**)
1005 entries = (char **)XtRealloc((char*)entries, sizeof(char*)
/xsrc/external/mit/xmh/dist/
H A Dcommand.c380 *bufP = XtRealloc( *bufP, (Cardinal) ((*lenP += nread) + 1) );
393 *bufP = XtRealloc( *bufP, (Cardinal) ((*lenP += nread) + 1) );
H A Dutil.c165 buf = XtRealloc(buf, (unsigned) (maxlength *= 2));
/xsrc/external/mit/xman/dist/
H A Dman.c156 manual = (Manual *) XtRealloc((char *) manual,
188 manual = (Manual *) XtRealloc((char *) manual, (sizeof(Manual) * sect));
469 (char **) XtRealloc((char *) local_manual->entries,
472 (char **) XtRealloc((char *) local_manual->entries_less_paths,
/xsrc/external/mit/xedit/dist/lisp/modules/
H A Dxt.c471 XtRealloc((XtPointer)input_list,
1520 XtRealloc((XtPointer)resources->args,
1551 XtRealloc((XtPointer)resources->args,
1565 XtRealloc((XtPointer)resources->args,
1613 XtRealloc((XtPointer)resources->args,
1727 XtRealloc((XtPointer)resource_list, sizeof(ResourceList*) *
/xsrc/external/mit/editres/dist/
H A Dwtree.c174 info->active_nodes =(WNode **)XtRealloc((XtPointer) info->active_nodes,
578 parent->children = (WNode **) XtRealloc((char *)parent->children,
H A Dgeometry.c331 (Widget *) XtRealloc((char *)tree_info->flash_widgets,
/xsrc/external/mit/libXt/dist/man/
H A DMakefile.am330 XtRealloc \
/xsrc/external/mit/xfontsel/dist/
H A Dxfontsel.c663 XtRealloc( (char *) fValues[f],
686 v->font = (int*)XtRealloc( (char *) v->font,
781 XtRealloc( (char *) fieldValues[f],
1226 XtRealloc(currentFontNameString, currentFontNameSize+=128);

Completed in 45 milliseconds

123