Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 1067) sorted by relevance

12345678910>>...43

/freebsd-12.1/lib/libugidfw/
H A Dugidfw.c74 left = buflen; in bsde_rule_to_string()
79 left -= len; in bsde_rule_to_string()
86 left -= len; in bsde_rule_to_string()
97 left -= len; in bsde_rule_to_string()
107 left -= len; in bsde_rule_to_string()
147 left -= len; in bsde_rule_to_string()
197 left -= len; in bsde_rule_to_string()
205 left -= len; in bsde_rule_to_string()
213 left -= len; in bsde_rule_to_string()
220 left -= len; in bsde_rule_to_string()
[all …]
/freebsd-12.1/share/misc/
H A Doperator5 ->* .* left to right
6 * / % left to right
7 + - left to right
8 << >> left to right
11 & left to right
12 ^ left to right
13 | left to right
14 && left to right
15 || left to right
16 ?: right to left
[all …]
/freebsd-12.1/contrib/unbound/util/
H A Drbtree.c126 right->left = node; in rbtree_rotate_left()
137 rbnode_type *left = node->left; in rbtree_rotate_right() local
138 node->left = left->right; in rbtree_rotate_right()
148 node->parent->left = left; in rbtree_rotate_right()
151 rbtree->root = left; in rbtree_rotate_right()
153 left->right = node; in rbtree_rotate_right()
154 node->parent = left; in rbtree_rotate_right()
247 node = node->left; in rbtree_insert()
316 if(parent->left == old) parent->left = new; in change_parent_ptr()
373 swap_np(&to_delete->left, &smright->left); in rbtree_delete()
[all …]
/freebsd-12.1/contrib/ldns/
H A Drbtree.c134 right->left = node; in ldns_rbtree_rotate_left()
145 ldns_rbnode_t *left = node->left; in ldns_rbtree_rotate_right() local
146 node->left = left->right; in ldns_rbtree_rotate_right()
156 node->parent->left = left; in ldns_rbtree_rotate_right()
159 rbtree->root = left; in ldns_rbtree_rotate_right()
161 left->right = node; in ldns_rbtree_rotate_right()
162 node->parent = left; in ldns_rbtree_rotate_right()
260 node = node->left; in ldns_rbtree_insert()
325 if(parent->left == old) parent->left = new; in change_parent_ptr()
381 swap_np(&to_delete->left, &smright->left); in ldns_rbtree_delete()
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp136 int LHeight = (int)left->getHeight(); in BUCompareLatency()
149 int LDepth = left->getDepth(); in BUCompareLatency()
157 if (left->Latency != right->Latency) in BUCompareLatency()
175 return left->getDepth() < right->getDepth() ? right : left; in pickBest()
183 return left->getHeight() > right->getHeight() ? right : left; in pickBest()
210 unsigned LDist = closestSucc(left); in pickBest()
225 return result > 0 ? right : left; in pickBest()
226 return left; in pickBest()
230 return (left->getHeight() > right->getHeight()) ? right : left; in pickBest()
233 return (left->getDepth() < right->getDepth()) ? right : left; in pickBest()
[all …]
/freebsd-12.1/contrib/ofed/libibverbs/
H A Dmemory.c179 if (node->left) { in __mm_prev()
213 tmp = node->left; in __mm_rotate_right()
216 if (node->left) in __mm_rotate_right()
253 tmp->left = node; in __mm_rotate_left()
274 if (node->left && node->left->color != IBV_BLACK)
384 if (tmp->left) in __mm_remove()
387 tmp->left = node->left; in __mm_remove()
406 child = node->left ? node->left : node->right; in __mm_remove()
436 if ((!sib->left || sib->left->color == IBV_BLACK) && in __mm_remove()
468 if ((!sib->left || sib->left->color == IBV_BLACK) && in __mm_remove()
[all …]
/freebsd-12.1/contrib/ldns/compat/
H A Dsnprintf.c81 if(*left > 1) { in print_pad()
83 (*left)--; in print_pad()
214 if(*left > 1) { in spool_str_rev()
216 (*left)--; in spool_str_rev()
228 if(*left > 1) { in spool_str()
230 (*left)--; in spool_str()
593 spool_str(at, left, ret, s, w); in print_str()
632 size_t left = size; in vsnprintf() local
639 if(left > 1) { in vsnprintf()
641 left--; in vsnprintf()
[all …]
/freebsd-12.1/contrib/unbound/compat/
H A Dsnprintf.c82 if(*left > 1) { in print_pad()
84 (*left)--; in print_pad()
215 if(*left > 1) { in spool_str_rev()
217 (*left)--; in spool_str_rev()
229 if(*left > 1) { in spool_str()
231 (*left)--; in spool_str()
594 spool_str(at, left, ret, s, w); in print_str()
633 size_t left = size; in vsnprintf() local
640 if(left > 1) { in vsnprintf()
642 left--; in vsnprintf()
[all …]
/freebsd-12.1/contrib/gcclibs/libiberty/
H A Dsplay-tree.c118 p->left = tmp; in rotate_left()
129 tmp = n->left; in rotate_right()
130 n->left = p; in rotate_right()
156 c = n->left; in splay_tree_splay()
179 rotate_left (&n->left, c, c->left); in splay_tree_splay()
334 node->left = node->right->left; in splay_tree_insert()
355 left = sp->root->left; in splay_tree_remove()
365 if (left) in splay_tree_remove()
374 left = left->right; in splay_tree_remove()
423 while (n->left) in splay_tree_min()
[all …]
/freebsd-12.1/contrib/binutils/libiberty/
H A Dsplay-tree.c118 p->left = tmp; in rotate_left()
129 tmp = n->left; in rotate_right()
130 n->left = p; in rotate_right()
156 c = n->left; in splay_tree_splay()
179 rotate_left (&n->left, c, c->left); in splay_tree_splay()
334 node->left = node->right->left; in splay_tree_insert()
355 left = sp->root->left; in splay_tree_remove()
365 if (left) in splay_tree_remove()
374 left = left->right; in splay_tree_remove()
423 while (n->left) in splay_tree_min()
[all …]
/freebsd-12.1/crypto/openssl/crypto/bio/
H A Dbio_cb.c24 int len, left; in BIO_debug_callback() local
35 left = sizeof(buf) - len; in BIO_debug_callback()
39 BIO_snprintf(p, left, "Free - %s\n", bio->method->name); in BIO_debug_callback()
43 BIO_snprintf(p, left, "read(%d,%lu) - %s fd=%d\n", in BIO_debug_callback()
47 BIO_snprintf(p, left, "read(%d,%lu) - %s\n", in BIO_debug_callback()
56 BIO_snprintf(p, left, "write(%d,%lu) - %s\n", in BIO_debug_callback()
71 BIO_snprintf(p, left, "read return %ld\n", ret); in BIO_debug_callback()
74 BIO_snprintf(p, left, "write return %ld\n", ret); in BIO_debug_callback()
77 BIO_snprintf(p, left, "gets return %ld\n", ret); in BIO_debug_callback()
80 BIO_snprintf(p, left, "puts return %ld\n", ret); in BIO_debug_callback()
[all …]
/freebsd-12.1/sys/contrib/ipfilter/netinet/
H A Dipf_rb.h14 struct _t *left; \
44 tmp2 = tmp1->_f.left; \
53 parent->_f.left = tmp1; \
54 tmp1->_f.left = node; \
65 tmp1 = node->_f.left; \
67 node->_f.left = tmp2; \
75 parent->_f.left = tmp1; \
92 p = &n->_f.left; \
236 while ((left = node->_f.left) != &_n##_rb_zero) \
237 node = left; \
[all …]
/freebsd-12.1/contrib/ipfilter/
H A Dipf_rb.h14 struct _t *left; \
44 tmp2 = tmp1->_f.left; \
53 parent->_f.left = tmp1; \
54 tmp1->_f.left = node; \
65 tmp1 = node->_f.left; \
67 node->_f.left = tmp2; \
75 parent->_f.left = tmp1; \
92 p = &n->_f.left; \
236 while ((left = node->_f.left) != &_n##_rb_zero) \
237 node = left; \
[all …]
/freebsd-12.1/crypto/openssh/openbsd-compat/
H A Drealpath.c92 left_len = strlcpy(left, path + 1, sizeof(left)); in realpath()
102 left_len = strlcpy(left, path, sizeof(left)); in realpath()
117 p = strchr(left, '/'); in realpath()
118 s = p ? p : left + left_len; in realpath()
119 if (s - left >= (ptrdiff_t)sizeof(next_token)) { in realpath()
123 memcpy(next_token, left, s - left); in realpath()
124 next_token[s - left] = '\0'; in realpath()
125 left_len -= s - left; in realpath()
127 memmove(left, s + 1, left_len + 1); in realpath()
206 left_len = strlcat(symlink, left, sizeof(symlink)); in realpath()
[all …]
/freebsd-12.1/sys/dev/sound/pci/
H A Dspicds.c52 unsigned int left, right; member
280 if (left >= 100) in spicds_set()
283 left = 255; in spicds_set()
285 left = 127; in spicds_set()
289 left = left + 27; in spicds_set()
293 left = left * 255 / 100; in spicds_set()
296 left = left * 127 / 100; in spicds_set()
320 spicds_wrcd(codec, AK4524_LIPGA, left); in spicds_set()
327 spicds_wrcd(codec, AK4524_LOATT, left); in spicds_set()
334 spicds_wrcd(codec, AK4528_LOATT, left); in spicds_set()
[all …]
/freebsd-12.1/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Derase_fn_imps.hpp131 _GLIBCXX_DEBUG_ASSERT(m_size >= left); in erase_if()
133 const size_type ersd = m_size - left; in erase_if()
135 for (size_type i = left; i < m_size; ++i) in erase_if()
156 m_size = left; in erase_if()
228 size_type left = 0; in partition() local
231 while (right + 1 != left) in partition()
235 if (!pred(m_a_entries[left])) in partition()
236 ++left; in partition()
241 _GLIBCXX_DEBUG_ASSERT(left < right); in partition()
245 ++left; in partition()
[all …]
/freebsd-12.1/sys/netgraph/
H A Dng_tee.c75 struct hookinfo left; member
174 if (privdata->left.dest) in ng_tee_newhook()
175 privdata->left.dup = privdata->left.dest; in ng_tee_newhook()
179 hinfo = &privdata->left; in ng_tee_newhook()
192 if (privdata->left.dest) in ng_tee_newhook()
235 bcopy(&sc->left.stats, &stats->left, in ng_tee_rcvmsg()
236 sizeof(stats->left)); in ng_tee_rcvmsg()
245 bzero(&sc->left.stats, in ng_tee_rcvmsg()
376 sc->left.dest = sc->left.dup; in ng_tee_disconnect()
377 sc->left.dup = NULL; in ng_tee_disconnect()
[all …]
/freebsd-12.1/lib/libc/stdlib/
H A Drealpath.c60 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; in realpath1() local
69 left_len = strlcpy(left, path + 1, sizeof(left)); in realpath1()
77 left_len = strlcpy(left, path, sizeof(left)); in realpath1()
79 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) { in realpath1()
92 p = strchr(left, '/'); in realpath1()
94 next_token_len = p != NULL ? p - left : left_len; in realpath1()
95 memcpy(next_token, left, next_token_len); in realpath1()
100 memmove(left, p + 1, left_len + 1); in realpath1()
102 left[0] = '\0'; in realpath1()
183 left_len = strlcat(symlink, left, in realpath1()
[all …]
/freebsd-12.1/usr.bin/m4/
H A Dparser.y30 %left LOR
31 %left LAND
32 %left '|'
33 %left '^'
34 %left '&'
35 %left EQ NE
36 %left '<' LE '>' GE
37 %left LSHIFT RSHIFT
38 %left '+' '-'
39 %left '*' '/' '%'
/freebsd-12.1/contrib/libxo/tests/core/saved/
H A Dtest_12.JP.out11 "hand": "left",
19 "hand": "left",
27 "hand": "left",
35 "hand": "left",
43 "hand": "left",
51 "hand": "left",
59 "hand": "left",
67 "hand": "left",
75 "hand": "left",
83 "hand": "left",
H A Dtest_12.J.out1left","color":"blue","time":"3:45"}, {"name":"thing","color":"green","time":"2:15","hand":"left","…
/freebsd-12.1/contrib/subversion/subversion/libsvn_delta/
H A Dcompose_delta.c275 left = right = &scratch_node; in splay_range_index()
294 right->left = tree; in splay_range_index()
296 tree = tree->left; in splay_range_index()
313 left->right = tree; in splay_range_index()
314 left = tree; in splay_range_index()
322 left->right = tree->left; in splay_range_index()
323 right->left = tree->right; in splay_range_index()
353 left = tree->left; in splay_range_index()
355 *nodep = tree->left; in splay_range_index()
357 tree->left = left; in splay_range_index()
[all …]
/freebsd-12.1/contrib/xz/src/liblzma/lz/
H A Dlz_decoder.h133 *len -= left; in dict_repeat()
138 if (distance < left) { in dict_repeat()
144 } while (--left > 0); in dict_repeat()
150 left); in dict_repeat()
151 dict->pos += left; in dict_repeat()
162 if (copy_size < left) { in dict_repeat()
171 left); in dict_repeat()
172 dict->pos += left; in dict_repeat()
205 size_t *restrict left) in dict_write() argument
214 if (in_size - *in_pos > *left) in dict_write()
[all …]
/freebsd-12.1/contrib/wpa/src/tls/
H A Dtlsv1_client_read.c95 left = *in_len; in tls_process_server_hello()
97 if (left < 4) in tls_process_server_hello()
113 left -= 4; in tls_process_server_hello()
115 if (len > left) in tls_process_server_hello()
376 left -= 4; in tls_process_certificate()
848 left -= 4; in tls_process_certificate_status()
1042 left -= 4; in tls_process_server_key_exchange()
1138 left -= 4; in tls_process_certificate_request()
1202 left -= 4; in tls_process_server_hello_done()
1245 size_t left; in tls_process_server_change_cipher_spec() local
[all …]
/freebsd-12.1/contrib/binutils/bfd/
H A Dmep-relocs.pl103 my ($bits, $left, $right, $ci, $c, $cv);
105 $left = 0;
109 $left++;
111 $left = 0;
122 return ($bits, $left, $right, $mask, $rmask);
133 ($bits, $left, $right, $mask) = mask2shifts ($mask);
176 ($bits, $left, $right, $mask, $rmask) = mask2shifts ($mask);
177 if ($left > $right) { $left -= $right; $right = 0; }
178 else { $right -= $left; $left = 0; }
184 if ($left) {
[all …]

12345678910>>...43