HomeSort by: relevance | last modified time | path
    Searched refs:oplist (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/ipf/dist/lib/
parseipfexpr.c 41 int not, items, asize, *oplist, osize, i; local
48 oplist = NULL;
127 if (oplist == NULL)
128 oplist = calloc(1, sizeof(int) * (asize + 2));
130 oplist = realloc(oplist, sizeof(int) * (asize + 2));
131 if (oplist == NULL) {
132 error = "oplist alloc failed";
135 ipfe = (ipfexp_t *)(oplist + osize);
175 oplist[osize++] = addr.in4.s_addr
    [all...]
  /src/bin/pax/
pax.h 232 typedef struct oplist { struct
235 struct oplist *fow; /* next option */
236 } OPLIST;
  /src/external/bsd/elftoolchain/dist/libdwarf/
libdwarf_frame.c 1127 Dwarf_Frame_Op *oplist; local
1136 if ((oplist = calloc(count, sizeof(Dwarf_Frame_Op))) == NULL) {
1142 oplist, NULL, error);
1144 free(oplist);
1148 *ret_oplist = oplist;
  /src/external/bsd/pcc/dist/pcc/cc/ccom/
cgram.y 276 designator_list designator xasm oplist oper cnstr funtype
1011 xasm: ':' oplist { $$ = xcmop($2, NULL, NULL); }
1012 | ':' oplist ':' oplist { $$ = xcmop($2, $4, NULL); }
1013 | ':' oplist ':' oplist ':' cnstr { $$ = xcmop($2, $4, $6); }
1016 oplist: /* nothing */ { $$ = NULL; } label
  /src/external/bsd/pcc/dist/pcc/cc/cxxcom/
cgram.y 249 designator_list designator xasm oplist oper cnstr
1018 xasm: ':' oplist { $$ = xcmop($2, NIL, NIL); }
1019 | ':' oplist ':' oplist { $$ = xcmop($2, $4, NIL); }
1020 | ':' oplist ':' oplist ':' cnstr { $$ = xcmop($2, $4, $6); }
1023 oplist: /* nothing */ { $$ = NIL; } label

Completed in 32 milliseconds