Searched refs:source_refs_allocd (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-ada-spec.c3435 static int source_refs_allocd = 0; variable
3447 if (source_refs_allocd == 0)
3449 source_refs_allocd = 1024;
3450 source_refs = XNEWVEC (const char *, source_refs_allocd);
3457 if (source_refs_used == source_refs_allocd)
3459 source_refs_allocd *= 2;
3460 source_refs = XRESIZEVEC (const char *, source_refs, source_refs_allocd);
/netbsd-current/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-ada-spec.cc3510 static int source_refs_allocd = 0; variable
3522 if (source_refs_allocd == 0)
3524 source_refs_allocd = 1024;
3525 source_refs = XNEWVEC (const char *, source_refs_allocd);
3532 if (source_refs_used == source_refs_allocd)
3534 source_refs_allocd *= 2;
3535 source_refs = XRESIZEVEC (const char *, source_refs, source_refs_allocd);

Completed in 107 milliseconds