Lines Matching refs:REALLOC
181 if (sp->num_beacons % REALLOC == 0) {
183 sp->num_beacons + REALLOC, sizeof(BEACON)) != 0)
205 if (sp->num_exits % REALLOC == 0) {
208 REALLOC) * sizeof (EXIT));
210 sp->exit = realloc(sp->exit,
211 (sp->num_exits + REALLOC) *
238 if (sp->num_airports % REALLOC == 0) {
241 + REALLOC) * sizeof(AIRPORT));
243 sp->airport = realloc(sp->airport,
244 (sp->num_airports + REALLOC) *
268 if (sp->num_lines % REALLOC == 0) {
271 REALLOC) * sizeof (LINE));
273 sp->line = realloc(sp->line,
274 (sp->num_lines + REALLOC) *