/toolchain/binutils/binutils-2.25/gas/testsuite/gas/z8k/ |
D | ret-cc.s | 3 ret f 4 ret lt 5 ret le 6 ret ule 7 ret ov 8 ret pe 9 ret mi 10 ret eq 11 ret z 12 ret c [all …]
|
D | ret-cc.d | 10 0: 9e00 ret f 11 2: 9e01 ret lt 12 4: 9e02 ret le 13 6: 9e03 ret ule 14 8: 9e04 ret ov/pe 15 a: 9e04 ret ov/pe 16 c: 9e05 ret mi 17 e: 9e06 ret eq 18 10: 9e06 ret eq 19 12: 9e07 ret c/ult [all …]
|
/toolchain/binutils/binutils-2.25/libiberty/ |
D | simple-object.c | 170 simple_object_read *ret; in simple_object_start_read() local 172 ret = XNEW (simple_object_read); in simple_object_start_read() 173 ret->descriptor = descriptor; in simple_object_start_read() 174 ret->offset = offset; in simple_object_start_read() 175 ret->functions = format_functions[i]; in simple_object_start_read() 176 ret->data = data; in simple_object_start_read() 177 return ret; in simple_object_start_read() 259 simple_object_attributes *ret; in simple_object_fetch_attributes() local 264 ret = XNEW (simple_object_attributes); in simple_object_fetch_attributes() 265 ret->functions = sobj->functions; in simple_object_fetch_attributes() [all …]
|
D | objalloc.c | 88 struct objalloc *ret; in objalloc_create() local 91 ret = (struct objalloc *) malloc (sizeof *ret); in objalloc_create() 92 if (ret == NULL) in objalloc_create() 95 ret->chunks = (PTR) malloc (CHUNK_SIZE); in objalloc_create() 96 if (ret->chunks == NULL) in objalloc_create() 98 free (ret); in objalloc_create() 102 chunk = (struct objalloc_chunk *) ret->chunks; in objalloc_create() 106 ret->current_ptr = (char *) chunk + CHUNK_HEADER_SIZE; in objalloc_create() 107 ret->current_space = CHUNK_SIZE - CHUNK_HEADER_SIZE; in objalloc_create() 109 return ret; in objalloc_create() [all …]
|
D | cp-demangle.c | 1413 struct demangle_component *ret; in d_nested_name() local 1420 pret = d_cv_qualifiers (di, &ret, 1); in d_nested_name() 1434 d_left (rqual) = ret; in d_nested_name() 1435 ret = rqual; in d_nested_name() 1441 return ret; in d_nested_name() 1459 struct demangle_component *ret = NULL; in d_prefix() local 1496 if (ret == NULL) in d_prefix() 1504 return ret; in d_prefix() 1510 if (ret == NULL) in d_prefix() 1518 if (ret == NULL) in d_prefix() [all …]
|
D | fibheap.c | 181 void *ret = NULL; in fibheap_extract_min() local 189 ret = z->data; in fibheap_extract_min() 193 return ret; in fibheap_extract_min() 258 void *ret = node->data; in fibheap_delete_node() local 269 return ret; in fibheap_delete_node() 293 fibnode_t ret = heap->min; in fibheap_extr_min_node() local 298 for (x = ret->child, orig = NULL; x != orig && x != NULL; x = y) in fibheap_extr_min_node() 308 fibheap_rem_root (heap, ret); in fibheap_extr_min_node() 318 heap->min = ret->right; in fibheap_extr_min_node() 322 return ret; in fibheap_extr_min_node() [all …]
|
/toolchain/binutils/binutils-2.25/gold/testsuite/ |
D | ifuncmain3.c | 44 int *ret; in main() local 69 ret = dlsym (h, "ret_foo"); in main() 70 if (ret == NULL) in main() 81 if (*ret != -30 || (*p) () != *ret) in main() 91 ret = dlsym (h, "ret_foo_hidden"); in main() 92 if (ret == NULL) in main() 101 if (*ret != 1 || (*p) () != *ret) in main() 111 ret = dlsym (h, "ret_foo_protected"); in main() 112 if (ret == NULL) in main() 123 if (*ret != 0 || (*p) () != *ret) in main()
|
D | ifunc-sel.h | 28 register void *ret __asm__ ("r3"); in ifunc_sel() 46 : "=&b" (ret), "=&b" (temp1), "=&b" (temp2) in ifunc_sel() 48 return ret; in ifunc_sel() 77 register void *ret __asm__ ("r3"); in ifunc_one() 85 : "=&b" (ret), "=&r" (temp) in ifunc_one() 87 return ret; in ifunc_one()
|
/toolchain/binutils/binutils-2.25/opcodes/ |
D | v850-opc.c | 98 unsigned long ret = (insn & 0x003c0000) >> (16+2); in extract_i5div1() local 99 ret = 32 - (ret * 2); in extract_i5div1() 102 *invalid = (ret > 30 || ret < 2) ? 1 : 0; in extract_i5div1() 103 return ret; in extract_i5div1() 127 unsigned long ret = (insn & 0x003c0000) >> (16+2); in extract_i5div2() local 128 ret = 32 - (ret * 2); in extract_i5div2() 131 *invalid = (ret > 30 || ret < 4) ? 1 : 0; in extract_i5div2() 132 return ret; in extract_i5div2() 156 unsigned long ret = (insn & 0x003c0000) >> (16+2); in extract_i5div3() local 157 ret = 32 - (ret * 2); in extract_i5div3() [all …]
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/z80/ |
D | branch.s | 37 ret 38 ret c 39 ret nc 40 ret z 41 ret nz 42 ret pe 43 ret po 44 ret m 45 ret p
|
D | branch.d | 36 [ ]+47:[ ]+c9[ ]+ret 37 [ ]+48:[ ]+d8[ ]+ret c 38 [ ]+49:[ ]+d0[ ]+ret nc 39 [ ]+4a:[ ]+c8[ ]+ret z 40 [ ]+4b:[ ]+c0[ ]+ret nz 41 [ ]+4c:[ ]+e8[ ]+ret pe 42 [ ]+4d:[ ]+e0[ ]+ret po 43 [ ]+4e:[ ]+f8[ ]+ret m 44 [ ]+4f:[ ]+f0[ ]+ret p
|
/toolchain/binutils/binutils-2.25/bfd/ |
D | hash.c | 620 void * ret; in bfd_hash_allocate() local 622 ret = objalloc_alloc ((struct objalloc *) table->memory, size); in bfd_hash_allocate() 623 if (ret == NULL && size != 0) in bfd_hash_allocate() 625 return ret; in bfd_hash_allocate() 728 struct strtab_hash_entry *ret = (struct strtab_hash_entry *) entry; in strtab_hash_newfunc() local 732 if (ret == NULL) in strtab_hash_newfunc() 733 ret = (struct strtab_hash_entry *) bfd_hash_allocate (table, in strtab_hash_newfunc() 734 sizeof (* ret)); in strtab_hash_newfunc() 735 if (ret == NULL) in strtab_hash_newfunc() 739 ret = (struct strtab_hash_entry *) in strtab_hash_newfunc() [all …]
|
D | cache.c | 149 bfd_boolean ret; in bfd_cache_delete() local 152 ret = TRUE; in bfd_cache_delete() 155 ret = FALSE; in bfd_cache_delete() 164 return ret; in bfd_cache_delete() 431 void *ret = (void *) -1; in cache_bmmap() local 445 return ret; in cache_bmmap() 458 ret = mmap (addr, pg_len, prot, flags, fileno (f), pg_offset); in cache_bmmap() 459 if (ret == (void *) -1) in cache_bmmap() 463 *map_addr = ret; in cache_bmmap() 465 ret = (char *) ret + (offset & pagesize_m1); in cache_bmmap() [all …]
|
/toolchain/binutils/binutils-2.25/binutils/ |
D | windmc.c | 178 FILE *ret; in mc_create_path_text_file() local 188 if ((ret = fopen (hsz, "wb")) == NULL) in mc_create_path_text_file() 191 return ret; in mc_create_path_text_file() 283 mc_node *ret; in mc_add_node() local 285 ret = res_alloc (sizeof (mc_node)); in mc_add_node() 286 memset (ret, 0, sizeof (mc_node)); in mc_add_node() 288 mc_nodes = ret; in mc_add_node() 295 h->next = ret; in mc_add_node() 297 return ret; in mc_add_node() 303 mc_node_lang *ret, *h, *p; in mc_add_node_lang() local [all …]
|
D | rdcoff.c | 242 debug_type ret; in parse_coff_base_type() local 258 ret = debug_make_void_type (dhandle); in parse_coff_base_type() 263 ret = debug_make_void_type (dhandle); in parse_coff_base_type() 268 ret = debug_make_int_type (dhandle, 1, FALSE); in parse_coff_base_type() 273 ret = debug_make_int_type (dhandle, 2, FALSE); in parse_coff_base_type() 279 ret = debug_make_int_type (dhandle, 4, FALSE); in parse_coff_base_type() 284 ret = debug_make_int_type (dhandle, 4, FALSE); in parse_coff_base_type() 289 ret = debug_make_float_type (dhandle, 4); in parse_coff_base_type() 294 ret = debug_make_float_type (dhandle, 8); in parse_coff_base_type() 299 ret = debug_make_float_type (dhandle, 12); in parse_coff_base_type() [all …]
|
D | winduni.c | 716 size_t ret; in iconv_onechar() local 720 ret = iconv (cd, & tmp_s, & s_left, & tmp_d, & d_left); in iconv_onechar() 722 if (ret != (size_t) -1) in iconv_onechar() 748 rc_uint_type ret = 0; in wind_MultiByteToWideChar() local 759 ret = (rc_uint_type) MultiByteToWideChar (cp, conv_flags, in wind_MultiByteToWideChar() 762 ret *= sizeof (unichar); in wind_MultiByteToWideChar() 799 ret += l_tmp; in wind_MultiByteToWideChar() 810 ret = 0; in wind_MultiByteToWideChar() 811 ret = strlen (mb) + 1; in wind_MultiByteToWideChar() 812 ret *= sizeof (unichar); in wind_MultiByteToWideChar() [all …]
|
D | elfedit.c | 293 int ret; in process_archive() local 313 ret = 1; in process_archive() 317 ret = 0; in process_archive() 339 ret = 1; in process_archive() 346 ret = 1; in process_archive() 360 ret = 1; in process_archive() 369 ret = 1; in process_archive() 381 ret = 1; in process_archive() 391 ret = 1; in process_archive() 397 ret |= process_object (qualified_name, member_file); in process_archive() [all …]
|
D | rename.c | 142 int ret = 0; in smart_rename() local 153 ret = rename (from, to); in smart_rename() 154 if (ret != 0) in smart_rename() 170 ret = rename (from, to); in smart_rename() 171 if (ret == 0) in smart_rename() 201 ret = simple_copy (from, to); in smart_rename() 202 if (ret != 0) in smart_rename() 211 return ret; in smart_rename()
|
/toolchain/binutils/binutils-2.25/gas/ |
D | hash.c | 88 struct hash_control *ret; in hash_new_sized() local 90 ret = (struct hash_control *) xmalloc (sizeof *ret); in hash_new_sized() 91 obstack_begin (&ret->memory, chunksize); in hash_new_sized() 93 ret->table = (struct hash_entry **) obstack_alloc (&ret->memory, alloc); in hash_new_sized() 94 memset (ret->table, 0, alloc); in hash_new_sized() 95 ret->size = size; in hash_new_sized() 98 ret->lookups = 0; in hash_new_sized() 99 ret->hash_compares = 0; in hash_new_sized() 100 ret->string_compares = 0; in hash_new_sized() 101 ret->insertions = 0; in hash_new_sized() [all …]
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/ |
D | regval.s | 6 br.ret.sptk rp 12 br.ret.sptk rp 19 br.ret.sptk rp 26 br.ret.sptk rp 33 br.ret.sptk rp 40 br.ret.sptk rp 47 br.ret.sptk rp
|
/toolchain/binutils/binutils-2.25/ld/emultempl/ |
D | nios2elf.em | 89 bfd_boolean ret; 96 ret = hook_in_stub (info, &constructor_list.head, afterp); 97 if (ret) 98 return ret; 102 ret = hook_in_stub (info, 105 if (ret) 106 return ret; 110 ret = hook_in_stub (info, &l->wild_statement.children.head, afterp); 111 if (ret) 112 return ret; [all …]
|
D | metagelf.em | 83 bfd_boolean ret; 90 ret = hook_in_stub (info, &constructor_list.head); 91 if (ret) 92 return ret; 96 ret = hook_in_stub (info, 98 if (ret) 99 return ret; 103 ret = hook_in_stub (info, &l->wild_statement.children.head); 104 if (ret) 105 return ret; [all …]
|
/toolchain/binutils/binutils-2.25/gold/ |
D | mremap.c | 55 void *ret; in gold_mremap() local 57 ret = mmap (0, new_size, PROT_READ | PROT_WRITE, in gold_mremap() 59 if (ret == MAP_FAILED) in gold_mremap() 60 return ret; in gold_mremap() 61 memcpy (ret, old_address, in gold_mremap() 64 return ret; in gold_mremap()
|
D | target-select.cc | 112 Target* ret = p->recognize(input_file, offset, in select_target() local 114 if (ret != NULL) in select_target() 115 return ret; in select_target() 132 Target* ret = p->recognize_by_bfd_name(name); in select_target_by_bfd_name() local 133 if (ret != NULL) in select_target_by_bfd_name() 134 return ret; in select_target_by_bfd_name() 151 Target* ret = p->recognize_by_emulation(name); in select_target_by_emulation() local 152 if (ret != NULL) in select_target_by_emulation() 153 return ret; in select_target_by_emulation()
|
D | ffsll.c | 37 int ret; in ffsll() local 40 ret = 0; in ffsll() 43 ret = 1; in ffsll() 45 ++ret; in ffsll() 47 return ret; in ffsll()
|