Home
last modified time | relevance | path

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

12345678910>>...41

/NextBSD/contrib/unbound/util/
HDrbtree.c109 rbnode_t *right = node->right; in rbtree_rotate_left() local
110 node->right = right->left; in rbtree_rotate_left()
111 if (right->left != RBTREE_NULL) in rbtree_rotate_left()
112 right->left->parent = node; in rbtree_rotate_left()
114 right->parent = node->parent; in rbtree_rotate_left()
118 node->parent->left = right; in rbtree_rotate_left()
120 node->parent->right = right; in rbtree_rotate_left()
123 rbtree->root = right; in rbtree_rotate_left()
125 right->left = node; in rbtree_rotate_left()
126 node->parent = right; in rbtree_rotate_left()
[all …]
/NextBSD/contrib/ldns/
HDrbtree.c118 ldns_rbnode_t *right = node->right; in ldns_rbtree_rotate_left() local
119 node->right = right->left; in ldns_rbtree_rotate_left()
120 if (right->left != LDNS_RBTREE_NULL) in ldns_rbtree_rotate_left()
121 right->left->parent = node; in ldns_rbtree_rotate_left()
123 right->parent = node->parent; in ldns_rbtree_rotate_left()
127 node->parent->left = right; 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()
[all …]
/NextBSD/share/misc/
HDoperator3 () [] -> . left to right
4 ! ~ ++ -- - (type) * & sizeof new delete right to left
5 ->* .* left to right
6 * / % left to right
7 + - left to right
8 << >> left to right
9 < <= > >= left to right
10 == != left to right
11 & left to right
12 ^ left to right
[all …]
/NextBSD/contrib/gcclibs/libiberty/
HDsplay-tree.c92 if (active->right) in splay_tree_delete_helper()
94 KDEL (active->right->key); in splay_tree_delete_helper()
95 VDEL (active->right->value); in splay_tree_delete_helper()
96 active->right->key = (splay_tree_key)pending; in splay_tree_delete_helper()
97 pending = (splay_tree_node)(active->right); in splay_tree_delete_helper()
116 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()
167 || (cmp2 > 0 && !c->right)) in splay_tree_splay()
[all …]
/NextBSD/contrib/binutils/libiberty/
HDsplay-tree.c92 if (active->right) in splay_tree_delete_helper()
94 KDEL (active->right->key); in splay_tree_delete_helper()
95 VDEL (active->right->value); in splay_tree_delete_helper()
96 active->right->key = (splay_tree_key)pending; in splay_tree_delete_helper()
97 pending = (splay_tree_node)(active->right); in splay_tree_delete_helper()
116 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()
167 || (cmp2 > 0 && !c->right)) in splay_tree_splay()
[all …]
/NextBSD/sys/contrib/ipfilter/netinet/
HDipf_rb.h15 struct _t *right; \
43 tmp1 = node->_f.right; \
45 node->_f.right = tmp2; \
49 head->top._f.right = tmp1; \
50 else if (parent->_f.right == node) \
51 parent->_f.right = tmp1; \
66 tmp2 = tmp1->_f.right; \
71 head->top._f.right = tmp1; \
72 else if (parent->_f.right == node) \
73 parent->_f.right = tmp1; \
[all …]
/NextBSD/contrib/ipfilter/
HDipf_rb.h15 struct _t *right; \
43 tmp1 = node->_f.right; \
45 node->_f.right = tmp2; \
49 head->top._f.right = tmp1; \
50 else if (parent->_f.right == node) \
51 parent->_f.right = tmp1; \
66 tmp2 = tmp1->_f.right; \
71 head->top._f.right = tmp1; \
72 else if (parent->_f.right == node) \
73 parent->_f.right = tmp1; \
[all …]
/NextBSD/contrib/wpa/src/crypto/
HDdes-internal.c320 u32 work, right, leftt; in desfunc() local
324 right = block[1]; in desfunc()
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc()
327 right ^= work; in desfunc()
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc()
331 right ^= work; in desfunc()
334 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc()
336 right ^= (work << 2); in desfunc()
338 work = ((right >> 8) ^ leftt) & 0x00ff00ffL; in desfunc()
340 right ^= (work << 8); in desfunc()
[all …]
/NextBSD/contrib/ofed/libibverbs/src/
HDmemory.c68 struct ibv_mem_node *left, *right; member
114 mm_root->right = NULL; in ibv_fork_init()
127 while (node->right) in __mm_prev()
128 node = node->right; in __mm_prev()
141 if (node->right) { in __mm_next()
142 node = node->right; in __mm_next()
146 while (node->parent && node == node->parent->right) in __mm_next()
161 node->left = tmp->right; in __mm_rotate_right()
166 if (node->parent->right == node) in __mm_rotate_right()
167 node->parent->right = tmp; in __mm_rotate_right()
[all …]
/NextBSD/sys/kern/
HDsubr_capability.c60 right_to_index(uint64_t right) in right_to_index() argument
68 idx = CAPIDXBIT(right); in right_to_index()
76 uint64_t right; in cap_rights_vset() local
85 right = (uint64_t)va_arg(ap, unsigned long long); in cap_rights_vset()
86 if (right == 0) in cap_rights_vset()
88 assert(CAPRVER(right) == 0); in cap_rights_vset()
89 i = right_to_index(right); in cap_rights_vset()
92 assert(CAPIDXBIT(rights->cr_rights[i]) == CAPIDXBIT(right)); in cap_rights_vset()
93 rights->cr_rights[i] |= right; in cap_rights_vset()
94 assert(CAPIDXBIT(rights->cr_rights[i]) == CAPIDXBIT(right)); in cap_rights_vset()
[all …]
/NextBSD/sys/dev/sound/pci/
HDspicds.c50 unsigned int left, right; member
272 spicds_set(struct spicds_info *codec, int dir, unsigned int left, unsigned int right) in spicds_set() argument
275 device_printf(codec->dev, "spicds_set(codec, %d, %d, %d)\n", dir, left, right); in spicds_set()
296 if (right >= 100) in spicds_set()
299 right = 255; in spicds_set()
301 right = 127; in spicds_set()
305 right = right + 27; in spicds_set()
309 right = right * 255 / 100; in spicds_set()
312 right = right * 127 / 100; in spicds_set()
316 device_printf(codec->dev, "spicds_set(): AK4524(REC) %d/%d\n", left, right); in spicds_set()
[all …]
/NextBSD/contrib/subversion/subversion/libsvn_delta/
HDcompose_delta.c56 range_index_node_t *left, *right; member
245 node->left = node->right = NULL; in alloc_range_index_node()
269 range_index_node_t *left, *right; in splay_range_index() local
274 scratch_node.left = scratch_node.right = NULL; in splay_range_index()
275 left = right = &scratch_node; in splay_range_index()
286 tree->left = node->right; in splay_range_index()
287 node->right = tree; in splay_range_index()
294 right->left = tree; in splay_range_index()
295 right = tree; in splay_range_index()
300 if (tree->right != NULL in splay_range_index()
[all …]
/NextBSD/sys/netgraph/
HDng_tee.c76 struct hookinfo right; member
173 hinfo = &privdata->right; in ng_tee_newhook()
180 if (privdata->right.dest) in ng_tee_newhook()
181 privdata->right.dup = privdata->right.dest; in ng_tee_newhook()
182 privdata->right.dest = hinfo; in ng_tee_newhook()
186 if (privdata->right.dest) in ng_tee_newhook()
187 privdata->right.dup = hinfo; in ng_tee_newhook()
189 privdata->right.dest = hinfo; in ng_tee_newhook()
233 bcopy(&sc->right.stats, &stats->right, in ng_tee_rcvmsg()
234 sizeof(stats->right)); in ng_tee_rcvmsg()
[all …]
/NextBSD/contrib/binutils/gas/
HDexpr.c1641 expressionS right; in expr() local
1665 rightseg = expr (op_rank[(int) op_left], &right, mode); in expr()
1666 if (right.X_op == O_absent) in expr()
1669 right.X_op = O_constant; in expr()
1670 right.X_add_number = 0; in expr()
1671 right.X_add_symbol = NULL; in expr()
1672 right.X_op_symbol = NULL; in expr()
1711 if (right.X_op == O_big) in expr()
1713 if (right.X_add_number > 0) in expr()
1717 right.X_op = O_constant; in expr()
[all …]
/NextBSD/usr.bin/migcom/
HDstring.c114 strconcat(left, right) in strconcat() argument
115 string_t left, right; in strconcat()
119 saved = malloc(strlen(left) + strlen(right) + 1);
122 left, right, strerror(errno));
123 return strcat(strcpy(saved, left), right);
127 strphrase(left, right) in strphrase() argument
128 string_t left, right; in strphrase()
135 saved = malloc(llen + strlen(right) + 2);
138 left, right, strerror(errno));
142 strcpy(current, right);
/NextBSD/contrib/binutils/bfd/
HDmep-relocs.pl103 my ($bits, $left, $right, $ci, $c, $cv);
106 $right = 32;
114 $right = $cv unless $right < $cv;
122 return ($bits, $left, $right, $mask, $rmask);
133 ($bits, $left, $right, $mask) = mask2shifts ($mask);
142 $c, $bytesize, $bits, $left, $right, $pcrel, $overflow, $mask);
176 ($bits, $left, $right, $mask, $rmask) = mask2shifts ($mask);
177 if ($left > $right) { $left -= $right; $right = 0; }
178 else { $right -= $left; $left = 0; }
186 } elsif ($right) {
[all …]
/NextBSD/share/i18n/csmapper/APPLE/
DHEBREW%UCS.src27 # b3,c1 2002-Dec-19 Don't require left-right context for digits
153 # duplicate code points, one with a left-right direction attribute and
154 # the other with a right-left direction attribute.
156 # For example, plus sign is encoded at 0x2B with a left-right
157 # attribute, and at 0xAB with a right-left attribute. However, there
167 # ELLIPSIS with strong right-left direction. However, the Unicode
179 # 0xD4 -> 0x2018 LEFT SINGLE QUOTATION MARK, right-left
184 # 0xD4 -> 0x2007 FIGURE SPACE, right-left
207 # must have a strong left-right context, and a tag of <RL> indicates
208 # a right-left context.
[all …]
/NextBSD/contrib/groff/font/devlj4/generate/
HDtext.map269 # 218 right solid arrowhead *
278 # 226 right arrow *
281 # 229 left/right arrow *
303 # 249 right 1 up 1 *
307 # 252 right 1 vertical 1 *
310 # 255 right 2 vertical 1 *
311 # 256 right 1 vertical 2 *
312 # 257 right 2 up 2 *
313 # 258 right 2 down 2 *
317 # 261 right 2 vertical 2 *
[all …]
/NextBSD/crypto/heimdal/doc/doxyout/hcrypto/html/
HDdoxygen.css43 margin-right: 15px;
122 margin-right: 8px;
124 padding-right: 6px;
150 margin-right: 20px;
156 padding-right : 10px;
161 margin-right : 0px;
169 padding-right : 10px;
174 margin-right : 0px;
208 border-right: 1px none #E0E0E0;
219 border-right: 1px none #E0E0E0;
[all …]
/NextBSD/crypto/heimdal/doc/doxyout/wind/html/
HDdoxygen.css43 margin-right: 15px;
122 margin-right: 8px;
124 padding-right: 6px;
150 margin-right: 20px;
156 padding-right : 10px;
161 margin-right : 0px;
169 padding-right : 10px;
174 margin-right : 0px;
208 border-right: 1px none #E0E0E0;
219 border-right: 1px none #E0E0E0;
[all …]
/NextBSD/crypto/heimdal/doc/doxyout/ntlm/html/
HDdoxygen.css43 margin-right: 15px;
122 margin-right: 8px;
124 padding-right: 6px;
150 margin-right: 20px;
156 padding-right : 10px;
161 margin-right : 0px;
169 padding-right : 10px;
174 margin-right : 0px;
208 border-right: 1px none #E0E0E0;
219 border-right: 1px none #E0E0E0;
[all …]
/NextBSD/crypto/heimdal/doc/doxyout/hx509/html/
HDdoxygen.css43 margin-right: 15px;
122 margin-right: 8px;
124 padding-right: 6px;
150 margin-right: 20px;
156 padding-right : 10px;
161 margin-right : 0px;
169 padding-right : 10px;
174 margin-right : 0px;
208 border-right: 1px none #E0E0E0;
219 border-right: 1px none #E0E0E0;
[all …]
/NextBSD/crypto/heimdal/doc/doxyout/krb5/html/
HDdoxygen.css43 margin-right: 15px;
122 margin-right: 8px;
124 padding-right: 6px;
150 margin-right: 20px;
156 padding-right : 10px;
161 margin-right : 0px;
169 padding-right : 10px;
174 margin-right : 0px;
208 border-right: 1px none #E0E0E0;
219 border-right: 1px none #E0E0E0;
[all …]
/NextBSD/crypto/heimdal/doc/doxyout/hdb/html/
HDdoxygen.css43 margin-right: 15px;
122 margin-right: 8px;
124 padding-right: 6px;
150 margin-right: 20px;
156 padding-right : 10px;
161 margin-right : 0px;
169 padding-right : 10px;
174 margin-right : 0px;
208 border-right: 1px none #E0E0E0;
219 border-right: 1px none #E0E0E0;
[all …]
/NextBSD/crypto/heimdal/doc/doxyout/gssapi/html/
HDdoxygen.css43 margin-right: 15px;
122 margin-right: 8px;
124 padding-right: 6px;
150 margin-right: 20px;
156 padding-right : 10px;
161 margin-right : 0px;
169 padding-right : 10px;
174 margin-right : 0px;
208 border-right: 1px none #E0E0E0;
219 border-right: 1px none #E0E0E0;
[all …]

12345678910>>...41