Home
last modified time | relevance | path

Searched refs:left (Results 101 – 125 of 1340) sorted by relevance

12345678910>>...54

/openbsd/gnu/gcc/gcc/
H A Dtree-chrec.h101 tree left, in build_polynomial_chrec() argument
104 if (left == chrec_dont_know in build_polynomial_chrec()
108 gcc_assert (TREE_TYPE (left) == TREE_TYPE (right)); in build_polynomial_chrec()
110 return build3 (POLYNOMIAL_CHREC, TREE_TYPE (left), in build_polynomial_chrec()
111 build_int_cst (NULL_TREE, loop_num), left, right); in build_polynomial_chrec()
H A Det-forest.c477 nw->left = NULL; in et_new_tree()
527 struct et_node *left, *right; in et_set_father() local
562 left = right->left; in et_set_father()
564 left = right = t; in et_set_father()
566 left->right = t; in et_set_father()
567 right->left = t; in et_set_father()
568 t->left = left; in et_set_father()
620 t->left->right = t->right; in et_split()
621 t->right->left = t->left; in et_split()
623 t->left = t->right = NULL; in et_split()
/openbsd/sys/dev/isa/
H A Dad1848var.h43 u_char left; member
142 vol->left = vol->right = cp->un.value.level[AUDIO_MIXER_LEVEL_MONO]; in ad1848_to_vol()
146 vol->left = cp->un.value.level[AUDIO_MIXER_LEVEL_LEFT]; in ad1848_to_vol()
157 cp->un.value.level[AUDIO_MIXER_LEVEL_MONO] = vol->left; in ad1848_from_vol()
161 cp->un.value.level[AUDIO_MIXER_LEVEL_LEFT] = vol->left; in ad1848_from_vol()
/openbsd/usr.bin/sdiff/
H A Dsdiff.c40 char *left; member
776 enqueue(char *left, char div, char *right) in enqueue() argument
782 diffp->left = left; in enqueue()
794 free(diffp->left); in freediff()
873 char divc, *left, *right; in processq() local
882 left = NULL; in processq()
898 if (diffp->left) in processq()
899 astrcat(&left, diffp->left); in processq()
915 fprintf(outfp, "%s\n", left); in processq()
918 prompt(left, right); in processq()
[all …]
/openbsd/usr.sbin/smtpd/
H A Dunpack_dns.c198 size_t left, count; in print_dname() local
206 left = max - 1; in print_dname()
207 while (dname[0] && left) { in print_dname()
208 count = (dname[0] < (left - 1)) ? dname[0] : (left - 1); in print_dname()
211 left -= count; in print_dname()
213 if (left) { in print_dname()
214 left -= 1; in print_dname()
/openbsd/gnu/usr.bin/perl/dist/Time-HiRes/t/
H A DWatchdog.pm41 my $left = $TheEnd - time();
42 …_pid before it terminates me in %d seconds (testing took %d seconds).\n", $left, $waitfor - $left);
/openbsd/usr.bin/tmux/
H A Dwindow-tree.c145 int left; member
586 if (((left && right) && sx <= 6) || ((left || right) && sx <= 3)) in window_tree_draw_session()
601 if (left) { in window_tree_draw_session()
608 data->left = -1; in window_tree_draw_session()
637 if (left) in window_tree_draw_session()
719 if (((left && right) && sx <= 6) || ((left || right) && sx <= 3)) in window_tree_draw_window()
734 if (left) { in window_tree_draw_window()
741 data->left = -1; in window_tree_draw_window()
769 if (left) in window_tree_draw_window()
1182 if (data->left != -1 && x <= (u_int)data->left) in window_tree_mouse()
[all …]
/openbsd/regress/lib/libc/asr/bin/
H A Dres_query.c335 size_t left, count; in print_dname() local
343 left = max - 1; in print_dname()
344 while (dname[0] && left) { in print_dname()
345 count = (dname[0] < (left - 1)) ? dname[0] : (left - 1); in print_dname()
348 left -= count; in print_dname()
350 if (left) { in print_dname()
351 left -= 1; in print_dname()
/openbsd/gnu/llvm/llvm/docs/_ocamldoc/
H A Dstyle.css17 body { font: normal 10pt/1.375em helvetica, arial, sans-serif; text-align:left;
30 { font-size : 0.813em; line-height:0; margin-left:0.4ex;}
64 td .info { margin:0; padding:0; margin-left: 2em;} /* Description in indexes */
73 ul > li { margin-left: 1.375em; }
74 ol > li { margin-left: 1.7em; }
92 .paramstable code { margin-left: 1ex; margin-right: 1ex }
93 .sig_block {margin-left: 1em}
/openbsd/gnu/usr.bin/binutils/gprof/
H A Dsymtab.c66 const Sym *left = (const Sym *) lp; local
69 if (left->addr > right->addr)
71 else if (left->addr < right->addr)
74 if (left->is_func != right->is_func)
75 return right->is_func - left->is_func;
77 return left->is_static - right->is_static;
H A Dcg_arcs.c163 const Sym *left = *(const Sym **) lp; local
166 return left->cg.top_order - right->cg.top_order;
552 const Sym *left = *(const Sym **) lp; local
556 diff = (left->cg.prop.self + left->cg.prop.child)
566 if (!left->name && left->cg.cyc.num != 0)
574 if (!left->name)
582 if (left->name[0] != '_' && right->name[0] == '_')
586 if (left->name[0] == '_' && right->name[0] != '_')
590 if (left->ncalls > right->ncalls)
594 if (left->ncalls < right->ncalls)
[all …]
/openbsd/gnu/usr.bin/binutils-2.17/gprof/
H A Dsymtab.c63 const Sym *left = (const Sym *) lp; in cmp_addr() local
66 if (left->addr > right->addr) in cmp_addr()
68 else if (left->addr < right->addr) in cmp_addr()
71 if (left->is_func != right->is_func) in cmp_addr()
72 return right->is_func - left->is_func; in cmp_addr()
74 return left->is_static - right->is_static; in cmp_addr()
H A Dcg_arcs.c156 const Sym *left = *(const Sym **) lp; in cmp_topo() local
159 return left->cg.top_order - right->cg.top_order; in cmp_topo()
540 const Sym *left = *(const Sym **) lp; in cmp_total() local
544 diff = (left->cg.prop.self + left->cg.prop.child) in cmp_total()
554 if (!left->name && left->cg.cyc.num != 0) in cmp_total()
562 if (!left->name) in cmp_total()
570 if (left->name[0] != '_' && right->name[0] == '_') in cmp_total()
574 if (left->name[0] == '_' && right->name[0] != '_') in cmp_total()
578 if (left->ncalls > right->ncalls) in cmp_total()
582 if (left->ncalls < right->ncalls) in cmp_total()
[all …]
/openbsd/sys/uvm/
H A Duvm_object.c130 int i, npages, left, error; in uvm_obj_wire() local
134 left = (end - start) >> PAGE_SHIFT; in uvm_obj_wire()
137 while (left) { in uvm_obj_wire()
139 npages = MIN(FETCH_PAGECOUNT, left); in uvm_obj_wire()
175 left -= npages; in uvm_obj_wire()
/openbsd/gnu/llvm/clang/lib/Analysis/
H A DThreadSafetyLogical.cpp24 return implies(A->left(), LNeg, RHS, RNeg) && in implies()
28 return implies(LHS, LNeg, A->left(), RNeg) && in implies()
34 return implies(A->left(), LNeg, RHS, RNeg) || in implies()
38 return implies(LHS, LNeg, A->left(), RNeg) || in implies()
/openbsd/usr.sbin/nsd/
H A Dutil.c465 if (left->tv_sec < right->tv_sec) { in timespec_compare()
471 if (left->tv_nsec < right->tv_nsec) { in timespec_compare()
486 timespec_add(struct timespec *left, in timespec_add() argument
489 left->tv_sec += right->tv_sec; in timespec_add()
490 left->tv_nsec += right->tv_nsec; in timespec_add()
493 ++left->tv_sec; in timespec_add()
499 timespec_subtract(struct timespec *left, in timespec_subtract() argument
502 left->tv_sec -= right->tv_sec; in timespec_subtract()
503 left->tv_nsec -= right->tv_nsec; in timespec_subtract()
504 if (left->tv_nsec < 0L) { in timespec_subtract()
[all …]
H A Ddname.h124 int dname_is_subdomain(const dname_type *left, const dname_type *right);
185 int dname_compare(const dname_type *left, const dname_type *right);
198 int label_compare(const uint8_t *left, const uint8_t *right);
208 uint8_t dname_label_match_count(const dname_type *left,
377 const dname_type *left,
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.benjamin/
H A Dtypedef03.C14 left = 0x0002, enumerator
35 const int QTS::adjustfield = QTS::left | QTS::right | QTS::internal;
39 const int QTS::adjustfield = QTS::left | QTS::right | QTS::internal;
/openbsd/gnu/llvm/lldb/docs/use/
H A Dpython.rst148 struct tree_node *left;
163 the current word). If we decide to go left, line 15 checks to see if the left
167 indicate we are going left (line 18), and then recurse on the left child (line
169 than going left.
272 left-left-right-right-left.
473 According to Python we need to go left-left-right-right-left from our current
479 (lldb) expr dictionary->left->left->right->right->left->word
637 struct tree_node *left;
679 if (root->left != NULL)
684 new_node->left = NULL;
[all …]
/openbsd/usr.bin/w/
H A Dw.c382 int left; in pr_args() local
386 left = argwidth; in pr_args()
393 fmt_putc('(', &left); in pr_args()
394 fmt_puts(kp->p_comm, &left); in pr_args()
395 fmt_putc(')', &left); in pr_args()
409 fmt_puts(str, &left); in pr_args()
411 fmt_puts(*argv, &left); in pr_args()
413 fmt_puts(*argv, &left); in pr_args()
415 fmt_putc(' ', &left); in pr_args()
/openbsd/lib/libc/net/
H A Dres_random.c138 u_int left, right, tmp; in permute15() local
143 left = (in >> 8) & 0x7f; in permute15()
156 tmp ^= left; in permute15()
157 left = right; in permute15()
161 return (right << 8) | left; in permute15()
/openbsd/sys/net80211/
H A Dieee80211_crypto_tkip.c244 left = m0->m_pkthdr.len - moff; in ieee80211_tkip_encrypt()
246 while (left > 0) { in ieee80211_tkip_encrypt()
264 if (n->m_len > left) in ieee80211_tkip_encrypt()
265 n->m_len = left; in ieee80211_tkip_encrypt()
276 left -= len; in ieee80211_tkip_encrypt()
425 left = n0->m_pkthdr.len - noff; in ieee80211_tkip_decrypt()
427 while (left > 0) { in ieee80211_tkip_decrypt()
440 if (left >= MINCLSIZE) { in ieee80211_tkip_decrypt()
445 if (n->m_len > left) in ieee80211_tkip_decrypt()
446 n->m_len = left; in ieee80211_tkip_decrypt()
[all …]
/openbsd/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_malloc_bisect.h32 uptr left = flags()->malloc_bisect_left; in malloc_bisect() local
34 if (LIKELY(left == 0 && right == 0)) in malloc_bisect()
41 if (h < left || h > right) in malloc_bisect()
/openbsd/gnu/usr.bin/perl/cpan/Socket/t/
H A Dsocketpair.t90 my @left = ("hello ", "world\n");
107 foreach (@left) {
122 $expect = join '', @left;
204 foreach (@left) {
221 $total = join '', @left;
222 foreach my $expect (@left) {
/openbsd/lib/libform/
H A Dfld_def.c100 p->left = _nc_Make_Argument(typ->left, ap, err); in _nc_Make_Argument()
147 p->left = _nc_Copy_Argument(typ, argp->left, err); in _nc_Copy_Argument()
190 _nc_Free_Argument(typ->left, argp->left); in _nc_Free_Argument()

12345678910>>...54