Home
last modified time | relevance | path

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

12345678910>>...152

/freebsd/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/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/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/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/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/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/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/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/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/contrib/openzfs/include/os/freebsd/spl/sys/
H A Ddebug.h113 #define VERIFY3B(LEFT, OP, RIGHT) do { \ argument
115 const boolean_t _verify3_right = (boolean_t)(RIGHT); \
118 "VERIFY3(" #LEFT " " #OP " " #RIGHT ") " \
124 #define VERIFY3S(LEFT, OP, RIGHT) do { \ argument
126 const int64_t _verify3_right = (int64_t)(RIGHT); \
129 "VERIFY3(" #LEFT " " #OP " " #RIGHT ") " \
135 #define VERIFY3U(LEFT, OP, RIGHT) do { \ argument
137 const uint64_t _verify3_right = (uint64_t)(RIGHT); \
140 "VERIFY3(" #LEFT " " #OP " " #RIGHT ") " \
146 #define VERIFY3P(LEFT, OP, RIGHT) do { \ argument
[all …]
/freebsd/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) do { \ argument
[all …]
/freebsd/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/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/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 rParenEndsCast()
2749 // Certain other tokens right before the parentheses are also signals that in rParenEndsCast()
2995 // After right braces, star tokens are likely to be pointers to struct, in determineStarAmpUsage()
3029 // Thus, having an identifier on the right-hand side indicates a binary in determineStarAmpUsage()
3250 // intervene so that the fake right paren is inserted correctly. in parse()
4145 const FormatToken &Right = Tok; in splitPenalty() local
4152 if (Right.isOneOf(Keywords.kw_extends, Keywords.kw_throws)) in splitPenalty()
4154 if (Right.is(Keywords.kw_implements)) in splitPenalty()
[all …]
/freebsd/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/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalTree.h51 // void insert(PointT Left, PointT Right, ValueT Value);
96 // IR: All intervals whose right value are completely to the right of the
99 // RS: Right subtree.
128 // IR: Intervals to the right (in descending order by ending point).
159 // void insert(PointT Left, PointT Right, ValueT Value);
160 // Left, Right: the interval left and right limits.
194 /// An interval data composed by a \a Left and \a Right points and an
205 PointType Right; variable
210 IntervalData(PointType Left, PointType Right, ValueType Value) in IntervalData() argument
211 : Left(Left), Right(Right), Value(Value) { in IntervalData()
[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/sys/kern/
H A Dsubr_capability.c158 right_to_index(uint64_t right) in right_to_index() argument
166 idx = CAPIDXBIT(right); in right_to_index()
174 uint64_t right; in cap_rights_vset() local
183 right = (uint64_t)va_arg(ap, unsigned long long); in cap_rights_vset()
184 if (right == 0) in cap_rights_vset()
186 assert(CAPRVER(right) == 0); in cap_rights_vset()
187 i = right_to_index(right); in cap_rights_vset()
190 assert(CAPIDXBIT(rights->cr_rights[i]) == CAPIDXBIT(right)); in cap_rights_vset()
191 rights->cr_rights[i] |= right; in cap_rights_vset()
192 assert(CAPIDXBIT(rights->cr_rights[i]) == CAPIDXBIT(right)); in cap_rights_vset()
[all …]

12345678910>>...152