Home
last modified time | relevance | path

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

12345678910>>...39

/freebsd-head/contrib/unbound/util/
HDrbtree.c110 rbnode_type *right = node->right; in rbtree_rotate_left() local
111 node->right = right->left; in rbtree_rotate_left()
112 if (right->left != RBTREE_NULL) in rbtree_rotate_left()
113 right->left->parent = node; in rbtree_rotate_left()
115 right->parent = node->parent; in rbtree_rotate_left()
119 node->parent->left = right; in rbtree_rotate_left()
121 node->parent->right = right; in rbtree_rotate_left()
124 rbtree->root = right; in rbtree_rotate_left()
126 right->left = node; in rbtree_rotate_left()
127 node->parent = right; in rbtree_rotate_left()
[all …]
/freebsd-head/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 …]
/freebsd-head/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 …]
/freebsd-head/contrib/llvm-project/llvm/lib/Target/AMDGPU/
HDGCNILPSched.cpp42 const SUnit *pickBest(const SUnit *left, const SUnit *right);
132 static int BUCompareLatency(const SUnit *left, const SUnit *right) { in BUCompareLatency() argument
136 int RHeight = (int)right->getHeight(); in BUCompareLatency()
149 int RDepth = right->getDepth(); in BUCompareLatency()
152 << ") depth " << LDepth << " vs SU (" << right->NodeNum in BUCompareLatency()
156 if (left->Latency != right->Latency) in BUCompareLatency()
157 return left->Latency > right->Latency ? 1 : -1; in BUCompareLatency()
162 const SUnit *GCNILPScheduler::pickBest(const SUnit *left, const SUnit *right) in pickBest() argument
169 int spread = (int)left->getDepth() - (int)right->getDepth(); in pickBest()
172 << left->getDepth() << " != SU(" << right->NodeNum in pickBest()
[all …]
/freebsd-head/contrib/libdiff/test/
HDresults_test.c35 .right = &d_right, in test_minus_after_plus()
39 diff_atomize_text_by_line(NULL, result->right); in test_minus_after_plus()
48 diff_data_init_subsection(&state.right, result->right, in test_minus_after_plus()
49 result->right->atoms.head, in test_minus_after_plus()
50 result->right->atoms.len); in test_minus_after_plus()
55 &state.right.atoms.head[0], 2); in test_minus_after_plus()
60 &state.right.atoms.head[2], 3); in test_minus_after_plus()
65 &state.right.atoms.head[5], 0); in test_minus_after_plus()
70 &state.right.atoms.head[5], 2); in test_minus_after_plus()
83 (long long)(c->right_start ? diff_atom_root_idx(result->right, c->right_start) : -1LL)); in test_minus_after_plus()
[all …]
/freebsd-head/contrib/capsicum-test/
HDcapsicum-rights.h46 cap_rights_t right; in _cap_rights_init() local
50 right = va_arg(ap, cap_rights_t); in _cap_rights_init()
51 *rights |= right; in _cap_rights_init()
52 if (right == 0) break; in _cap_rights_init()
60 cap_rights_t right; in _cap_rights_set() local
63 right = va_arg(ap, cap_rights_t); in _cap_rights_set()
64 *rights |= right; in _cap_rights_set()
65 if (right == 0) break; in _cap_rights_set()
73 cap_rights_t right; in _cap_rights_clear() local
76 right = va_arg(ap, cap_rights_t); in _cap_rights_clear()
[all …]
/freebsd-head/sys/netpfil/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 …]
/freebsd-head/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 …]
/freebsd-head/contrib/ofed/libibverbs/
HDmemory.c55 struct ibv_mem_node *left, *right; member
168 mm_root->right = NULL; in ibv_fork_init()
181 while (node->right) in __mm_prev()
182 node = node->right; in __mm_prev()
195 if (node->right) { in __mm_next()
196 node = node->right; in __mm_next()
200 while (node->parent && node == node->parent->right) in __mm_next()
215 node->left = tmp->right; in __mm_rotate_right()
220 if (node->parent->right == node) in __mm_rotate_right()
221 node->parent->right = tmp; in __mm_rotate_right()
[all …]
/freebsd-head/contrib/libdiff/lib/
HDdiff_myers.c213 struct diff_data *left, struct diff_data *right, in diff_divide_myers_forward() argument
217 int delta = (int)right->atoms.len - (int)left->atoms.len; in diff_divide_myers_forward()
226 if (k < -(int)right->atoms.len || k > (int)left->atoms.len) { in diff_divide_myers_forward()
274 || (k - 1 >= -(int)right->atoms.len in diff_divide_myers_forward()
300 while (x < left->atoms.len && xk_to_y(x, k) < right->atoms.len) { in diff_divide_myers_forward()
304 &right->atoms.head[ in diff_divide_myers_forward()
330 || xk_to_y(x, k) < 0 || xk_to_y(x, k) > right->atoms.len) in diff_divide_myers_forward()
475 debug_dump_myers_graph(left, right, NULL, in diff_divide_myers_forward()
511 struct diff_data *left, struct diff_data *right, in diff_divide_myers_backward() argument
515 int delta = (int)right->atoms.len - (int)left->atoms.len; in diff_divide_myers_backward()
[all …]
HDdiff_main.c71 const unsigned char *right, size_t right_len, in buf_cmp() argument
80 unsigned char cr = right[ir]; in buf_cmp()
104 unsigned char cr = right[ir++]; in buf_cmp()
112 cmp = memcmp(left, right, MIN(left_len, right_len)); in buf_cmp()
123 const struct diff_atom *right) in diff_atom_cmp() argument
126 int flags = (left->root->diff_flags | right->root->diff_flags); in diff_atom_cmp()
129 if (!left->len && !right->len) { in diff_atom_cmp()
134 if (!right->len) { in diff_atom_cmp()
144 if (left->at != NULL && right->at != NULL) { in diff_atom_cmp()
145 *cmp = buf_cmp(left->at, left->len, right->at, right->len, in diff_atom_cmp()
[all …]
HDdiff_output_edscript.c53 right_len = cc->right.end - cc->right.start; in output_edscript_chunk()
56 else if (result->right->atoms.len == 0) in output_edscript_chunk()
58 else if (right_len == 0 && cc->right.start > 0) in output_edscript_chunk()
59 right_start = cc->right.start; in output_edscript_chunk()
60 else if (cc->right.end > 0) in output_edscript_chunk()
61 right_start = cc->right.start + 1; in output_edscript_chunk()
63 right_start = cc->right.start; in output_edscript_chunk()
71 right_start, cc->right.end); in output_edscript_chunk()
88 right_start, cc->right.end); in output_edscript_chunk()
94 cc->left.end, right_start, cc->right.end); in output_edscript_chunk()
[all …]
HDdiff_patience.c104 diff_atoms_mark_unique_in_both(struct diff_data *left, struct diff_data *right, in diff_atoms_mark_unique_in_both() argument
116 r = diff_atoms_mark_unique(right, NULL); in diff_atoms_mark_unique_in_both()
128 diff_data_foreach_atom(j, right) { in diff_atoms_mark_unique_in_both()
156 diff_data_foreach_atom(i, right) { in diff_atoms_mark_unique_in_both()
248 diff_atoms_mark_unique_in_both(struct diff_data *left, struct diff_data *right, in diff_atoms_mark_unique_in_both() argument
259 all_atoms = calloc(left->atoms.len + right->atoms.len, in diff_atoms_mark_unique_in_both()
265 right->err = 0; in diff_atoms_mark_unique_in_both()
267 right->root->err = 0; in diff_atoms_mark_unique_in_both()
271 diff_data_foreach_atom(b, right) { in diff_atoms_mark_unique_in_both()
385 struct diff_data *right = &state->right; in diff_algo_patience() local
[all …]
HDdiff_output_unidiff.c72 int right_start = diff_atom_root_idx(r->right, c->right_start); in diff_chunk_get_right_start()
81 return MIN(r->right->atoms.len, in diff_chunk_get_right_end()
122 .right = { in diff_chunk_context_get()
135 || diff_ranges_touch(&cc->right, &other->right); in diff_chunk_contexts_touch()
144 diff_ranges_merge(&cc->right, &other->right); in diff_chunk_contexts_merge()
246 if (diff_range_empty(&cc->left) && diff_range_empty(&cc->right)) in output_unidiff_chunk()
296 right_len = cc->right.end - cc->right.start; in output_unidiff_chunk()
297 if (result->right->atoms.len == 0) in output_unidiff_chunk()
299 else if (right_len == 0 && cc->right.start > 0) in output_unidiff_chunk()
300 right_start = cc->right.start; in output_unidiff_chunk()
[all …]
HDdiff_output_plain.c53 right_len = cc->right.end - cc->right.start; in output_plain_chunk()
56 else if (result->right->atoms.len == 0) in output_plain_chunk()
58 else if (right_len == 0 && cc->right.start > 0) in output_plain_chunk()
59 right_start = cc->right.start; in output_plain_chunk()
60 else if (cc->right.end > 0) in output_plain_chunk()
61 right_start = cc->right.start + 1; in output_plain_chunk()
63 right_start = cc->right.start; in output_plain_chunk()
71 right_start, cc->right.end); in output_plain_chunk()
89 right_start, cc->right.end); in output_plain_chunk()
95 cc->left.end, right_start, cc->right.end); in output_plain_chunk()
[all …]
/freebsd-head/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 …]
/freebsd-head/sys/netgraph/
HDng_tee.c80 struct hookinfo right; member
177 hinfo = &privdata->right; in ng_tee_newhook()
184 if (privdata->right.dest) in ng_tee_newhook()
185 privdata->right.dup = privdata->right.dest; in ng_tee_newhook()
186 privdata->right.dest = hinfo; in ng_tee_newhook()
190 if (privdata->right.dest) in ng_tee_newhook()
191 privdata->right.dup = hinfo; in ng_tee_newhook()
193 privdata->right.dest = hinfo; in ng_tee_newhook()
237 bcopy(&sc->right.stats, &stats->right, in ng_tee_rcvmsg()
238 sizeof(stats->right)); in ng_tee_rcvmsg()
[all …]
/freebsd-head/sys/kern/
HDsubr_capability.c160 right_to_index(uint64_t right) in right_to_index() argument
168 idx = CAPIDXBIT(right); in right_to_index()
176 uint64_t right; in cap_rights_vset() local
185 right = (uint64_t)va_arg(ap, unsigned long long); in cap_rights_vset()
186 if (right == 0) in cap_rights_vset()
188 assert(CAPRVER(right) == 0); in cap_rights_vset()
189 i = right_to_index(right); in cap_rights_vset()
192 assert(CAPIDXBIT(rights->cr_rights[i]) == CAPIDXBIT(right)); in cap_rights_vset()
193 rights->cr_rights[i] |= right; in cap_rights_vset()
194 assert(CAPIDXBIT(rights->cr_rights[i]) == CAPIDXBIT(right)); in cap_rights_vset()
[all …]
/freebsd-head/tests/sys/kern/
HDsocket_splice.c204 int right[2]; member
218 tcp4_socketpair(sc->right); in splice_conn_init_limits()
219 splice_pair(sc->left[1], sc->right[0], max, tv); in splice_conn_init_limits()
237 data = fionread(sc->right[0]); in splice_conn_check_empty()
239 data = fionread(sc->right[1]); in splice_conn_check_empty()
248 checked_close(sc->right[0]); in splice_conn_fini()
249 checked_close(sc->right[1]); in splice_conn_fini()
257 noblocking(sc->right[0]); in splice_conn_noblocking()
258 noblocking(sc->right[1]); in splice_conn_noblocking()
272 check_nspliced(sc.right[0], 0); in ATF_TC_BODY()
[all …]
/freebsd-head/tools/test/stress2/misc/
HDchain.sh48 coroutine void f(chan left, chan right) {
49 chs(left, int, 1 + chr(right, int));
58 chan right = leftmost;
62 left = right;
63 right = chmake(int, 0);
64 go(f(left, right));
66 chs(right, int, 0);
/freebsd-head/share/i18n/csmapper/APPLE/
DHEBREW%UCS.src26 # b3,c1 2002-Dec-19 Don't require left-right context for digits
152 # duplicate code points, one with a left-right direction attribute and
153 # the other with a right-left direction attribute.
155 # For example, plus sign is encoded at 0x2B with a left-right
156 # attribute, and at 0xAB with a right-left attribute. However, there
166 # ELLIPSIS with strong right-left direction. However, the Unicode
178 # 0xD4 -> 0x2018 LEFT SINGLE QUOTATION MARK, right-left
183 # 0xD4 -> 0x2007 FIGURE SPACE, right-left
206 # must have a strong left-right context, and a tag of <RL> indicates
207 # a right-left context.
[all …]
/freebsd-head/crypto/openssl/test/testutil/
HDformat_output.c24 static void test_diff_header(const char *left, const char *right) in test_diff_header() argument
27 test_printf_stderr("+++ %s\n", right); in test_diff_header()
41 const char *left, const char *right, in test_fail_string_common() argument
52 test_fail_message_prefix(prefix, file, line, type, left, right, op); in test_fail_string_common()
61 test_diff_header(left, right); in test_fail_string_common()
69 test_diff_header(left, right); in test_fail_string_common()
130 const char *left, const char *right, in test_fail_string_message() argument
134 test_fail_string_common(prefix, file, line, type, left, right, op, in test_fail_string_message()
268 const char *left, const char *right, in test_fail_bignum_common() argument
281 test_fail_message_prefix(prefix, file, line, type, left, right, op); in test_fail_bignum_common()
[all …]
/freebsd-head/contrib/jemalloc/src/
HDstats.c285 COL_HDR(row, size, NULL, right, 20, size) in stats_arena_bins_print()
286 COL_HDR(row, ind, NULL, right, 4, unsigned) in stats_arena_bins_print()
287 COL_HDR(row, allocated, NULL, right, 13, uint64) in stats_arena_bins_print()
288 COL_HDR(row, nmalloc, NULL, right, 13, uint64) in stats_arena_bins_print()
289 COL_HDR(row, nmalloc_ps, "(#/sec)", right, 8, uint64) in stats_arena_bins_print()
290 COL_HDR(row, ndalloc, NULL, right, 13, uint64) in stats_arena_bins_print()
291 COL_HDR(row, ndalloc_ps, "(#/sec)", right, 8, uint64) in stats_arena_bins_print()
292 COL_HDR(row, nrequests, NULL, right, 13, uint64) in stats_arena_bins_print()
293 COL_HDR(row, nrequests_ps, "(#/sec)", right, 10, uint64) in stats_arena_bins_print()
294 COL_HDR(row, nshards, NULL, right, 9, unsigned) in stats_arena_bins_print()
[all …]
/freebsd-head/contrib/bmake/unit-tests/
HDdeptgt-suffixes.mk22 .SUFFIXES: .src-left .tgt-right
25 .src-left.tgt-right:
27 all: deptgt-suffixes.tgt-right
30 .SUFFIXES: .tgt-left .src-right
31 deptgt-suffixes.src-right:
33 .src-right.tgt-left:
/freebsd-head/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>>...39