Home
last modified time | relevance | path

Searched refs:left (Results 126 – 150 of 1340) sorted by relevance

12345678910>>...54

/openbsd/usr.bin/mandoc/
H A Dpredefs.in20 * predefined strings from (e.g.) tmac/mdoc/doc-nroff. The left-hand
41 PREDEF("left-bracket", "[")
42 PREDEF("left-parenthesis", "(")
44 PREDEF("left-singlequote", "\\(oq")
46 PREDEF("quote-left", "\\(oq")
/openbsd/gnu/usr.bin/perl/dist/Exporter/t/
H A DExporter.t47 This => [qw(stuff %left)],
67 use vars qw($seatbelt $seat @wailing %left);
71 %left = ( left => "right" );
112 my @imports = qw($seatbelt &Above stuff @wailing %left);
/openbsd/games/battlestar/
H A Droom.c79 left = here.west; in whichway()
86 left = here.east; in whichway()
93 left = here.north; in whichway()
100 left = here.south; in whichway()
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/27_io/
H A Dios_manip_basefield.cc65 oss << ":" << std::setw(11) << std::left; in test01()
77 oss << ":" << std::setw(11) << std::left; in test01()
93 oss << "|" << std::setw(16) << std::left; in test01()
125 o << std::setw(6) << std::left << "cisco"; in test02()
/openbsd/sys/arch/macppc/dev/
H A Ddaca.c161 daca_set_volume(struct daca_softc *sc, int left, int right) in daca_set_volume() argument
165 sc->sc_vol_l = left; in daca_set_volume()
168 left >>= 2; in daca_set_volume()
170 data = left << 8 | right; in daca_set_volume()
H A Dtumbler.c299 tumbler_set_volume(struct tumbler_softc *sc, int left, int right) in tumbler_set_volume() argument
303 sc->sc_vol_l = left; in tumbler_set_volume()
306 left <<= 6; /* XXX for now */ in tumbler_set_volume()
309 vol[0] = left >> 16; in tumbler_set_volume()
310 vol[1] = left >> 8; in tumbler_set_volume()
311 vol[2] = left; in tumbler_set_volume()
/openbsd/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxMap.cpp32 ValueObjectSP left() const { in left() function in MapEntry
143 MapEntry left(x.left()); in tree_min() local
145 while (!left.null()) { in tree_min()
146 if (left.error()) { in tree_min()
150 x = left; in tree_min()
151 left.SetEntry(x.left()); in tree_min()
163 rhs.SetEntry(rhs.left()); in is_left_child()
/openbsd/gnu/usr.bin/perl/t/mro/
H A Dpackage_aliases.t161 @left::ISA = "outer::$tail";
167 print "ok 1", "\n" if left->isa("clone::$tail");
170 print "ok 4", "\n" if left->isa("outer::$tail");
181 @left::ISA = "outer::$tail";
188 print "ok 1", "\n" if left->isa("clone::$tail");
191 print "ok 4", "\n" if left->isa("outer::$tail");
/openbsd/gnu/gcc/gcc/
H A Dstmt.c2138 r->parent = r->left = NULL; in add_case_node()
2708 case_node_ptr left; in balance_case_nodes() local
2732 left = *npp; in balance_case_nodes()
2785 np->left = left; in balance_case_nodes()
2829 if (node->left) in node_has_low_bound()
3002 && node->right->left == 0 in emit_case_nodes()
3004 && tree_int_cst_equal (node->left->low, node->left->high) in emit_case_nodes()
3005 && node->left->left == 0 in emit_case_nodes()
3006 && node->left->right == 0) in emit_case_nodes()
3099 if (node->left->left || node->left->right in emit_case_nodes()
[all …]
/openbsd/sys/dev/pci/drm/i915/selftests/
H A Di915_vma.c377 unsigned int left; in assert_rotated() local
410 if (!left) in assert_rotated()
452 unsigned int left = 0; in assert_remapped() local
465 if (!left) { in assert_remapped()
473 if (left < PAGE_SIZE || left & (PAGE_SIZE-1)) { in assert_remapped()
486 left -= PAGE_SIZE; in assert_remapped()
490 if (!left) in assert_remapped()
494 if (left) { in assert_remapped()
496 left, in assert_remapped()
503 if (!left) in assert_remapped()
[all …]
/openbsd/gnu/usr.bin/binutils/gdb/
H A Df-exp.y206 %left ','
207 %left ABOVE_COMMA
210 %left BOOL_OR
212 %left BOOL_AND
213 %left '|'
214 %left '^'
215 %left '&'
218 %left LSH RSH
219 %left '@'
220 %left '+' '-'
[all …]
/openbsd/gnu/usr.bin/cvs/diff/
H A Dside.c177 print_1sdiff_line (left, sep, right) in print_1sdiff_line() argument
178 char const * const *left; in print_1sdiff_line()
186 if (left)
188 if (left[1][-1] == '\n')
190 col = print_half_line (left, 0, hw);
/openbsd/sys/arch/amd64/amd64/
H A Ducode.c272 cpu_ucode_intel_find(char *data, size_t left, uint32_t current) in cpu_ucode_intel_find() argument
283 while (left > 0) { in cpu_ucode_intel_find()
285 if (left < sizeof(struct intel_ucode_header)) { in cpu_ucode_intel_find()
287 __func__, n, left)); in cpu_ucode_intel_find()
299 if (total_size > left) { in cpu_ucode_intel_find()
301 __func__, n, total_size, left)); in cpu_ucode_intel_find()
311 left -= total_size; in cpu_ucode_intel_find()
/openbsd/usr.sbin/nsd/
H A Dutil.h309 int timespec_compare(const struct timespec *left, const struct timespec *right);
310 void timespec_add(struct timespec *left, const struct timespec *right);
311 void timespec_subtract(struct timespec *left, const struct timespec *right);
314 timeval_to_timespec(struct timespec *left, in timeval_to_timespec() argument
317 left->tv_sec = right->tv_sec; in timeval_to_timespec()
318 left->tv_nsec = 1000 * right->tv_usec; in timeval_to_timespec()
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DTargetCXXABI.h311 friend bool operator==(const TargetCXXABI &left, const TargetCXXABI &right) {
312 return left.getKind() == right.getKind();
315 friend bool operator!=(const TargetCXXABI &left, const TargetCXXABI &right) {
316 return !(left == right);
H A DObjCRuntime.h472 friend bool operator==(const ObjCRuntime &left, const ObjCRuntime &right) {
473 return left.getKind() == right.getKind() &&
474 left.getVersion() == right.getVersion();
477 friend bool operator!=(const ObjCRuntime &left, const ObjCRuntime &right) {
478 return !(left == right);
/openbsd/gnu/usr.bin/perl/cpan/CPAN-Meta-Requirements/t/
H A Dmerge.t121 my $left = CPAN::Meta::Requirements->new;
122 $left->add_minimum(Foo => 0);
123 $left->add_minimum(Bar => 1);
126 $right->add_requirements($left);
/openbsd/usr.bin/awk/
H A Dawkgram.y80 %left BOR
81 %left AND
82 %left GETLINE
85 %left GSUB IF INDEX LSUBSTR MATCHFCN NEXT NUMBER
86 %left PRINT PRINTF RETURN SPLIT SPRINTF STRING SUB SUBSTR
87 %left REGEXPR VAR VARNF IVAR WHILE '('
88 %left CAT
89 %left '+' '-'
90 %left '*' '/' '%'
91 %left NOT UMINUS UPLUS
[all …]
/openbsd/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_report.cpp309 tag_t *left, tag_t *right) { in ShowHeapOrGlobalCandidate() argument
319 } else if (candidate == left) { in ShowHeapOrGlobalCandidate()
355 candidate == left ? untagged_addr - (info.start + info.size) in ShowHeapOrGlobalCandidate()
357 candidate == left ? "after" : "before", info.size, info.name, in ShowHeapOrGlobalCandidate()
437 tag_t *candidate = nullptr, *left = tag_ptr, *right = tag_ptr; in PrintAddressDescription() local
440 if (MemIsShadow(reinterpret_cast<uptr>(left)) && in PrintAddressDescription()
441 TagsEqual(addr_tag, left)) { in PrintAddressDescription()
442 candidate = left; in PrintAddressDescription()
445 --left; in PrintAddressDescription()
457 ShowHeapOrGlobalCandidate(untagged_addr, candidate, left, right); in PrintAddressDescription()
[all …]
/openbsd/usr.sbin/lpd/
H A Diobuf.c86 size_t left = n; in iobuf_drain() local
88 while ((q = io->outq) && left) { in iobuf_drain()
89 if ((q->wpos - q->rpos) > left) { in iobuf_drain()
90 q->rpos += left; in iobuf_drain()
91 left = 0; in iobuf_drain()
93 left -= q->wpos - q->rpos; in iobuf_drain()
99 io->queued -= (n - left); in iobuf_drain()
/openbsd/usr.sbin/smtpd/
H A Diobuf.c81 size_t left = n; in iobuf_drain() local
83 while ((q = io->outq) && left) { in iobuf_drain()
84 if ((q->wpos - q->rpos) > left) { in iobuf_drain()
85 q->rpos += left; in iobuf_drain()
86 left = 0; in iobuf_drain()
88 left -= q->wpos - q->rpos; in iobuf_drain()
94 io->queued -= (n - left); in iobuf_drain()
/openbsd/sys/arch/i386/i386/
H A Ducode.c295 cpu_ucode_intel_find(char *data, size_t left, uint32_t current) in cpu_ucode_intel_find() argument
306 while (left > 0) { in cpu_ucode_intel_find()
308 if (left < sizeof(struct intel_ucode_header)) { in cpu_ucode_intel_find()
310 __func__, n, left)); in cpu_ucode_intel_find()
322 if (total_size > left) { in cpu_ucode_intel_find()
324 __func__, n, total_size, left)); in cpu_ucode_intel_find()
334 left -= total_size; in cpu_ucode_intel_find()
/openbsd/usr.bin/tmux/
H A Dformat-draw.c174 width_left = left->cx; in format_draw_none()
193 format_draw_put(octx, ocx, ocy, left, frs, 0, 0, width_left); in format_draw_none()
237 width_left = left->cx; in format_draw_left()
267 screen_write_start(&ctx, left); in format_draw_left()
271 format_draw_none(octx, available, ocx, ocy, left, centre, in format_draw_left()
277 format_draw_put(octx, ocx, ocy, left, frs, 0, 0, width_left); in format_draw_left()
340 width_left = left->cx; in format_draw_centre()
374 format_draw_none(octx, available, ocx, ocy, left, centre, in format_draw_centre()
448 width_left = left->cx; in format_draw_right()
482 format_draw_none(octx, available, ocx, ocy, left, centre, in format_draw_right()
[all …]
/openbsd/gnu/usr.bin/perl/cpan/IO-Compress/t/
H A D020isize.t71 my $left = $max ;
95 $left -= $inc ;
98 #print "Write $left\n" ;
99 $gzip->write('x' x $left) ;
101 $expected_crc = crc32('x' x $left, $expected_crc) ;
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dmissed-error3.C68 friend const bool operator==(const List& left,
70 friend const bool operator!=(const List& left,
94 friend const bool operator==(const Array& left, const Array& right);
95 friend const bool operator!=(const Array& left, const Array& right);

12345678910>>...54