Lines Matching defs:amt
338 int amt = 100;
339 freelist = (struct action *)malloc( sizeof(struct action)*amt );
344 for(i=0; i<amt-1; i++) freelist[i].next = &freelist[i+1];
345 freelist[amt-1].next = 0;
1045 int amt = 3;
1046 freelist = (struct config *)malloc( sizeof(struct config)*amt );
1051 for(i=0; i<amt-1; i++) freelist[i].next = &freelist[i+1];
1052 freelist[amt-1].next = 0;
2433 int amt = 100;
2434 plink_freelist = (struct plink *)malloc( sizeof(struct plink)*amt );
2440 for(i=0; i<amt-1; i++) plink_freelist[i].next = &plink_freelist[i+1];
2441 plink_freelist[amt-1].next = 0;