Home
last modified time | relevance | path

Searched refs:into (Results 1 – 25 of 2218) sorted by relevance

12345678910>>...89

/openbsd/src/sys/arch/hppa/spmath/
Ddivu.S51 add quo,quo,quo ; shift msb bit into carry
54 addc quo,quo,quo ; shift quo with/into carry
56 addc quo,quo,quo ; shift quo with/into carry
58 addc quo,quo,quo ; shift quo with/into carry
60 addc quo,quo,quo ; shift quo with/into carry
62 addc quo,quo,quo ; shift quo with/into carry
64 addc quo,quo,quo ; shift quo with/into carry
66 addc quo,quo,quo ; shift quo with/into carry
68 addc quo,quo,quo ; shift quo with/into carry
70 addc quo,quo,quo ; shift quo with/into carry
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_quarantine_test.cpp44 QuarantineBatch into; in TEST() local
45 into.init(kFakePtr, 4UL); in TEST()
49 into.merge(&from); in TEST()
51 ASSERT_EQ(into.count, 2UL); in TEST()
52 ASSERT_EQ(into.batch[0], kFakePtr); in TEST()
53 ASSERT_EQ(into.batch[1], kFakePtr); in TEST()
54 ASSERT_EQ(into.size, 12UL + sizeof(QuarantineBatch)); in TEST()
55 ASSERT_EQ(into.quarantined_size(), 12UL); in TEST()
64 ASSERT_TRUE(into.count + from.count == QuarantineBatch::kSize); in TEST()
65 ASSERT_TRUE(into.can_merge(&from)); in TEST()
[all …]
/openbsd/src/gnu/usr.bin/perl/t/lib/croak/
Dpp_ctl2 # NAME goto into foreach
7 Can't "goto" into the middle of a foreach loop at - line 3.
9 # NAME goto into given
14 Can't "goto" into a "given" block at - line 3.
20 Can't "goto" into a "given" block at - line 2.
22 # NAME goto into expression
29 Can't "goto" into a binary or list expression at - line 2.
30 Can't "goto" into a binary or list expression at - line 3.
31 Can't "goto" into a binary or list expression at - line 4.
32 Can't "goto" into a binary or list expression at - line 5.
Dpp8 # NAME [perl #119809] Attempt to bless into a reference (tied)
14 Attempt to bless into a reference at - line 4.
16 # NAME [perl #119809] Attempt to bless into a reference (magical)
20 Attempt to bless into a reference at - line 2.
22 # NAME Attempt to bless into a reference after method changes
25 Attempt to bless into a reference at - line 1.
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/Util/
DHashBase.pm57 my $into = caller;
61 …2::Util::HashBase::VERSION{$into} = $ver if !$Test2::Util::HashBase::VERSION{$into} || $Test2::Uti…
63 my $isa = _isa($into);
64 my $attr_list = $Test2::Util::HashBase::ATTR_LIST{$into} ||= [];
65 my $attr_subs = $Test2::Util::HashBase::ATTR_SUBS{$into} ||= {};
68 ($into->can('new') ? () : (new => \&_new)),
95 *{"$into\::$_"} = $subs{$_} for keys %subs;
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/trad/
Ddefined.c35 #error Macro expanding into defined operator test 1
45 #error Macro expanding into defined operator test 2
67 #error Macro expanding into defined operator test 1
77 #error Macro expanding into defined operator test 2
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/
Ddefined.c25 #error Macro expanding into defined operator test 1
35 #error Macro expanding into defined operator test 2
57 #error Macro expanding into defined operator test 1
67 #error Macro expanding into defined operator test 2
/openbsd/src/sys/lib/libkern/arch/hppa/
Dmilli.S481 add arg0,arg0,retreg ; shift msb bit into carry
483 addc retreg,retreg,retreg ; shift retreg with/into carry
485 addc retreg,retreg,retreg ; shift retreg with/into carry
487 addc retreg,retreg,retreg ; shift retreg with/into carry
489 addc retreg,retreg,retreg ; shift retreg with/into carry
491 addc retreg,retreg,retreg ; shift retreg with/into carry
493 addc retreg,retreg,retreg ; shift retreg with/into carry
495 addc retreg,retreg,retreg ; shift retreg with/into carry
497 addc retreg,retreg,retreg ; shift retreg with/into carry
499 addc retreg,retreg,retreg ; shift retreg with/into carry
[all …]
/openbsd/src/regress/usr.bin/mandoc/roff/while/
DMakefile3 REGRESS_TARGETS = basic badargs break into nesting outof
4 LINT_TARGETS = badargs into nesting outof
11 SKIP_GROFF = into nesting outof
Dinto.out_lint1 mandoc: into.in:17:5: UNSUPP: end of .while loop in inner scope
2 mandoc: into.in:20:1: UNSUPP: end of scope with open .while loop
/openbsd/src/gnu/usr.bin/perl/dist/constant/t/
Dconstant.t199 qr/^Constant name 'STDIN' is forced into package main:: a/,
200 qr/^Constant name 'STDOUT' is forced into package main:: at/,
201 qr/^Constant name 'STDERR' is forced into package main:: at/,
202 qr/^Constant name 'ARGV' is forced into package main:: at/,
203 qr/^Constant name 'ARGVOUT' is forced into package main:: at/,
204 qr/^Constant name 'ENV' is forced into package main:: at/,
205 qr/^Constant name 'INC' is forced into package main:: at/,
206 qr/^Constant name 'SIG' is forced into package main:: at/,
/openbsd/src/gnu/usr.bin/perl/cpan/JSON-PP/t/
D118_boolean_values.t58 ok $should_true->isa($true_class), "JSON true turns into a $true_class object";
61 ok $should_false->isa($false_class), "JSON false turns into a $false_class object";
66 is $should_true_json => 'true', "A $true_class object turns into JSON true";
69 is $should_false_json => 'false', "A $false_class object turns into JSON false";
77 ok $should_true->isa('JSON::PP::Boolean'), "JSON true turns into a JSON::PP::Boolean object";
80 ok $should_false->isa('JSON::PP::Boolean'), "JSON false turns into a JSON::PP::Boolean object";
/openbsd/src/gnu/llvm/llvm/docs/GlobalISel/
DInstructionSelect.rst7 This pass transforms generic machine instructions into equivalent
32 possibly-generic MI into a fully target-specific equivalent.
33 It is also responsible for doing the necessary constraining of gvregs into the
37 The ``InstructionSelector`` can fold other instructions into the selected MI,
67 been baked into TableGen but this should not generally be done.
90 * isObviouslySafeToFold() - Check for reasons an instruction can't be sunk and folded into another.
/openbsd/src/gnu/llvm/llvm/lib/Target/X86/
DREADME-SSE.txt23 match them. For example, this should turn into a horizontal add:
50 into:
103 into:
213 This compiles into:
258 "fold" it into the uses, producing something like this:
326 Apply the same transformation that merged four float into a single 128-bit load
332 specified. We should turn int_x86_sse_max_ss and X86ISD::FMIN etc. into other
377 "y" looks good, but "x" does silly movzwl stuff around into a GPR. It seems
401 CodeGen/X86/vec_align.ll tests whether we can turn 4 scalar loads into a single
407 2. The code for turning 4 x load into a single vector load is target
[all …]
/openbsd/src/gnu/llvm/lld/COFF/
DCallGraphSort.cpp140 static void mergeClusters(std::vector<Cluster> &cs, Cluster &into, int intoIdx, in mergeClusters() argument
142 int tail1 = into.prev, tail2 = from.prev; in mergeClusters()
143 into.prev = tail2; in mergeClusters()
147 into.size += from.size; in mergeClusters()
148 into.weight += from.weight; in mergeClusters()
/openbsd/src/gnu/llvm/lld/ELF/
DCallGraphSort.cpp167 static void mergeClusters(std::vector<Cluster> &cs, Cluster &into, int intoIdx, in mergeClusters() argument
169 int tail1 = into.prev, tail2 = from.prev; in mergeClusters()
170 into.prev = tail2; in mergeClusters()
174 into.size += from.size; in mergeClusters()
175 into.weight += from.weight; in mergeClusters()
/openbsd/src/gnu/usr.bin/binutils/gas/doc/
Dc-v850.texi222 Moves the offset into the current section to the specified amount.
263 Computes the higher 16 bits of the given expression and stores it into
271 the result into register 6.
275 Computes the lower 16 bits of the given expression and stores it into
282 register 5, putting the result into register 6.
288 and stores the result into the immediate operand field of the given
290 address of the label 'here' and store it into register 6:
298 pseudo-op the movhi instruction would put 0xFFFF0000 into r6, then the
300 it to 32 bits, 0xFFFFFFFF, and then add it into r6 giving 0xFFFEFFFF
303 stores 0 into r6 (0xFFFF + 1 = 0x0000), so that the movea instruction
[all …]
/openbsd/src/gnu/usr.bin/binutils-2.17/gas/doc/
Dc-v850.texi222 Moves the offset into the current section to the specified amount.
263 Computes the higher 16 bits of the given expression and stores it into
271 the result into register 6.
275 Computes the lower 16 bits of the given expression and stores it into
282 register 5, putting the result into register 6.
288 and stores the result into the immediate operand field of the given
290 address of the label 'here' and store it into register 6:
298 pseudo-op the movhi instruction would put 0xFFFF0000 into r6, then the
300 it to 32 bits, 0xFFFFFFFF, and then add it into r6 giving 0xFFFEFFFF
303 stores 0 into r6 (0xFFFF + 1 = 0x0000), so that the movea instruction
[all …]
/openbsd/src/gnu/llvm/clang/docs/
DClangRepl.rst8 high level programming language into LLVM IR. Then the LLVM IR is executed by
42 Clang-Repl data flow can be divided into roughly 8 phases:
50 3. Clang compiles the input into an AST representation.
59 into machine code targeting the underlying device architecture (eg. Intel
69 into a service which incrementally can consume and execute code. The
/openbsd/src/gnu/llvm/compiler-rt/cmake/Modules/
DCompilerRTCompile.cmake11 # Make space separated -D and -U flags into joined flags.
46 # Write out architecture-specific flags into TARGET_CFLAGS variable.
59 # Compile a source into an object file with COMPILER_RT_TEST_COMPILER using
114 # therefore not able to compile C++ files unless they are copied/symlinked into
127 … " echo 'You should copy or symlink your system C++ headers into ${LLVM_BINARY_DIR}/include/c++'"
136 " echo 'into your build directory:'"
/openbsd/src/gnu/usr.bin/perl/pod/
Dperlopentut.pod139 map the data in your file into actual characters it can work with. Other
262 Perl also lets you open a filehandle into an external program or shell
263 command rather than into a file. You can do this in order to pass data
268 Filehandles into commands are also known as I<pipes>, since they work on
287 into a single, alphabetically sorted list of unique lines before it
290 You could do this through opening an ordinary filehandle into each of
294 merging and sorting into your operating system's own C<sort> command by
295 opening a pipe directly into its output, and get to work that much
301 or die "Couldn't open a pipe into sort: $!";
310 The second argument to C<open>, C<"-|">, makes it a read-pipe into a
[all …]
/openbsd/src/gnu/llvm/lldb/examples/test/
D.lldbtest-config5 split_stderr = True # This will split the stderr into configuration-specific file
6 split_stdout = True # This will split the stdout into configuration-specific file
/openbsd/src/games/wump/
Dwump.info11 Pits -- If you fall into one of the bottomless pits, you find yourself
16 These are a bit more potent, however, and if you stumble into
20 Wumpus -- If you happen to walk into the room the Wumpus is in you'll find
26 there's also a chance that he'll up and move himself into another room,
/openbsd/src/gnu/usr.bin/perl/dist/Locale-Maketext/t/
D04_use_external_lex_cache.t29 …he'}{'Hello World'} && ref $lh->{'_external_lex_cache'}{'Hello World'}, 'compiled into lex_cache');
33 …Hello World'} && ref $lh->{'_external_lex_cache'}{'Hello World'}, 'still compiled into lex_cache');
37 …a key'} && ref $lh->{'_external_lex_cache'}{'This is not a key'}, '_AUTO compiled into lex_cache');
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/
DREADME.compat8 Each test in these suites splits up functionality into two source files
49 Build test pieces into more combinations that will be likely to find
56 - build pieces of the test into shared libraries; this requires
60 - build pieces of the test into static libraries; this requires
65 fit into the test suite.

12345678910>>...89