Home
last modified time | relevance | path

Searched full:right (Results 1 – 25 of 5487) sorted by relevance

12345678910>>...220

/freebsd-src/contrib/unbound/util/
H A Drbtree.c56 RBTREE_NULL, /* Right. */
63 /** rotate subtree right (to preserve redblack property) */
110 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()
[all …]
/freebsd-src/contrib/ldns/
H A Drbtree.c58 LDNS_RBTREE_NULL, /* Right. */
66 /** rotate subtree right (to preserve redblack property) */
118 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()
[all …]
/freebsd-src/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-src/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-src/share/i18n/csmapper/APPLE/
H A DHEBREW%UCS.src26 # b3,c1 2002-Dec-19 Don't require left-right context for digits
130 # - Right-left versions of certain ASCII punctuation, symbols and
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
[all …]
/freebsd-src/share/man/man4/
H A Drights.4121 This right has to be present on the directory descriptor.
122 This right includes the
124 right.
140 This right is also required for
146 This right has to be present on the directory descriptor.
147 This right includes the
149 right.
185 right is also present.
193 right is also present.
206 right i
[all...]
/freebsd-src/share/man/man7/
H A Doperator.739 .It "() [] -> . left to right"
40 .It "! ~ ++ -- - (type) * & sizeof new delete right to left"
41 .It "->* .* left to right"
42 .It "* / % left to right"
43 .It "+ - left to right"
44 .It "<< >> left to right"
45 .It "< <= > >= left to right"
46 .It "== != left to right"
47 .It "& left to right"
48 .It "^ left to right"
[all …]
/freebsd-src/share/doc/psd/02.implement/
H A Dfig2.pic56 move down 1.0625i right 1.25i from PUOFT.D.s
71 move right 1.5i from IF.D.w
79 line right .15i from FMA.nw
80 line right .15i from FMA.sw
83 arrow from AIT.C.e right .25i then down 2.125i then left .5i
86 arrow <-> from IF.B.e right .5i then up 1.5i then right .5i
89 line right 5i
91 line right 5i
93 move up 1.63475i right 2.75i from PUOFT.D.s
94 …line right .1i down .1i then down .6i then right .1i down .1i then left .1i down .1i then down .6i…
[all …]
H A Dfig1.pic49 move right 1.5i
57 move right 0.5i
73 line right 0.15i from UAS.nw
74 line right 0.15i from UAS.sw
77 arrow from 1/4 of the way between PT.PTE.ne and PT.PTE.se right 1.875i
78 arrow from TT.TTE.e right .5i then down to UTS.n
79 arrow from PT.PTE.e right .875i then down to DS.SDS.n
80 …arrow from 3/4 of the way between PT.PTE.ne and PT.PTE.se right .25i then down 1.5i then right .25i
81 arrow from 1/4 of the way between UAS.ne and UAS.se right .375i then up .25i then right .25i
82 arrow from 3/4 of the way between UAS.ne and UAS.se right 2.375i then up .875i then right .5i
[all …]
/freebsd-src/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-src/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Ddebug.h117 #define VERIFY3B(LEFT, OP, RIGHT) do { \ argument
119 const boolean_t _verify3_right = (boolean_t)(RIGHT); \
122 "VERIFY3(" #LEFT " " #OP " " #RIGHT ") " \
128 #define VERIFY3S(LEFT, OP, RIGHT) do { \ argument
130 const int64_t _verify3_right = (int64_t)(RIGHT); \
133 "VERIFY3(" #LEFT " " #OP " " #RIGHT ") " \
139 #define VERIFY3U(LEFT, OP, RIGHT) do { \ argument
141 const uint64_t _verify3_right = (uint64_t)(RIGHT); \
144 "VERIFY3(" #LEFT " " #OP " " #RIGHT ") " \
150 #define VERIFY3P(LEFT, OP, RIGHT) d argument
161 VERIFY0(RIGHT) global() argument
170 VERIFY0P(RIGHT) global() argument
187 VERIFY3BF(LEFT,OP,RIGHT,STR,...) global() argument
199 VERIFY3SF(LEFT,OP,RIGHT,STR,...) global() argument
211 VERIFY3UF(LEFT,OP,RIGHT,STR,...) global() argument
223 VERIFY3PF(LEFT,OP,RIGHT,STR,...) global() argument
235 VERIFY0PF(RIGHT,STR,...) global() argument
246 VERIFY0F(RIGHT,STR,...) global() argument
[all...]
/freebsd-src/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Ddebug.h113 #define VERIFY3B(LEFT, OP, RIGHT) do { \
115 const boolean_t _verify3_right = (boolean_t)(RIGHT); \
118 "VERIFY3(" #LEFT " " #OP " " #RIGHT ") " \
124 #define VERIFY3S(LEFT, OP, RIGHT) do { \
126 const int64_t _verify3_right = (int64_t)(RIGHT); \
129 "VERIFY3(" #LEFT " " #OP " " #RIGHT ") " \
135 #define VERIFY3U(LEFT, OP, RIGHT) do { \
137 const uint64_t _verify3_right = (uint64_t)(RIGHT); \
140 "VERIFY3(" #LEFT " " #OP " " #RIGHT ") " \
146 #define VERIFY3P(LEFT, OP, RIGHT) d
117 VERIFY3B(LEFT,OP,RIGHT) global() argument
128 VERIFY3S(LEFT,OP,RIGHT) global() argument
139 VERIFY3U(LEFT,OP,RIGHT) global() argument
150 VERIFY3P(LEFT,OP,RIGHT) global() argument
161 VERIFY0(RIGHT) global() argument
170 VERIFY0P(RIGHT) global() argument
187 VERIFY3BF(LEFT,OP,RIGHT,STR,...) global() argument
199 VERIFY3SF(LEFT,OP,RIGHT,STR,...) global() argument
211 VERIFY3UF(LEFT,OP,RIGHT,STR,...) global() argument
223 VERIFY3PF(LEFT,OP,RIGHT,STR,...) global() argument
235 VERIFY0PF(RIGHT,STR,...) global() argument
246 VERIFY0F(RIGHT,STR,...) global() argument
[all...]
/freebsd-src/contrib/libdiff/test/
H A Dresults_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-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp42 const SUnit *pickBest(const SUnit *left, const SUnit *right);
92 // scheduled right before its predecessors that it doesn't lengthen in getNodePriority()
130 // Return -1 if left has higher priority, 1 if right has higher priority.
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
[all...]
/freebsd-src/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-src/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp199 // tokens to prevent splitting right shift operators and potentially in parseAngle()
476 // categorize it as an unary operator, so set the right type here. in parseParens()
2741 // If there is an identifier (or with a few exceptions a keyword) right in parse()
2749 // Certain other tokens right before the parentheses are also signals that in parse()
2995 // After right braces, star tokens are likely to be pointers to struct, in verilogGroupDecl()
3029 // Thus, having an identifier on the right-hand side indicates a binary in verilogGroupDecl()
3250 // intervene so that the fake right paren is inserted correctly. in annotate()
4145 const FormatToken &Right = Tok; in spaceRequiredBetween()
4152 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws)) in spaceRequiredBetween()
4154 if (Right in spaceRequiredBetween()
3725 const FormatToken &Right = Tok; splitPenalty() local
[all...]
/freebsd-src/contrib/libdiff/lib/
H A Ddiff_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 …]
/freebsd-src/sys/netgraph/
H A Dng_tee.c45 * It has 4 hooks: left, right, left2right, and right2left. Data
46 * entering from the right is passed to the left and duplicated on
47 * right2left, and data entering from the left is passed to the right
49 * sent to left, and data from right2left to right.
80 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()
[all …]
/freebsd-src/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-src/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-src/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-src/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-src/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-src/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-src/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 …]

12345678910>>...220