Searched refs:listp (Results 1 - 8 of 8) sorted by relevance

/xsrc/external/mit/libXaw/dist/src/
H A DTree.c207 initialize_dimensions(Dimension **listp, int *sizep, int n) argument
209 if (!*listp) {
210 *listp = (Dimension *) XtCalloc ((unsigned int) n,
212 *sizep = ((*listp) ? n : 0);
216 *listp = (Dimension *) XtRealloc((char *) *listp,
218 if (!*listp) {
225 for (i = *sizep, l = (*listp) + i; i < n; i++, l++)
/xsrc/external/mit/viewres/dist/
H A Dviewres.c265 initialize_widgetnode_list(XmuWidgetNode ***listp, int *sizep, int n) argument
267 if (!*listp) {
268 *listp = (XmuWidgetNode **)
270 *sizep = ((*listp) ? n : 0);
277 *listp = (XmuWidgetNode **) XtRealloc((char *) *listp, (unsigned int)
279 if (!*listp) {
283 for (i = *sizep, l = (*listp) + i; i < n; i++, l++)
/xsrc/external/mit/iceauth/dist/
H A Dprocess.c1005 AuthList **listp = &iceauth_head; local in function:remove_entry
1011 while ((list = *listp)->auth != auth)
1012 listp = &list->next;
1013 *listp = list->next;
/xsrc/external/mit/xedit/dist/lisp/modules/
H A Dxedit.lsp119 (when (listp (re-exec regex filename :count 0))
H A Dindent.lsp441 (or (listp rule) (error "INDREDUCE: invalid indent rule ~A" rule))
675 (if (listp match)
/xsrc/external/mit/xauth/dist/
H A Dprocess.c1360 AuthList **listp = &xauth_head; local in function:remove_entry
1366 while (!eq_auth((list = *listp)->auth, auth)) {
1367 listp = &list->next;
1368 if (!*listp)
1371 *listp = list->next;
/xsrc/external/mit/xedit/dist/lisp/test/
H A Dlist.lsp918 ;; listp - function (predicate)
919 (eq-test t #'listp nil)
920 (eq-test t #'listp '(1 . 2))
921 (eq-test nil #'listp t)
922 (eq-test nil #'listp #'listp)
923 (eq-test nil #'listp #(1 2))
924 (eq-test nil #'listp #c(1 2))
1029 (eq-test (cddr a) #'member-if #'listp a)
/xsrc/external/mit/xterm/dist/
H A Dbutton.c1880 char *listp = (char *) copied; local in function:overrideTargets
1883 char *nextp = parseItem(listp, &nextc);
1884 char *item = x_strtrim(listp);
1908 listp = nextp;

Completed in 19 milliseconds