Searched refs:XtReallocArray (Results 1 - 25 of 29) sorted by relevance

12

/xsrc/external/mit/libXt/dist/test/
H A DAlloc.c572 /* Make sure XtReallocArray() works for a non-zero amount of memory */
581 p = XtReallocArray(NULL, 8, 14);
594 p3 = XtReallocArray(p, 73, 14);
608 /* Make sure XtReallocArray(0) returns a valid pointer as expected */
615 p = XtReallocArray(NULL, 0, 0);
618 p2 = XtReallocArray(p, 0, 0);
639 p = XtReallocArray(NULL, num, size);
645 p2 = XtReallocArray(p, 2, ALLOC_LIMIT);
661 /* Make sure XtReallocArray catches integer overflow if possible, by requesting
665 * Testing integer overflow cases is limited by the fact that XtReallocArray
[all...]
/xsrc/external/mit/xmh/dist/
H A Dmlist.c52 mlist->msglist = XtReallocArray(mlist->msglist,
H A Dbbox.c101 buttonbox->button = XtReallocArray(buttonbox->button,
H A Dtocutil.c280 toc->seqlist = XtReallocArray(toc->seqlist,
412 toc->msgs = XtReallocArray(toc->msgs, maxmsgs, sizeof(Msg));
422 toc->msgs = XtReallocArray(toc->msgs, toc->nummsgs, sizeof(Msg));
608 toc->msgs = XtReallocArray(toc->msgs, toc->nummsgs, sizeof(Msg));
H A Dpick.c476 row->wlist = XtReallocArray(row->wlist, row->numwidgets, sizeof(FormEntry));
534 group->rlist = XtReallocArray(group->rlist, group->numrows, sizeof(RowList));
574 form->glist = XtReallocArray(form->glist, form->numgroups, sizeof(Group));
H A Dcommand.c289 altQueue = XtReallocArray(altQueue,
H A Dutil.c130 argv = XtReallocArray(argv, (unsigned) (n+1), sizeof(char *));
H A Dscreen.c297 scrnList = XtReallocArray(scrnList, numScrns, sizeof(Scrn));
H A Dtoc.c205 folderList = XtReallocArray(folderList, ++numFolders, sizeof(Toc));
426 toc->scrn = XtReallocArray(toc->scrn, toc->num_scrns, sizeof(Scrn));
/xsrc/external/mit/libXt/dist/src/
H A DEventUtil.c163 trace = XtReallocArray(trace, (Cardinal) *maxElemsPtr,
H A DHooks.c120 ho->hooks.shells = XtReallocArray(ho->hooks.shells,
H A DAlloc.c202 XtReallocArray(void *ptr, unsigned num, unsigned size) function in typeref:typename:void *
450 XtReallocArray(void *ptr, unsigned num, unsigned size) function in typeref:typename:void *
H A DComposite.c250 XtReallocArray(children, cw->composite.num_slots,
H A DDestroy.c374 app->destroy_list = XtReallocArray(app->destroy_list,
H A DThreads.c242 XtReallocArray(app_lock->stack.st,
H A DVarCreate.c294 typed_args = XtReallocArray(typed_args, (Cardinal) count + 1,
H A DDisplay.c124 app->list = XtReallocArray(app->list,
552 appDestroyList = XtReallocArray(appDestroyList,
740 app->dpy_destroy_list = XtReallocArray(app->dpy_destroy_list,
H A DTMstate.c140 XtReallocArray(parseTree->branchHeadTbl,
191 XtReallocArray(parseTree->quarkTbl,
235 XtReallocArray(parseTree->complexBranchHeadTbl,
275 XtReallocArray(_XtGlobalTM.typeMatchSegmentTbl,
377 XtReallocArray(_XtGlobalTM.modMatchSegmentTbl,
707 XtReallocArray(context->matches,
1371 XtReallocArray(_XtGlobalTM.tmTbl,
H A DVarargs.c431 *res_list = XtReallocArray(*res_list, *number + num_constraint,
H A DSelection.c232 sarray->list = XtReallocArray(sarray->list, (Cardinal) sarray->propCount,
1958 req = XtReallocArray(req, (Cardinal) (start + count),
2100 queueInfo->selections = XtReallocArray(queueInfo->selections, (n + 2),
2329 pinfo->paramlist = XtReallocArray(pinfo->paramlist, pinfo->count,
H A DNextEvent.c283 wf->fdlist = XtReallocArray(wf->fdlist, (Cardinal) wf->fdlistlen,
1044 app->input_list = XtReallocArray(app->input_list, n,
H A DCreate.c632 parent->core.popup_list = XtReallocArray(parent->core.popup_list,
H A DTMaction.c468 XtReallocArray(_XtGlobalTM.bindCacheTbl,
H A DTMkey.c503 XtReallocArray(pd->modKeysyms,
/xsrc/external/mit/libXt/dist/include/X11/
H A DIntrinsic.h1862 extern void *XtReallocArray(
1924 #define XtReallocArray(ptr,num,size) _XtReallocArray(ptr, num, size, __FILE__, __LINE__) macro
1930 #define XtMallocArray(num,size) XtReallocArray(NULL, num, size)

Completed in 37 milliseconds

12