Home
last modified time | relevance | path

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

12345678910>>...53

/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta/
H A DMerge.pm13 my ($left, $right) = @_;
15 (not defined $left and not defined $right)
17 || (defined $left and defined $right and $left eq $right);
21 my ($left, $right, $path) = @_;
22 …croak sprintf "Can't merge attribute %s: '%s' does not equal '%s'", join('.', @{$path}), $left, $r…
23 unless _is_identical($left, $right);
24 return $left;
52 my ($left, $right) = @_;
53 return [ +_uniq(@{$left}, @{$right}) ];
57 my ($left, $right, $path) = @_;
[all …]
/openbsd-src/regress/usr.bin/mandoc/tbl/layout/
H A Dlines.out_ascii7 hline top left:
85 hline bottom left:
88 vline bottom left:
92 hline and vline bottom left:
96 vline and hline bottom left:
172 double vline bottom left:
176 hline and double vline bottom left:
180 double vline and hline bottom left:
200 vline left below hline top left:
204 vline right below hline top left:
[all …]
/openbsd-src/usr.sbin/nsd/
H A Drbtree.c67 node->right = right->left; in rbtree_rotate_left()
68 if (right->left != RBTREE_NULL) in rbtree_rotate_left()
69 right->left->parent = node; in rbtree_rotate_left()
74 if (node == node->parent->left) { in rbtree_rotate_left()
75 node->parent->left = right; in rbtree_rotate_left()
82 right->left = node; in rbtree_rotate_left()
93 rbnode_type *left = node->left; in rbtree_rotate_right() local
94 node->left = left->right; in rbtree_rotate_right()
95 if (left->right != RBTREE_NULL) in rbtree_rotate_right()
96 left->right->parent = node; in rbtree_rotate_right()
[all …]
/openbsd-src/usr.sbin/unbound/util/
H A Drbtree.c111 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()
118 if (node == node->parent->left) { in rbtree_rotate_left()
119 node->parent->left = right; in rbtree_rotate_left()
126 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()
139 if (left->right != RBTREE_NULL) in rbtree_rotate_right()
140 left->right->parent = node; in rbtree_rotate_right()
[all …]
/openbsd-src/sbin/unwind/libunbound/util/
H A Drbtree.c111 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()
118 if (node == node->parent->left) { in rbtree_rotate_left()
119 node->parent->left = right; in rbtree_rotate_left()
126 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()
139 if (left->right != RBTREE_NULL) in rbtree_rotate_right()
140 left->right->parent = node; in rbtree_rotate_right()
[all …]
/openbsd-src/sys/arch/hppa/spmath/
H A Dsfsub.c28 register unsigned int left, right, result, extent; local
36 left = *leftptr;
41 Sgl_xortointp1(left,right,/*to*/save);
46 if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT)
48 if (Sgl_iszero_mantissa(left))
66 *dstptr = left;
75 if (Sgl_isone_signaling(left))
81 Sgl_set_quiet(left);
99 *dstptr = left;
136 Sgl_copytoint_exponentmantissa(left,signless_upper_left);
[all …]
H A Dsfadd.c28 register unsigned int left, right, result, extent; local
38 left = *leftptr;
43 Sgl_xortointp1(left,right,/*to*/save);
48 if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT)
50 if (Sgl_iszero_mantissa(left))
68 *dstptr = left;
77 if (Sgl_isone_signaling(left))
83 Sgl_set_quiet(left);
101 *dstptr = left;
137 Sgl_copytoint_exponentmantissa(left,signless_upper_left);
[all …]
H A Dsfcmp.c29 register unsigned int left, right; local
33 left = *leftptr;
38 if( (Sgl_exponent(left) == SGL_INFINITY_EXPONENT)
44 if( ( (Sgl_exponent(left) == SGL_INFINITY_EXPONENT)
45 && Sgl_isnotzero_mantissa(left)
46 && (Exception(cond) || Sgl_isone_signaling(left)))
62 else if( ((Sgl_exponent(left) == SGL_INFINITY_EXPONENT)
63 && Sgl_isnotzero_mantissa(left))
76 Sgl_xortointp1(left,right,xorresult);
81 if( Sgl_iszero_exponentmantissa(left)
[all …]
/openbsd-src/gnu/llvm/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
135 int LHeight = (int)left->getHeight(); in BUCompareLatency()
148 int LDepth = left->getDepth(); in BUCompareLatency()
151 LLVM_DEBUG(dbgs() << " Comparing latency of SU (" << left->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()
171 LLVM_DEBUG(dbgs() << "Depth of SU(" << left->NodeNum << "): " in pickBest()
[all …]
/openbsd-src/sbin/iked/
H A Dikev2_pld.c103 struct iked_message *msg, size_t offset, size_t left);
144 ikev2_validate_pld(struct iked_message *msg, size_t offset, size_t left, in ikev2_validate_pld() argument
151 if (left < sizeof(*pld)) { in ikev2_validate_pld()
153 "header (%zu < %zu)", __func__, left, sizeof(*pld)); in ikev2_validate_pld()
164 if (left < pld_length) { in ikev2_validate_pld()
166 "(%zu < %zu)", __func__, left, pld_length); in ikev2_validate_pld()
191 size_t total, left; in ikev2_pld_payloads() local
214 left = betoh16(pld.pld_length) - sizeof(pld); in ikev2_pld_payloads()
220 ret = ikev2_pld_sa(env, &pld, msg, offset, left); in ikev2_pld_payloads()
224 ret = ikev2_pld_ke(env, &pld, msg, offset, left); in ikev2_pld_payloads()
[all …]
/openbsd-src/gnu/lib/libiberty/src/
H A Dsplay-tree.c85 if (active->left) in splay_tree_delete_helper()
87 KDEL (active->left->key); in splay_tree_delete_helper()
88 VDEL (active->left->value); in splay_tree_delete_helper()
89 active->left->key = (splay_tree_key)pending; in splay_tree_delete_helper()
90 pending = (splay_tree_node)(active->left); in splay_tree_delete_helper()
118 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()
166 || (cmp2 < 0 && !c->left) in splay_tree_splay()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Det-forest.c49 et_forest_occurrence_t left, right; member
86 while (occ->left)
87 occ = occ->left;
125 if (node == parent->left)
127 if (parent == grandparent->left)
137 grandparent->left = node2;
141 parent->left = node1;
156 if (node->parent->left == grandparent)
157 node->parent->left = node;
168 node1 = node->left;
[all …]
/openbsd-src/gnu/usr.sbin/mkhybrid/src/libhfs_iso/
H A Dnode.c200 int n_split(node *left, unsigned char *record, int *reclen) in n_split() argument
206 right = *left; in n_split()
207 right.nd.ndBLink = left->nnum; in n_split()
212 left->nd.ndFLink = right.nnum; in n_split()
213 nrecs = left->nd.ndNRecs; in n_split()
228 && left->roff[mid] + *reclen + 2 > HFS_BLOCKSZ - 2 * (mid + 1)) in n_split()
238 …&& right.roff[nrecs] - right.roff[mid] + left->roff[0] + *reclen + 2 > HFS_BLOCKSZ - 2 * (mid + 1)) in n_split()
253 rec = HFS_NODEREC(*left, i); in n_split()
269 n_compact(left); in n_split()
277 n_search(left, record); in n_split()
[all …]
/openbsd-src/lib/libc/stdlib/
H A Dtsearch.c19 struct node_t *left, *right; member
39 &(*rootp)->left : /* T3: follow left branch */ in tsearch()
46 q->left = q->right = (struct node_t *)0; in tsearch()
68 &(*rootp)->left : /* follow left branch */ in tdelete()
74 if ((q = (*rootp)->left) == (struct node_t *)0) /* Left (struct node_t *)0? */ in tdelete()
77 if (r->left == (struct node_t *)0) { /* D2: Find successor */ in tdelete()
78 r->left = q; in tdelete()
81 for (q = r->left; q->left != (struct node_t *)0; q = r->left) in tdelete()
83 r->left = q->right; in tdelete()
84 q->left = (*rootp)->left; in tdelete()
[all …]
/openbsd-src/usr.bin/ssh/
H A Dsftp-realpath.c63 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; in sftp_realpath() local
87 left_len = strlcpy(left, path + 1, sizeof(left)); in sftp_realpath()
97 left_len = strlcpy(left, path, sizeof(left)); in sftp_realpath()
99 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) { in sftp_realpath()
112 p = strchr(left, '/'); in sftp_realpath()
113 s = p ? p : left + left_len; in sftp_realpath()
114 if (s - left >= (ptrdiff_t)sizeof(next_token)) { in sftp_realpath()
118 memcpy(next_token, left, s - left); in sftp_realpath()
119 next_token[s - left] = '\0'; in sftp_realpath()
120 left_len -= s - left; in sftp_realpath()
[all …]
/openbsd-src/regress/sbin/iked/live/
H A DMakefile122 if [ "$$side" = left ]; then \
166 side=left; \
223 setup_certs: ca-both.crt left-from-ca-both.crt left.key right-from-ca-both.crt \
224 right.key ca-left.crt right-from-ca-left.crt ca-right.crt left-from-ca-right.crt \
225 ca-none.crt left-from-ca-none.crt right-from-ca-none.crt \
226 intermediate-from-ca-none.crt left-from-intermediate-from-ca-none.crt \
264 left.key right.key:
270 left-from-ca-both.crt: ca-both.crt ca-both.key left.key
271 caname=ca-both; name=left; ${SETUP_CERT}
276 ca-left.crt ca-left.key:
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/binary_heap_/
H A Derase_fn_imps.hpp129 const size_type left = partition(pred_t(pred)); in erase_if() local
131 _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()
141 resize_policy::get_new_size_for_arbitrary(left); in erase_if()
145 std::copy(m_a_entries, m_a_entries + left, a_entries); 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()
233 _GLIBCXX_DEBUG_ASSERT(left <= m_size); in partition()
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/gprof/
H A Dsym_ids.c45 left, right; member
183 parse_spec (id->spec, &id->left.sym); in parse_id()
188 printf ("%s:", id->left.sym.file ? id->left.sym.file->name : "*"); in parse_id()
190 if (id->left.sym.name) in parse_id()
191 printf ("%s", id->left.sym.name); in parse_id()
192 else if (id->left.sym.line_num) in parse_id()
193 printf ("%d", id->left.sym.line_num); in parse_id()
268 Sym *sym, *left, *right; in sym_id_parse() local
281 if (match (&id->left.sym, sym)) in sym_id_parse()
282 extend_match (&id->left, sym, &syms[id->which_table], FALSE); in sym_id_parse()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gprof/
H A Dsym_ids.c45 left, right; member
188 parse_spec (id->spec, &id->left.sym);
193 printf ("%s:", id->left.sym.file ? id->left.sym.file->name : "*");
195 if (id->left.sym.name)
196 printf ("%s", id->left.sym.name);
197 else if (id->left.sym.line_num)
198 printf ("%d", id->left.sym.line_num);
279 Sym *sym, *left, *right; in sym_id_parse() local
292 if (match (&id->left.sym, sym)) in sym_id_parse()
293 extend_match (&id->left, sym, &syms[id->which_table], FALSE); in sym_id_parse()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Encode/ucm/
H A DmacHebrew.ucm44 <U0020> \xA0 |0 # SPACE, right-left
45 <U0021> \xA1 |0 # EXCLAMATION MARK, right-left
46 <U0022> \xA2 |0 # QUOTATION MARK, right-left
47 <U0023> \xA3 |0 # NUMBER SIGN, right-left
48 <U0024> \xA4 |0 # DOLLAR SIGN, right-left
49 <U0025> \xA5 |0 # PERCENT SIGN, right-left
51 <U0027> \xA7 |0 # APOSTROPHE, right-left
52 <U0028> \xA9 |0 # LEFT PARENTHESIS, right-left
53 <U0029> \xA8 |0 # RIGHT PARENTHESIS, right-left
54 <U002A> \xAA |0 # ASTERISK, right-left
[all …]
H A DmacArabic.ucm44 <U0020> \xA0 |0 # SPACE, right-left
45 <U0021> \xA1 |0 # EXCLAMATION MARK, right-left
46 <U0022> \xA2 |0 # QUOTATION MARK, right-left
47 <U0023> \xA3 |0 # NUMBER SIGN, right-left
48 <U0024> \xA4 |0 # DOLLAR SIGN, right-left
49 <U0025> \x25 |0 # PERCENT SIGN, left-right
50 <U0026> \xA6 |0 # AMPERSAND, right-left
51 <U0027> \xA7 |0 # APOSTROPHE, right-left
52 <U0028> \xA8 |0 # LEFT PARENTHESIS, right-left
53 <U0029> \xA9 |0 # RIGHT PARENTHESIS, right-left
[all …]
H A DmacFarsi.ucm44 <U0020> \xA0 |0 # SPACE, right-left
45 <U0021> \xA1 |0 # EXCLAMATION MARK, right-left
46 <U0022> \xA2 |0 # QUOTATION MARK, right-left
47 <U0023> \xA3 |0 # NUMBER SIGN, right-left
48 <U0024> \xA4 |0 # DOLLAR SIGN, right-left
49 <U0025> \x25 |0 # PERCENT SIGN, left-right
50 <U0026> \xA6 |0 # AMPERSAND, right-left
51 <U0027> \xA7 |0 # APOSTROPHE, right-left
52 <U0028> \xA8 |0 # LEFT PARENTHESIS, right-left
53 <U0029> \xA9 |0 # RIGHT PARENTHESIS, right-left
[all …]
/openbsd-src/usr.bin/m4/
H A Dparser.y27 %left LOR
28 %left LAND
29 %left '|'
30 %left '^'
31 %left '&'
32 %left EQ NE
33 %left '<' LE '>' GE
34 %left LSHIFT RSHIFT
35 %left '+' '-'
36 %left '*' '/' '%'
/openbsd-src/regress/sys/kern/realpath/
H A Drealpath3.c61 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; in realpath3() local
106 left_len = strlcpy(left, path + 1, sizeof(left)); in realpath3()
116 left_len = strlcpy(left, path, sizeof(left)); in realpath3()
118 if (left_len >= sizeof(left)) { in realpath3()
131 p = strchr(left, '/'); in realpath3()
133 next_token_len = p ? (size_t) (p - left) : left_len; in realpath3()
134 memcpy(next_token, left, next_token_len); in realpath3()
139 memmove(left, p + 1, left_len + 1); in realpath3()
141 left[0] = '\0'; in realpath3()
234 left_len = strlcat(symlink, left, sizeof(symlink)); in realpath3()
[all …]
/openbsd-src/gnu/llvm/llvm/docs/_static/
H A Dllvm.css15 border-collapse: collapse; margin-top: 1em; margin-left: 1em;
33 padding-left: 8pt;
38 h1, .doc_title, .title { text-align: left; font-size: 25pt }
44 text-align: left; font-size: 12pt;
53 .doc_author { text-align: left; font-weight: bold; padding-left: 20pt }
54 .doc_text { text-align: left; padding-left: 20pt; padding-right: 10pt }
56 .doc_footer { text-align: left; padding: 0 0 0 0 }
81 h2+div, h2+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
82 h3+div, h3+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
83 h4+div, h4+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
[all …]

12345678910>>...53