/toolchain/binutils/binutils-2.25/libiberty/ |
D | splay-tree.c | 86 if (active->left) in splay_tree_delete_helper() 88 KDEL (active->left->key); in splay_tree_delete_helper() 89 VDEL (active->left->value); in splay_tree_delete_helper() 90 active->left->key = (splay_tree_key)pending; in splay_tree_delete_helper() 91 pending = (splay_tree_node)(active->left); in splay_tree_delete_helper() 119 p->left = tmp; in rotate_left() 130 tmp = n->left; in rotate_right() 131 n->left = p; in rotate_right() 157 c = n->left; in splay_tree_splay() 167 || (cmp2 < 0 && !c->left) in splay_tree_splay() [all …]
|
D | fibheap.c | 51 #define fibnode_insert_before(a, b) fibnode_insert_after (a->left, b) 69 node->left = node; in fibnode_new() 161 a_root->left->right = b_root; in fibheap_union() 162 b_root->left->right = a_root; in fibheap_union() 163 temp = a_root->left; in fibheap_union() 164 a_root->left = b_root->left; in fibheap_union() 165 b_root->left = temp; in fibheap_union() 334 node->left = node; in fibheap_ins_root() 348 if (node->left == node) in fibheap_rem_root() 452 a->left = b; in fibnode_insert_after() [all …]
|
D | cp-demint.c | 61 struct demangle_component *left, in cplus_demangle_fill_component() argument 123 p->u.s_binary.left = left; in cplus_demangle_fill_component()
|
/toolchain/binutils/binutils-2.25/gprof/ |
D | sym_ids.c | 47 struct match left, right; member 186 parse_spec (id->spec, &id->left.sym); in parse_id() 191 printf ("%s:", id->left.sym.file ? id->left.sym.file->name : "*"); in parse_id() 193 if (id->left.sym.name) in parse_id() 194 printf ("%s", id->left.sym.name); in parse_id() 195 else if (id->left.sym.line_num) in parse_id() 196 printf ("%d", id->left.sym.line_num); in parse_id() 278 Sym *sym, *left, *right; in sym_id_parse() local 291 if (match (&id->left.sym, sym)) in sym_id_parse() 292 extend_match (&id->left, sym, &syms[id->which_table], FALSE); in sym_id_parse() [all …]
|
D | cg_print.c | 139 cmp_member (Sym *left, Sym *right) in cmp_member() argument 141 double left_time = left->cg.prop.self + left->cg.prop.child; in cmp_member() 143 unsigned long left_calls = left->ncalls + left->cg.self_calls; in cmp_member() 225 cmp_arc (Arc *left, Arc *right) in cmp_arc() argument 227 Sym *left_parent = left->parent; in cmp_arc() 228 Sym *left_child = left->child; in cmp_arc() 238 printf (" %f + %f %lu/%lu\n", left->time, left->child_time, in cmp_arc() 239 left->count, left_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 | 59 const Sym *left = *(const Sym **) lp; 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() 87 const Sym *left = *(const Sym **) lp; in cmp_ncalls() local 90 if (!left) in cmp_ncalls() 95 if (left->ncalls < right->ncalls) in cmp_ncalls() [all …]
|
D | cg_arcs.c | 156 const Sym *left = *(const Sym **) lp; in cmp_topo() local 159 return left->cg.top_order - right->cg.top_order; in cmp_topo() 540 const Sym *left = *(const Sym **) lp; in cmp_total() local 544 diff = (left->cg.prop.self + left->cg.prop.child) in cmp_total() 554 if (!left->name && left->cg.cyc.num != 0) in cmp_total() 562 if (!left->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 | 63 const Sym *left = (const Sym *) lp; 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 | 540 const Sym *left = *(const Sym **) lp; 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/bfd/ |
D | mep-relocs.pl | 104 my ($bits, $left, $right, $ci, $c, $cv); 106 $left = 0; 110 $left++; 112 $left = 0; 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; } [all …]
|
/toolchain/binutils/binutils-2.25/gas/ |
D | expr.c | 2078 valueT left, right; in resolve_expression() local 2090 left = 0; in resolve_expression() 2095 if (!snapshot_symbol (&add_symbol, &left, &seg_left, &frag_left)) in resolve_expression() 2103 if (!snapshot_symbol (&add_symbol, &left, &seg_left, &frag_left)) in resolve_expression() 2110 left = !left; in resolve_expression() 2112 left = -left; in resolve_expression() 2114 left = ~left; in resolve_expression() 2137 if (!snapshot_symbol (&add_symbol, &left, &seg_left, &frag_left) in resolve_expression() 2153 final_val += left; in resolve_expression() 2154 left = right; in resolve_expression() [all …]
|
D | symbols.c | 973 report_op_error (symbolS *symp, symbolS *left, operatorT op, symbolS *right) in report_op_error() argument 977 segT seg_left = left ? S_GET_SEGMENT (left) : 0; in report_op_error() 1013 if (left) in report_op_error() 1026 if (left) in report_op_error() 1134 offsetT left, right; in resolve_symbol_value() local 1169 left = resolve_symbol_value (add_symbol); in resolve_symbol_value() 1245 final_val += symp->sy_frag->fr_address + left; in resolve_symbol_value() 1252 final_val += symp->sy_frag->fr_address + left; in resolve_symbol_value() 1265 left = resolve_symbol_value (add_symbol); in resolve_symbol_value() 1280 left = -left; in resolve_symbol_value() [all …]
|
D | ehopt.c | 373 int left = (d->aug_size -= *pnbytes); in check_eh_frame() local 374 if (left == 0) in check_eh_frame() 376 else if (left < 0) in check_eh_frame()
|
/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) \ 449 uint64_t left = this->left_value(eei, &left_section, \ 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 656 : Binary_expression(left, right) in Max_expression() [all …]
|
D | yyscript.y | 87 %left OROR 88 %left ANDAND 89 %left '|' 90 %left '^' 91 %left '&' 92 %left EQ NE 93 %left '<' '>' LE GE 94 %left LSHIFT RSHIFT 95 %left '+' '-' 96 %left '*' '/' '%'
|
/toolchain/binutils/binutils-2.25/intl/ |
D | plural.y | 63 struct expression *left, 125 new_exp_2 (op, left, right) in new_exp_2() argument 127 struct expression *left; 132 args[0] = left; 160 %left '|' /* || */ 161 %left '&' /* && */ 162 %left EQUOP2 /* == != */ 163 %left CMPOP2 /* < > <= >= */ 164 %left ADDOP2 /* + - */ 165 %left MULOP2 /* * / % */
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cr16/ |
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/gas/testsuite/gas/pe/ |
D | set.d | 4 # Ensure that we stick an entry for the left hand side of a set directive 5 # depending on the name of the left hand side.
|
/toolchain/binutils/binutils-2.25/ld/ |
D | ldgram.y | 112 %left <token> OROR 113 %left <token> ANDAND 114 %left <token> '|' 115 %left <token> '^' 116 %left <token> '&' 117 %left <token> EQ NE 118 %left <token> '<' '>' LE GE 119 %left <token> LSHIFT RSHIFT 121 %left <token> '+' '-' 122 %left <token> '*' '/' '%' [all …]
|
/toolchain/binutils/binutils-2.25/cpu/ |
D | sh64-media.cpu | 76 (dshmf f-left "Left register" () 25 6) 81 (name f-left-right) 85 (subfields f-left f-right) 87 (set (ifield f-left) 88 (and (ifield f-left-right) 63)) 90 (and (ifield f-left-right) 63)))) 91 (extract (set (ifield f-left-right) (ifield f-left))) 137 (dshmop rm "Left general purpose reg" () h-gr f-left) 141 (dshmop frg "Left single precision register" () h-fr f-left) 144 (dshmop frgh "Single precision register pair" () h-fr f-left-right) [all …]
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-pe/ |
D | exports.s | 1 # Deliberately left empty.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/ |
D | blank.s | 1 @ this file left intentionally blank
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/ |
D | blank.s | 1 @ this file left intentionally blank
|
/toolchain/binutils/binutils-2.25/include/ |
D | demangle.h | 554 struct demangle_component *left; member 581 struct demangle_component *left,
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-x86-64/ |
D | dwarfreloc.rd | 2 # The third parenthesized value was left unrelocated (0x0) before.
|