| /openbsd-src/gnu/llvm/llvm/docs/CommandGuide/ |
| H A D | llvm-objcopy.rst | 33 multiple file formats. 44 specified multiple times to add multiple sections. 67 specified multiple times to dump multiple sections to different files. 97 Can be specified multiple times to keep multiple sections. 105 multiple times to rename multiple symbols. 112 anything following a '#'. Can be specified multiple times to read names from 113 multiple files. 122 Remove the specified section from the output. Can be specified multiple times 123 to remove multiple sections simultaneously. 131 multiple times to update multiple sections. [all …]
|
| H A D | llvm-extract.rst | 32 specified multiple times to extract multiple alias at once. 38 specified multiple times. 43 specified multiple times. Each <function:bb[;bb]> specifier pair will create 44 a function. If multiple basic blocks are specified in one pair, the first 61 specified multiple times to extract multiple functions at once. 67 specified multiple times. 72 specified multiple times to extract multiple global variables at once. 78 extracted. May be specified multiple times.
|
| H A D | llvm-install-name-tool.rst | 29 Add an rpath named ``<rpath>`` to the specified binary. Can be specified multiple 30 times to add multiple rpaths. Throws an error if ``<rpath>`` is already listed in 36 specified binary. Can be specified multiple times to change multiple dependent shared 42 Delete an rpath named ``<rpath>`` from the specified binary. Can be specified multiple 43 times to delete multiple rpaths. Throws an error if ``<rpath>`` is not listed in 57 specified binary. If specified multiple times, only the last :option:`-id` option is 63 multiple times to change multiple rpaths. Throws an error if ``<old_rpath>`` is not listed
|
| H A D | llvm-strip.rst | 31 multiple file formats. 78 Remove the specified section from the output. Can be specified multiple times 79 to remove multiple sections simultaneously. 102 multiple times to remove multiple symbols. 164 ``<section>``. Can be specified multiple times to keep multiple sections. 169 ``<symbol>``. Can be specified multiple times to keep multiple symbols.
|
| /openbsd-src/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-define/errors/defined-check/ |
| H A D | define-multiple-exact.txt | 1 # DEFINE: %{global:multiple-exact} = @ 2 # RUN: echo '%{global:multiple-exact}' 4 # CHECK: ValueError: Substitution whose pattern contains '%{global:multiple-exact}' is already… 5 # CHECK-NEXT: Existing pattern: %{global:multiple-exact} 6 # CHECK-NEXT: Existing pattern: %{global:multiple-exact}
|
| H A D | define-multiple-once-exact.txt | 1 # DEFINE: %{global:multiple-once-exact} = @ 2 # RUN: echo '%{global:multiple-once-exact}' 4 # CHECK: ValueError: Substitution whose pattern contains '%{global:multiple-once-exact}' is al… 5 # CHECK-NEXT: Existing pattern: <%{global:multiple-once-exact}> 6 # CHECK-NEXT: Existing pattern: %{global:multiple-once-exact}
|
| H A D | redefine-multiple-once-exact.txt | 4 # REDEFINE: %{global:multiple-once-exact}=foo 5 # RUN: echo %{global:multiple-once-exact} 7 # CHECK: ValueError: Multiple substitutions whose patterns contain '%{global:multiple-once-exa… 8 # CHECK-NEXT: Existing pattern: <%{global:multiple-once-exact}> 9 # CHECK-NEXT: Existing pattern: %{global:multiple-once-exact}
|
| H A D | redefine-multiple-exact.txt | 5 # REDEFINE: %{global:multiple-exact}=foo 6 # RUN: echo %{global:multiple-exact} 8 # CHECK: ValueError: Multiple substitutions whose patterns contain '%{global:multiple-exact}' … 9 # CHECK-NEXT: Existing pattern: %{global:multiple-exact} 10 # CHECK-NEXT: Existing pattern: %{global:multiple-exact}
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Text-Tabs/t/ |
| H A D | sep.t | 16 This is a test of a very long line. It should be broken up and put onto multiple lines. 17 This is a test of a very long line. It should be broken up and put onto multiple lines. 19 This is a test of a very long line. It should be broken up and put onto multiple lines. 21 …multiple lines.= This is a test of a very long line. It should be broken up and put onto= multipl… 24 This is a test of a very long line. It should be broken up and put onto multiple lines. 26 This is a test of a very long line. It should be broken up and put onto= multiple lines. 29 This is a test of a very long line. It should be broken up and put onto multiple lines. 32 This is a test of a very long line. It should be broken up and put onto= multiple lines. 36 This is a test of a very long line. It should be broken up and put onto multiple This is a test of … 38 …This is a test of a very long line. It should be broken up and put onto= multiple This is a test o…
|
| H A D | sep2.t | 19 This is a test of a very long line. It should be broken up and put onto multiple lines. 20 This is a test of a very long line. It should be broken up and put onto multiple lines. 22 This is a test of a very long line. It should be broken up and put onto multiple lines. 24 This is a test of a very long line. It should be broken up and put onto= multiple lines. 25 This is a test of a very long line. It should be broken up and put onto= multiple lines. 27 This is a test of a very long line. It should be broken up and put onto= multiple lines. 30 This is a test of a very long line. It should be broken up and put onto multiple lines. 32 This is a test of a very long line. It should be broken up and put onto= multiple lines. 35 This is a test of a very long line. It should be broken up and put onto multiple lines. 38 This is a test of a very long line. It should be broken up and put onto= multiple lines. [all …]
|
| H A D | wrap.t | 19 This is a test of a very long line. It should be broken up and put onto multiple lines. 20 This is a test of a very long line. It should be broken up and put onto multiple lines. 22 This is a test of a very long line. It should be broken up and put onto multiple lines. 25 multiple lines. 27 multiple lines. 30 multiple lines. 33 This is a test of a very long line. It should be broken up and put onto multiple lines. 36 multiple lines. 39 This is a test of a very long line. It should be broken up and put onto multiple lines. 43 multiple lines. [all …]
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/xray/ |
| H A D | xray_utils.h | 63 constexpr size_t nearest_boundary(size_t number, size_t multiple) { in nearest_boundary() argument 64 return multiple * ((number / multiple) + (number % multiple ? 1 : 0)); in nearest_boundary()
|
| /openbsd-src/sys/dev/pci/drm/amd/display/dc/dml/ |
| H A D | dml_inline_defs.h | 126 unsigned int multiple, in dml_round_to_multiple() argument 131 if (multiple == 0) in dml_round_to_multiple() 134 remainder = num % multiple; in dml_round_to_multiple() 140 return (num + multiple - remainder); in dml_round_to_multiple()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/ |
| H A D | net34.C | 24 class multiple : public bar_1, public bar_2 { 26 multiple(int i1, int i2) : bar_1(i1), bar_2(i2) {} in multiple() function 36 multiple m(1,2); in main()
|
| /openbsd-src/gnu/usr.bin/perl/dist/constant/lib/ |
| H A D | constant.pm | 59 my $multiple = ref $_[0]; 69 if ( $multiple ) { 144 if ($multiple || @_ == 1) { 145 my $scalar = $multiple ? $constants->{$orig_name} : $_[0];
|
| /openbsd-src/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-define/ |
| H A D | lit.cfg | 39 config.substitutions.insert(0, ('%{global:multiple-exact}', 'first')) 40 config.substitutions.insert(0, ('%{global:multiple-exact}', 'second')) 42 # Even though '%{global:multiple-once-exact}' is the exact pattern of only one 45 config.substitutions.insert(0, ('%{global:multiple-once-exact}', '@')) 46 config.substitutions.insert(0, ('<%{global:multiple-once-exact}>', '<@>'))
|
| /openbsd-src/regress/usr.sbin/btrace/ |
| H A D | if.ok | 3 multiple statements in else-if branch 4 multiple (4) statements
|
| H A D | if.bt | 21 printf("multiple statements in "); 30 printf("multiple ");
|
| /openbsd-src/sbin/pdisk/ |
| H A D | pdisk.c | 317 unsigned long multiple; in get_size_argument() local 323 multiple = get_multiplier(map->sbBlkSize); in get_size_argument() 324 if (multiple == 0) { in get_size_argument() 326 } else if (multiple != 1) { in get_size_argument() 327 *number *= multiple; in get_size_argument()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/ |
| H A D | enc-chars.t | 57 # Test multiple =encoding declarations. 71 Confirm that the parser detects multiple encodings and complains. 76 like($output, qr/Cannot have multiple =encoding directives/);
|
| /openbsd-src/gnu/llvm/llvm/utils/docker/ |
| H A D | build_docker_image.sh | 34 -c|--cherrypick revision to cherry-pick. Can be specified multiple times. 40 Can be specified multiple times. 46 the resulting archive. Can be specified multiple times.
|
| /openbsd-src/regress/sbin/pfctl/ |
| H A D | pf55.in | 4 set timeout { udp.first 356, udp.single 73, udp.multiple 34 } 6 set timeout { other.first 455, other.single 54, other.multiple 324 }
|
| H A D | pf55.ok | 11 set timeout udp.multiple 34 16 set timeout other.multiple 324
|
| /openbsd-src/usr.bin/ssh/ |
| H A D | PROTOCOL.krl | 79 This section may appear multiple times. 92 This section may appear multiple times. 105 This section may appear multiple times. 117 multiple times. 154 This section may appear multiple times. 170 This section may appear multiple times. 215 This section must appear last in the KRL. If multiple signature sections
|
| /openbsd-src/gnu/llvm/llvm/docs/GlobalISel/ |
| H A D | RegBankSelect.rst | 20 select the best variant for an instruction that's available on multiple banks. 27 The ``RegisterBankInfo`` class describes multiple aspects of register banks. 65 * **Global** --- Across multiple instructions, pick the cheapest combination of
|