/toolchain/binutils/binutils-2.25/libiberty/ |
D | splay-tree.c | 93 if (active->right) in splay_tree_delete_helper() 95 KDEL (active->right->key); in splay_tree_delete_helper() 96 VDEL (active->right->value); in splay_tree_delete_helper() 97 active->right->key = (splay_tree_key)pending; in splay_tree_delete_helper() 98 pending = (splay_tree_node)(active->right); in splay_tree_delete_helper() 117 tmp = n->right; in rotate_left() 118 n->right = p; in rotate_left() 132 p->right = tmp; in rotate_right() 159 c = n->right; in splay_tree_splay() 168 || (cmp2 > 0 && !c->right)) in splay_tree_splay() [all …]
|
D | fibheap.c | 70 node->right = node; in fibnode_new() 161 a_root->left->right = b_root; in fibheap_union() 162 b_root->left->right = a_root; in fibheap_union() 302 y = x->right; in fibheap_extr_min_node() 318 heap->min = ret->right; in fibheap_extr_min_node() 335 node->right = node; in fibheap_ins_root() 449 if (a == a->right) in fibnode_insert_after() 451 a->right = b; in fibnode_insert_after() 453 b->right = a; in fibnode_insert_after() 458 b->right = a->right; in fibnode_insert_after() [all …]
|
D | cp-demint.c | 62 struct demangle_component *right) in cplus_demangle_fill_component() argument 113 if (right != NULL) in cplus_demangle_fill_component() 124 p->u.s_binary.right = right; in cplus_demangle_fill_component()
|
/toolchain/binutils/binutils-2.25/gprof/ |
D | sym_ids.c | 47 struct match left, right; member 182 parse_spec (slash + 1, &id->right.sym); in parse_id() 203 id->right.sym.file ? id->right.sym.file->name : "*"); in parse_id() 205 if (id->right.sym.name) in parse_id() 206 printf ("%s", id->right.sym.name); in parse_id() 207 else if (id->right.sym.line_num) in parse_id() 208 printf ("%d", id->right.sym.line_num); in parse_id() 278 Sym *sym, *left, *right; in sym_id_parse() local 294 if (id->has_right && match (&id->right.sym, sym)) in sym_id_parse() 295 extend_match (&id->right, sym, &right_ids, FALSE); in sym_id_parse() [all …]
|
D | cg_print.c | 139 cmp_member (Sym *left, Sym *right) in cmp_member() argument 142 double right_time = right->cg.prop.self + right->cg.prop.child; in cmp_member() 144 unsigned long right_calls = right->ncalls + right->cg.self_calls; in cmp_member() 225 cmp_arc (Arc *left, Arc *right) in cmp_arc() argument 229 Sym *right_parent = right->parent; in cmp_arc() 230 Sym *right_child = right->child; in cmp_arc() 244 printf (" %f + %f %lu/%lu\n", right->time, right->child_time, in cmp_arc() 245 right->count, right_child->ncalls); in cmp_arc() 263 if (left->count < right->count) in cmp_arc() 266 if (left->count > right->count) in cmp_arc() [all …]
|
D | basic_blocks.c | 60 const Sym *right = *(const Sym **) rp; in cmp_bb() local 62 if (left->file && right->file) in cmp_bb() 64 r = filename_cmp (left->file->name, right->file->name); in cmp_bb() 69 if (left->line_num != right->line_num) in cmp_bb() 70 return left->line_num - right->line_num; in cmp_bb() 73 if (left->addr < right->addr) in cmp_bb() 75 else if (left->addr > right->addr) in cmp_bb() 88 const Sym *right = *(const Sym **) rp; in cmp_ncalls() local 92 else if (!right) in cmp_ncalls() 95 if (left->ncalls < right->ncalls) in cmp_ncalls() [all …]
|
D | cg_arcs.c | 157 const Sym *right = *(const Sym **) rp; in cmp_topo() local 159 return left->cg.top_order - right->cg.top_order; in cmp_topo() 541 const Sym *right = *(const Sym **) rp; in cmp_total() local 545 - (right->cg.prop.self + right->cg.prop.child); in cmp_total() 558 if (!right->name && right->cg.cyc.num != 0) in cmp_total() 566 if (!right->name) in cmp_total() 570 if (left->name[0] != '_' && right->name[0] == '_') in cmp_total() 574 if (left->name[0] == '_' && right->name[0] != '_') in cmp_total() 578 if (left->ncalls > right->ncalls) in cmp_total() 582 if (left->ncalls < right->ncalls) in cmp_total() [all …]
|
D | symtab.c | 64 const Sym *right = (const Sym *) rp; in cmp_addr() local 66 if (left->addr > right->addr) in cmp_addr() 68 else if (left->addr < right->addr) in cmp_addr() 71 if (left->is_func != right->is_func) in cmp_addr() 72 return right->is_func - left->is_func; in cmp_addr() 74 return left->is_static - right->is_static; in cmp_addr()
|
D | hist.c | 541 const Sym *right = *(const Sym **) rp; in cmp_time() local 544 time_diff = right->hist.time - left->hist.time; in cmp_time() 552 if (right->ncalls > left->ncalls) in cmp_time() 555 if (right->ncalls < left->ncalls) in cmp_time() 558 return strcmp (left->name, right->name); in cmp_time()
|
/toolchain/binutils/binutils-2.25/gas/ |
D | expr.c | 1769 expressionS right; in expr() local 1796 right.X_md = 0; in expr() 1797 rightseg = expr (op_rank[(int) op_left], &right, mode); in expr() 1798 if (right.X_op == O_absent) in expr() 1801 right.X_op = O_constant; in expr() 1802 right.X_add_number = 0; in expr() 1803 right.X_add_symbol = NULL; in expr() 1804 right.X_op_symbol = NULL; in expr() 1847 if (right.X_op == O_big) in expr() 1849 if (right.X_add_number > 0) in expr() [all …]
|
D | symbols.c | 973 report_op_error (symbolS *symp, symbolS *left, operatorT op, symbolS *right) in report_op_error() argument 978 segT seg_right = S_GET_SEGMENT (right); in report_op_error() 1134 offsetT left, right; in resolve_symbol_value() local 1311 right = resolve_symbol_value (op_symbol); in resolve_symbol_value() 1321 final_val += right; in resolve_symbol_value() 1328 left = right; in resolve_symbol_value() 1337 final_val -= right; in resolve_symbol_value() 1376 if ((op == O_divide || op == O_modulus) && right == 0) in resolve_symbol_value() 1392 right = 1; in resolve_symbol_value() 1397 case O_multiply: left *= right; break; in resolve_symbol_value() [all …]
|
D | messages.c | 360 addressT right = max & -max; in as_internal_value_out_of_range() local 369 prefix, (int) val, (int) right); in as_internal_value_out_of_range() 372 prefix, (int) val, (int) right); in as_internal_value_out_of_range()
|
/toolchain/binutils/binutils-2.25/bfd/ |
D | mep-relocs.pl | 104 my ($bits, $left, $right, $ci, $c, $cv); 107 $right = 32; 115 $right = $cv unless $right < $cv; 123 return ($bits, $left, $right, $mask, $rmask); 134 ($bits, $left, $right, $mask) = mask2shifts ($mask); 143 $c, $bytesize, $bits, $left, $right, $pcrel, $overflow, $mask); 177 ($bits, $left, $right, $mask, $rmask) = mask2shifts ($mask); 178 if ($left > $right) { $left -= $right; $right = 0; } 179 else { $right -= $left; $left = 0; } 187 } elsif ($right) { [all …]
|
/toolchain/binutils/binutils-2.25/gold/ |
D | expression.cc | 355 Binary_expression(Expression* left, Expression* right) in Binary_expression() argument 356 : left_(left), right_(right) in Binary_expression() 440 Binary_ ## NAME(Expression* left, Expression* right) \ 441 : Binary_expression(left, right) \ 453 uint64_t right = this->right_value(eei, &right_section, \ 478 if (IS_DIV && right == 0) \ 483 return left OPERATOR right; \ 498 script_exp_binary_ ## NAME(Expression* left, Expression* right) \ 500 return new Binary_ ## NAME(left, right); \ 655 Max_expression(Expression* left, Expression* right) in Max_expression() argument [all …]
|
/toolchain/binutils/binutils-2.25/intl/ |
D | plural.y | 61 struct expression *right)); 64 struct expression *right)); 114 new_exp_1 (op, right) in new_exp_1() argument 116 struct expression *right; 120 args[0] = right; 125 new_exp_2 (op, left, right) in new_exp_2() argument 128 struct expression *right; 133 args[1] = right; 159 %right '?' /* ? */ 166 %right '!' /* ! */
|
D | plural.c | 82 struct expression *right)); 85 struct expression *right)); 135 new_exp_1 (op, right) in new_exp_1() argument 137 struct expression *right; 141 args[0] = right; 146 new_exp_2 (op, left, right) in new_exp_2() argument 149 struct expression *right; 154 args[1] = right;
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cr16/ |
D | lsh_test.s | 5 # LSHB cnt(right -), reg 22 # LSHW cnt (right -), reg 40 # LSHD cnt (right -), regp
|
D | ash_test.s | 5 # ASHUB cnt(left +)/cnt (right -), reg 22 # ASHUW cnt(left +)/cnt (right -), reg 40 # ASHUD cnt(left +)/cnt (right -), regp
|
/toolchain/binutils/binutils-2.25/cpu/ |
D | sh64-media.cpu | 77 (dshmf f-right "Right register" () 15 6) 81 (name f-left-right) 82 (comment "Left and right matched register pair") 85 (subfields f-left f-right) 88 (and (ifield f-left-right) 63)) 89 (set (ifield f-right) 90 (and (ifield f-left-right) 63)))) 91 (extract (set (ifield f-left-right) (ifield f-left))) 138 (dshmop rn "Right general purpose reg" () h-gr f-right) 142 (dshmop frh "Right single precision register" () h-fr f-right) [all …]
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/d30v/ |
D | serial.s | 3 # In the following examples, the right-subinstructions 6 trap r21 -> add r2, r0, r0 ; right instruction will never be executed.
|
D | serial.l | 11 3 # In the following examples, the right-subinstructions 14 6 \?\?\?\? ........ trap r21 -> add r2, r0, r0 ; right instruction will never be executed.
|
/toolchain/binutils/binutils-2.25/gas/doc/ |
D | c-cr16.texi | 80 This loads the address of _myfun, shifted right by 1, into r1. 84 This loads the address of _myfun, shifted right by 1, into register-pair r2-r1. 91 This .long directive, the address of _myfunc, shifted right by 1 at link time. 99 …This loads the address of _myfun, shifted right by 1, into global offset table (ie GOT) and its of…
|
D | c-d10v.texi | 120 Sequential with instruction on the right first. 128 Execute these sequentially. The instruction on the right is in the right 131 Execute these reverse-sequentially. The instruction on the right is in the right 145 second instruction will always go into right container. 234 shifted right by 2. This is used in situations such as loading a register
|
D | c-d30v.texi | 121 Sequential with instruction on the right first. 131 Execute these sequentially. The instruction on the right is in the right 135 Execute these reverse-sequentially. The instruction on the right is in the right 153 container and the @samp{mulx} instruction in the right container. 159 left container and the second instruction goes into right container.
|
/toolchain/binutils/binutils-2.25/include/ |
D | demangle.h | 556 struct demangle_component *right; member 582 struct demangle_component *right);
|