Searched refs:allocated (Results 1 – 25 of 180) sorted by relevance
12345678
/toolchain/binutils/binutils-2.25/libiberty/ |
D | xmalloc.c | 121 size_t allocated; in xmalloc_failed() local 124 allocated = (char *) sbrk (0) - first_break; in xmalloc_failed() 126 allocated = (char *) sbrk (0) - (char *) &environ; in xmalloc_failed() 130 (unsigned long) size, (unsigned long) allocated); in xmalloc_failed()
|
D | dyn-string.c | 72 ds_struct_ptr->allocated = space; in dyn_string_init() 141 int new_allocated = ds->allocated; in dyn_string_resize() 150 if (new_allocated != ds->allocated) in dyn_string_resize() 152 ds->allocated = new_allocated; in dyn_string_resize() 155 ds->s = (char *) realloc (ds->s, ds->allocated); in dyn_string_resize() 162 ds->s = XRESIZEVEC (char, ds->s, ds->allocated); in dyn_string_resize()
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
D | bpo-19m.d | 3 #as: -linker-allocated-gregs 7 # 223 (max) linker-allocated GREGs, four relocs merged for each register 8 # allocated.
|
D | bpo-19.d | 3 #as: -linker-allocated-gregs 7 # 223 (max) linker-allocated GREGs, four relocs merged for each register 8 # allocated.
|
D | bpo-12m.d | 4 #as: -linker-allocated-gregs 9 # symbol. Variant 1: a GREG allocated register.
|
D | bpo-12.d | 4 #as: -linker-allocated-gregs 9 # symbol. Variant 1: a GREG allocated register.
|
D | bpo-1m.d | 3 #as: -linker-allocated-gregs 7 # Just a simple linker-allocated GREG with no explicit GREGs.
|
D | bpo-5m.d | 5 #as: -linker-allocated-gregs 9 # Three linker-allocated GREGs: one eliminated.
|
D | bpo-3m.d | 4 #as: -linker-allocated-gregs 8 # Just two BPO relocs merged as one linker-allocated GREG.
|
D | bpo-4m.d | 5 #as: -linker-allocated-gregs 9 # Three GREGs: one explicit, two linker-allocated.
|
D | bpo-2m.d | 4 #as: -linker-allocated-gregs 8 # Just a simple linker-allocated GREG plus one explicit GREG.
|
D | bpo-6m.d | 3 #as: -linker-allocated-gregs 7 # 223 (max) linker-allocated GREGs.
|
D | bpo-1.d | 3 #as: -linker-allocated-gregs 7 # Just a simple linker-allocated GREG with no explicit GREGs.
|
D | bpo-5.d | 5 #as: -linker-allocated-gregs 9 # Three linker-allocated GREGs: one eliminated.
|
D | bpo-3.d | 4 #as: -linker-allocated-gregs 8 # Just two BPO relocs merged as one linker-allocated GREG.
|
D | bpo-2.d | 4 #as: -linker-allocated-gregs 8 # Just a simple linker-allocated GREG plus one explicit GREG.
|
D | bpo-4.d | 5 #as: -linker-allocated-gregs 9 # Three GREGs: one explicit, two linker-allocated.
|
D | bpo-6.d | 3 #as: -linker-allocated-gregs 7 # 223 (max) linker-allocated GREGs.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-i386/ |
D | alloc.d | 1 #name: Invalid allocated section 4 #warning: .*section `.foo' can't be allocated in segment 0.*
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/ |
D | basep-4.d | 2 #as: -linker-allocated-gregs 5 # The -linker-allocated-gregs option validates omissions of GREG.
|
D | basep-6.d | 2 #as: -linker-allocated-gregs 5 # The -linker-allocated-gregs option validates omissions of GREG.
|
D | basep-5.d | 2 #as: -linker-allocated-gregs 5 # The -linker-allocated-gregs option validates omissions of GREG.
|
D | basep-7.d | 2 #as: -linker-allocated-gregs 5 # The -linker-allocated-gregs option validates omissions of GREG.
|
/toolchain/binutils/binutils-2.25/bfd/ |
D | elf64-sparc.c | 58 void * allocated = NULL; in elf64_sparc_slurp_one_reloc_table() local 66 allocated = bfd_malloc (rel_hdr->sh_size); in elf64_sparc_slurp_one_reloc_table() 67 if (allocated == NULL) in elf64_sparc_slurp_one_reloc_table() 71 || bfd_bread (allocated, rel_hdr->sh_size, abfd) != rel_hdr->sh_size) in elf64_sparc_slurp_one_reloc_table() 74 native_relocs = (bfd_byte *) allocated; in elf64_sparc_slurp_one_reloc_table() 134 if (allocated != NULL) in elf64_sparc_slurp_one_reloc_table() 135 free (allocated); in elf64_sparc_slurp_one_reloc_table() 140 if (allocated != NULL) in elf64_sparc_slurp_one_reloc_table() 141 free (allocated); in elf64_sparc_slurp_one_reloc_table()
|
/toolchain/binutils/binutils-2.25/ld/scripttempl/ |
D | ip2k.sc | 45 /* Pre-allocated, pre-initialized data memory. */ 58 /* Pre-allocated, uninitialized data memory. */ 67 /* Pre-allocated PRAM data memory. */
|
12345678