Searched refs:alc (Results 1 - 25 of 35) sorted by relevance

12

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/graphite/
H A Dscop-19.c16 size_t alc; member in struct:d_growable_string
22 newalc = dgs->alc > 0 ? dgs->alc : 2;
31 if (need > dgs->alc)
/haiku-buildtools/gcc/libbacktrace/
H A Dalloc.c82 if (size > vec->alc)
84 size_t alc; local
88 alc = 32 * size;
90 alc = vec->size + 4096;
92 alc = 2 * vec->size;
94 if (alc < vec->size + size)
95 alc = vec->size + size;
97 base = realloc (vec->base, alc);
105 vec->alc = alc
[all...]
H A Dmmap.c215 if (size > vec->alc)
218 size_t alc; local
222 alc = vec->size + size;
224 alc = 16 * size;
225 else if (alc < pagesize)
227 alc *= 2;
228 if (alc > pagesize)
229 alc = pagesize;
233 alc *= 2;
234 alc
281 size_t alc; local
291 backtrace_free (state, (char *) vec->base + aligned, alc, local
[all...]
H A Dinternal.h228 size_t alc; member in struct:backtrace_vector
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/all/
H A Dcond.l1 # This should match the output of gas -alc cond.s.
/haiku-buildtools/binutils/gas/testsuite/gas/all/
H A Dcond.l1 # This should match the output of gas -alc cond.s.
/haiku-buildtools/binutils/gold/
H A Dstringpool.cc167 size_t alc; local
171 alc = sizeof(Stringdata) + len;
175 alc = sizeof(Stringdata) + buffer_size;
179 if (len > psd->alc - psd->len)
180 alc = sizeof(Stringdata) + buffer_size;
194 Stringdata* psd = reinterpret_cast<Stringdata*>(new char[alc]);
195 psd->alc = alc - sizeof(Stringdata);
H A Dstringpool.h311 size_t alc; member in struct:gold::Stringpool_template::Stringdata
H A Darchive.cc132 size_t alc = 100 + strlen(sym_name); local
133 char* buf = new char[alc];
134 snprintf(buf, alc, _("script or expression reference to %s"),
/haiku-buildtools/binutils/gas/testsuite/gas/s390/
H A Desa-z900.s43 alc %r6,4095(%r5,%r10)
H A Desa-z900.d49 .*: e3 65 af ff 00 98 [ ]*alc %r6,4095\(%r5,%r10\)
H A Dzarch-z990.s6 alc %r6,-524288(%r5,%r10)
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/s390/
H A Desa-z900.s43 alc %r6,4095(%r5,%r10)
H A Desa-z900.d49 .*: e3 65 af ff 00 98 [ ]*alc %r6,4095\(%r5,%r10\)
H A Dzarch-z990.s6 alc %r6,-524288(%r5,%r10)
H A Dzarch-z990.d12 .*: e3 65 a0 00 80 98 [ ]*alc %r6,-524288\(%r5,%r10\)
/haiku-buildtools/legacy/binutils/libiberty/
H A Dcp-demangle.c242 size_t alc; member in struct:d_print_info
257 if ((dpi)->buf != NULL && (dpi)->len < (dpi)->alc) \
267 if ((dpi)->buf != NULL && (dpi)->len + (l) <= (dpi)->alc) \
2570 while (need > dpi->alc)
2575 newalc = dpi->alc * 2;
2585 dpi->alc = newalc;
2596 if (dpi->len >= dpi->alc)
2615 if (dpi->len + l > dpi->alc)
2653 dpi.alc = estimate + 1;
2654 dpi.buf = (char *) malloc (dpi.alc);
3936 size_t alc; local
4001 size_t alc; local
4016 size_t alc; local
[all...]
/haiku-buildtools/legacy/binutils/bfd/
H A Dsrec.c345 bfd_size_type alc; local
363 alc = 10;
364 symbuf = bfd_malloc (alc + 1);
374 if ((bfd_size_type) (p - symbuf) >= alc)
378 alc *= 2;
379 n = bfd_realloc (symbuf, alc + 1);
H A Dsunos.c941 bfd_size_type alc;
957 alc = sizeof (struct bfd_link_needed_list);
958 needed = bfd_alloc (abfd, alc);
964 alc = 30;
965 namebuf = bfd_malloc (alc + 1);
989 if ((bfd_size_type) (p - namebuf) >= alc)
993 alc *= 2;
994 n = bfd_realloc (namebuf, alc + 1);
1021 if ((p - namebuf) + strlen (majbuf) + strlen (minbuf) >= alc)
1025 alc
940 bfd_size_type alc; local
[all...]
/haiku-buildtools/gcc/gcc/
H A Ddiagnostic.c429 char *alc = NULL;
437 alc = str;
447 if (alc != NULL)
448 free (alc);
461 if (alc != NULL)
462 free (alc);
427 char *alc = NULL; local
/haiku-buildtools/binutils/bfd/
H A Dsrec.c346 bfd_size_type alc; local
364 alc = 10;
365 symbuf = (char *) bfd_malloc (alc + 1);
375 if ((bfd_size_type) (p - symbuf) >= alc)
379 alc *= 2;
380 n = (char *) bfd_realloc (symbuf, alc + 1);
H A Dsunos.c922 bfd_size_type alc;
938 alc = sizeof (struct bfd_link_needed_list);
939 needed = bfd_alloc (abfd, alc);
945 alc = 30;
946 namebuf = bfd_malloc (alc + 1);
970 if ((bfd_size_type) (p - namebuf) >= alc)
974 alc *= 2;
975 n = bfd_realloc (namebuf, alc + 1);
1002 if ((p - namebuf) + strlen (majbuf) + strlen (minbuf) >= alc)
1006 alc
921 bfd_size_type alc; local
[all...]
/haiku-buildtools/gcc/libiberty/
H A Dcp-demangle.c280 size_t alc; member in struct:d_growable_string
3774 dgs->alc = 0;
3795 newalc = dgs->alc > 0 ? dgs->alc : 2;
3805 dgs->alc = 0;
3810 dgs->alc = newalc;
3822 if (need > dgs->alc)
4146 *palc = dgs.allocation_failure ? 1 : dgs.alc;
5986 *palc = dgs.allocation_failure ? 1 : dgs.alc;
6025 size_t alc; local
6132 size_t alc; local
6153 size_t alc; local
[all...]
/haiku-buildtools/binutils/libiberty/
H A Dcp-demangle.c284 size_t alc; member in struct:d_growable_string
3928 dgs->alc = 0;
3949 newalc = dgs->alc > 0 ? dgs->alc : 2;
3959 dgs->alc = 0;
3964 dgs->alc = newalc;
3976 if (need > dgs->alc)
4308 *palc = dgs.allocation_failure ? 1 : dgs.alc;
6270 *palc = dgs.allocation_failure ? 1 : dgs.alc;
6309 size_t alc; local
6416 size_t alc; local
6437 size_t alc; local
[all...]
/haiku-buildtools/legacy/binutils/gas/
H A Dread.c1540 char *alc = NULL;
1572 alc = (char *) xmalloc (strlen (S_GET_NAME (line_label))
1575 sprintf (alc, "%s%s", name, S_GET_NAME (line_label));
1576 name = alc;
1582 if (alc != NULL)
1583 free (alc);
1537 char *alc = NULL; local

Completed in 224 milliseconds

12