Home
last modified time | relevance | path

Searched refs:right (Results 1 – 25 of 546) sorted by relevance

12345678910>>...22

/dragonfly/contrib/ldns/
H A Drbtree.c118 ldns_rbnode_t *right = node->right; in ldns_rbtree_rotate_left() local
119 node->right = right->left; in ldns_rbtree_rotate_left()
129 node->parent->right = right; in ldns_rbtree_rotate_left()
132 rbtree->root = right; in ldns_rbtree_rotate_left()
134 right->left = node; in ldns_rbtree_rotate_left()
135 node->parent = right; in ldns_rbtree_rotate_left()
161 left->right = node; in ldns_rbtree_rotate_right()
262 node = node->right; in ldns_rbtree_insert()
326 if(parent->right == old) parent->right = new; in change_parent_ptr()
382 swap_np(&to_delete->right, &smright->right); in ldns_rbtree_delete()
[all …]
/dragonfly/contrib/gcc-8.0/libgomp/
H A Dsplay-tree.c48 tmp = n->right; in rotate_left()
49 n->right = p; in rotate_left()
63 p->right = tmp; in rotate_right()
90 c = n->right; in splay_tree_splay()
116 rotate_right (&n->right, c, c->right); in splay_tree_splay()
154 node->right = node->left->right; in splay_tree_insert()
180 right = sp->root->right; in splay_tree_remove()
190 if (right) in splay_tree_remove()
193 left = left->right; in splay_tree_remove()
194 left->right = right; in splay_tree_remove()
[all …]
/dragonfly/share/misc/
H A Doperator5 * / % left to right
6 + - left to right
7 << >> left to right
9 == != left to right
10 & left to right
11 ^ left to right
12 | left to right
13 && left to right
14 || left to right
15 ?: right to left
[all …]
/dragonfly/contrib/binutils-2.27/libiberty/
H A Dsplay-tree.c117 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()
185 rotate_right (&n->right, c, c->right); in splay_tree_splay()
395 node->right = node->left->right; in splay_tree_insert()
423 right = sp->root->right; in splay_tree_remove()
438 if (right) in splay_tree_remove()
442 left->right = right; in splay_tree_remove()
446 sp->root = right; in splay_tree_remove()
[all …]
H A Dfibheap.c70 node->right = node; in fibnode_new()
302 y = x->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()
459 a->right->left = b; in fibnode_insert_after()
460 a->right = b; in fibnode_insert_after()
479 node->left->right = node->right; in fibnode_remove()
[all …]
/dragonfly/contrib/gdb-7/libiberty/
H A Dsplay-tree.c117 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()
185 rotate_right (&n->right, c, c->right); in splay_tree_splay()
395 node->right = node->left->right; in splay_tree_insert()
423 right = sp->root->right; in splay_tree_remove()
438 if (right) in splay_tree_remove()
442 left->right = right; in splay_tree_remove()
446 sp->root = right; in splay_tree_remove()
[all …]
/dragonfly/contrib/gcc-4.7/libiberty/
H A Dsplay-tree.c117 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()
185 rotate_right (&n->right, c, c->right); in splay_tree_splay()
395 node->right = node->left->right; in splay_tree_insert()
423 right = sp->root->right; in splay_tree_remove()
438 if (right) in splay_tree_remove()
442 left->right = right; in splay_tree_remove()
446 sp->root = right; in splay_tree_remove()
[all …]
H A Dfibheap.c70 node->right = node; in fibnode_new()
302 y = x->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()
459 a->right->left = b; in fibnode_insert_after()
460 a->right = b; in fibnode_insert_after()
479 node->left->right = node->right; in fibnode_remove()
[all …]
/dragonfly/contrib/gcc-8.0/libiberty/
H A Dsplay-tree.c116 tmp = n->right; in rotate_left()
117 n->right = p; in rotate_left()
131 p->right = tmp; in rotate_right()
158 c = n->right; in splay_tree_splay()
184 rotate_right (&n->right, c, c->right); in splay_tree_splay()
394 node->right = node->left->right; in splay_tree_insert()
422 right = sp->root->right; in splay_tree_remove()
437 if (right) in splay_tree_remove()
441 left->right = right; in splay_tree_remove()
445 sp->root = right; in splay_tree_remove()
[all …]
H A Dfibheap.c70 node->right = node; in fibnode_new()
302 y = x->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()
459 a->right->left = b; in fibnode_insert_after()
460 a->right = b; in fibnode_insert_after()
479 node->left->right = node->right; in fibnode_remove()
[all …]
/dragonfly/contrib/wpa_supplicant/src/crypto/
H A Ddes-internal.c324 right = block[1]; in desfunc()
327 right ^= work; in desfunc()
331 right ^= work; in desfunc()
336 right ^= (work << 2); in desfunc()
342 right = ROLc(right, 1); in desfunc()
346 right ^= work; in desfunc()
373 right = RORc(right, 1); in desfunc()
376 right ^= work; in desfunc()
379 right ^= work; in desfunc()
383 right ^= work; in desfunc()
[all …]
/dragonfly/contrib/binutils-2.34/libiberty/
H A Dsplay-tree.c119 tmp = n->right; in rotate_left()
120 n->right = p; in rotate_left()
134 p->right = tmp; in rotate_right()
161 c = n->right; in splay_tree_splay()
187 rotate_right (&n->right, c, c->right); in splay_tree_splay()
404 node->right = node->left->right; in splay_tree_insert()
432 right = sp->root->right; in splay_tree_remove()
449 if (right) in splay_tree_remove()
453 left->right = right; in splay_tree_remove()
457 sp->root = right; in splay_tree_remove()
[all …]
H A Dfibheap.c70 node->right = node; in fibnode_new()
302 y = x->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()
459 a->right->left = b; in fibnode_insert_after()
460 a->right = b; in fibnode_insert_after()
479 node->left->right = node->right; in fibnode_remove()
[all …]
/dragonfly/sys/dev/sound/pci/
H A Dspicds.c50 unsigned int left, right; member
295 if (right >= 100) in spicds_set()
298 right = 255; in spicds_set()
300 right = 127; in spicds_set()
304 right = right + 27; in spicds_set()
308 right = right * 255 / 100; in spicds_set()
311 right = right * 127 / 100; in spicds_set()
318 spicds_wrcd(codec, AK4524_RIPGA, right); in spicds_set()
325 spicds_wrcd(codec, AK4524_ROATT, right); in spicds_set()
332 spicds_wrcd(codec, AK4528_ROATT, right); in spicds_set()
[all …]
/dragonfly/contrib/binutils-2.34/gprof/
H A Dsym_ids.c47 struct match left, right; member
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()
278 Sym *sym, *left, *right; in sym_id_parse() local
337 for (right = id->right.first_match; right; right = right->next) in sym_id_parse()
346 right->file ? right->file->name : "*", in sym_id_parse()
347 right->name ? right->name : "*", in sym_id_parse()
348 (unsigned long) right->addr, in sym_id_parse()
[all …]
/dragonfly/contrib/binutils-2.27/gprof/
H A Dsym_ids.c47 struct match left, right; member
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()
278 Sym *sym, *left, *right; in sym_id_parse() local
337 for (right = id->right.first_match; right; right = right->next) in sym_id_parse()
346 right->file ? right->file->name : "*", in sym_id_parse()
347 right->name ? right->name : "*", in sym_id_parse()
348 (unsigned long) right->addr, in sym_id_parse()
[all …]
/dragonfly/contrib/binutils-2.34/gas/
H A Dexpr.c1758 expressionS right; in expr() local
1785 right.X_md = 0; in expr()
1871 add_to_result (resultP, right.X_add_number, right.X_extrabit); in expr()
1891 subtract_from_result (resultP, right.X_add_number, right.X_extrabit); in expr()
1901 subtract_from_result (resultP, right.X_add_number, right.X_extrabit); in expr()
1910 add_to_result (resultP, right.X_add_number, right.X_extrabit); in expr()
1996 add_to_result (resultP, right.X_add_number, right.X_extrabit); in expr()
2150 left = right; in resolve_expression()
2227 left = right; in resolve_expression()
2261 if (right == 0) in resolve_expression()
[all …]
/dragonfly/sys/netgraph7/tee/
H A Dng_tee.c76 struct hookinfo right; member
176 hinfo = &privdata->right; in ng_tee_newhook()
183 if (privdata->right.dest) in ng_tee_newhook()
184 privdata->right.dup = privdata->right.dest; in ng_tee_newhook()
189 if (privdata->right.dest) in ng_tee_newhook()
236 bcopy(&sc->right.stats, &stats->right, in ng_tee_rcvmsg()
237 sizeof(stats->right)); in ng_tee_rcvmsg()
246 bzero(&sc->right.stats, in ng_tee_rcvmsg()
384 sc->right.dest = sc->right.dup; in ng_tee_disconnect()
385 sc->right.dup = NULL; in ng_tee_disconnect()
[all …]
/dragonfly/contrib/binutils-2.27/gas/
H A Dexpr.c1762 expressionS right; in expr() local
1789 right.X_md = 0; in expr()
1868 add_to_result (resultP, right.X_add_number, right.X_extrabit); in expr()
1888 subtract_from_result (resultP, right.X_add_number, right.X_extrabit); in expr()
1898 subtract_from_result (resultP, right.X_add_number, right.X_extrabit); in expr()
1907 add_to_result (resultP, right.X_add_number, right.X_extrabit); in expr()
1993 add_to_result (resultP, right.X_add_number, right.X_extrabit); in expr()
2147 left = right; in resolve_expression()
2221 left = right; in resolve_expression()
2255 if (right == 0) in resolve_expression()
[all …]
/dragonfly/sys/netgraph/tee/
H A Dng_tee.c73 struct hookinfo right; member
178 sc->right.hook = hook; in ngt_newhook()
179 bzero(&sc->right.stats, sizeof(sc->right.stats)); in ngt_newhook()
180 hook->private = &sc->right; in ngt_newhook()
226 bcopy(&sc->right.stats, &stats->right, in ngt_rcvmsg()
227 sizeof(stats->right)); in ngt_rcvmsg()
236 bzero(&sc->right.stats, in ngt_rcvmsg()
237 sizeof(sc->right.stats)); in ngt_rcvmsg()
288 dest = &sc->right; in ngt_rcvdata()
289 } else if (hinfo == &sc->right) { in ngt_rcvdata()
[all …]
/dragonfly/games/arithmetic/
H A Darithmetic.c184 int left, op, right, result; in problem() local
188 right = 0; in problem()
192 right = getrandom(rangemax + 1, op, 1); in problem()
198 result = left + right; in problem()
202 left = right + result; in problem()
206 result = left * right; in problem()
209 right = getrandom(rangemax, op, 1) + 1; in problem()
211 left = right * result + random() % right; in problem()
222 printf("%d %c %d = ", left, op, right); in problem()
248 penalise(right, op, 1); in problem()
/dragonfly/contrib/binutils-2.34/gold/
H A Dexpression.cc384 : left_(left), right_(right) in Binary_expression()
704 : Binary_expression(left, right) in Max_expression()
727 if (left > right) in value()
729 else if (right > left) in value()
735 return std::max(left, right); in value()
755 : Binary_expression(left, right) in Min_expression()
778 if (left < right) in value()
780 else if (right < left) in value()
786 return std::min(left, right); in value()
905 : Binary_expression(left, right) in Align_expression()
[all …]
/dragonfly/contrib/binutils-2.27/gold/
H A Dexpression.cc372 : left_(left), right_(right) in Binary_expression()
677 : Binary_expression(left, right) in Max_expression()
700 if (left > right) in value()
702 else if (right > left) in value()
708 return std::max(left, right); in value()
728 : Binary_expression(left, right) in Min_expression()
751 if (left < right) in value()
753 else if (right < left) in value()
759 return std::min(left, right); in value()
878 : Binary_expression(left, right) in Align_expression()
[all …]
/dragonfly/contrib/tre/lib/
H A Dtre-ast.c73 tre_ast_new_union(tre_mem_t mem, tre_ast_node_t *left, tre_ast_node_t *right) in tre_ast_new_union() argument
81 ((tre_union_t *)node->obj)->right = right; in tre_ast_new_union()
82 node->num_submatches = left->num_submatches + right->num_submatches; in tre_ast_new_union()
89 tre_ast_node_t *right) in tre_ast_new_catenation() argument
97 ((tre_catenation_t *)node->obj)->right = right; in tre_ast_new_catenation()
98 node->num_submatches = left->num_submatches + right->num_submatches; in tre_ast_new_catenation()
197 tre_do_print(stream, ((tre_union_t *)ast->obj)->right, indent + 2); in tre_do_print()
203 tre_do_print(stream, ((tre_catenation_t *)ast->obj)->right, indent + 2); in tre_do_print()
/dragonfly/usr.bin/ctags/
H A Dtree.c79 np->left = np->right = 0; in pfnote()
110 else if (cur_node->right) in add_node()
111 add_node(node, cur_node->right); in add_node()
113 cur_node->right = node; in add_node()
122 if (node->right) in free_tree()
123 free_tree(node->right); in free_tree()

12345678910>>...22