Home
last modified time | relevance | path

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

12345678910>>...36

/freebsd/contrib/unbound/util/
H A Drbtree.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/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()
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/share/misc/
H A Doperator3 () [] -> . 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/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.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/sys/netpfil/ipfilter/netinet/
H A Dipf_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/contrib/capsicum-test/
H A Dcapsicum-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/contrib/wpa/src/crypto/
H A Ddes-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/contrib/ofed/libibverbs/
H A Dmemory.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/sys/dev/sound/pci/
H A Dspicds.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/sys/netgraph/
H A Dng_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/sys/kern/
H A Dsubr_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/tests/sys/kern/
H A Dsocket_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/contrib/libdiff/lib/
H A Ddiff_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 …]
/freebsd/tools/test/stress2/misc/
H A Dchain.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/share/i18n/csmapper/APPLE/
H A 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/crypto/openssl/test/testutil/
H A Dformat_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/contrib/jemalloc/src/
H A Dstats.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/crypto/heimdal/doc/doxyout/gssapi/html/
H A Ddoxygen.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 …]
/freebsd/crypto/heimdal/doc/doxyout/hcrypto/html/
H A Ddoxygen.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 …]
/freebsd/crypto/heimdal/doc/doxyout/hdb/html/
H A Ddoxygen.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 …]
/freebsd/crypto/heimdal/doc/doxyout/hx509/html/
H A Ddoxygen.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 …]
/freebsd/crypto/heimdal/doc/doxyout/krb5/html/
H A Ddoxygen.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 …]
/freebsd/crypto/heimdal/doc/doxyout/ntlm/html/
H A Ddoxygen.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 …]
/freebsd/crypto/heimdal/doc/doxyout/wind/html/
H A Ddoxygen.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 …]
/freebsd/contrib/bmake/unit-tests/
H A Ddeptgt-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:

12345678910>>...36