Lines Matching defs:arg

105   register Arg arg;
107 for (arg = args; arg; arg = arg->next)
108 for (item = arg->items; item; item = item->next)
338 register Arg arg;
340 for (arg = hdr->inArgs; arg; arg = arg->next) {
341 fprintf(stm, "%s ", TypeToText(arg->type));
342 for (item = arg->items; item; item = item->next) {
350 for (arg = hdr->outArgs; arg; arg = arg->next) {
351 fprintf(stm, "%s ", TypeToText(arg->type));
352 for (item = arg->items; item; item = item->next) {
376 register Arg arg;
383 for (arg = hdr->inArgs; arg; arg = arg->next) {
384 type = TypeToText(arg->type);
385 for (item = arg->items; item; item = item->next) {
386 if (arg->type == T_CONTEXT) ctxName = item->name;
389 (item->starred || item-> subscripted) ? type : TypeToDefault(arg->type),
394 if (arg->next) fprintf(stm, ", ");
397 for (arg = hdr->outArgs; arg; arg = arg->next) {
398 type = TypeToText(arg->type);
399 for (item = arg->items; item; item = item->next) {
401 (item->starred || item-> subscripted) ? type : TypeToDefault(arg->type),
407 if (arg->next) fprintf(stm, ", ");
1111 register Arg arg;
1116 for (arg = outArgs; arg; arg = arg->next)
1117 for (item = arg->items; item; item = item->next)
1129 for (arg = outArgs; arg; arg = arg->next) {
1130 for (item = arg->items; item; item = item->next) {
1141 for (arg = outArgs; arg; arg = arg->next) {
1142 for (item = arg->items; item; item = item->next) {
1536 case T_UCHAR: /* the executable name is an arg */
1608 register Arg arg; /* a list of parameters */
1612 /* for each arg */
1613 for (arg = args; arg; arg = arg->next) {
1614 /* for each arg item */
1615 for (item = arg->items; item; item = item->next) {
1659 } /* arg */
1775 register Arg arg;
1791 for (arg = hdr->inArgs; arg; arg = arg->next) {
1792 for (item = arg->items; item; item = item->next) {
1793 if (arg->type == T_CONTEXT) ctxName = item->name;
1797 if (arg->next || hdr->outArgs) printf(", ");
1799 for (arg = hdr->outArgs; arg; arg = arg->next) {
1800 for (item = arg->items; item; item = item->next) {
1804 if (arg->next) printf(", ");
1817 Args arg, outArgs = hdr->outArgs;
1822 Not including array arg expansions */
1838 for (arg = hdr->inArgs; arg && !large; arg = arg->next) {
1839 for (item = arg->items; item; item = item->next) {
1840 if ((arg->type == T_CHAR) && item->starred) {
1841 /* if arg is char * then need to use large format since
1842 size of arg is unknown */