OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sections
(Results
76 - 100
of
6560
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-selective/
keepdot0.ld
0
SECTIONS
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-spu/
ovl1.lnk
0
SECTIONS
/external/clang/test/OpenMP/
parallel_sections_misc_messages.c
5
// expected-error@+1 {{unexpected OpenMP directive '#pragma omp parallel
sections
'}}
6
#pragma omp parallel
sections
8
// expected-error@+1 {{unexpected OpenMP directive '#pragma omp parallel
sections
'}}
9
#pragma omp parallel
sections
foo
13
#pragma omp parallel
sections
18
// expected-error@+2 {{the statement for '#pragma omp parallel
sections
' must be a compound statement}}
19
#pragma omp parallel
sections
22
#pragma omp parallel
sections
25
foo(); // expected-error {{statement in 'omp parallel
sections
' directive must be enclosed into a section region}}
37
#pragma omp parallel
sections
[
all
...]
parallel_sections_if_messages.cpp
14
#pragma omp parallel
sections
if // expected-error {{expected '(' after 'if'}}
18
#pragma omp parallel
sections
if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
22
#pragma omp parallel
sections
if () // expected-error {{expected expression}}
26
#pragma omp parallel
sections
if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
30
#pragma omp parallel
sections
if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp parallel
sections
' are ignored}}
34
#pragma omp parallel
sections
if (argc > 0 ? argv[1] : argv[2])
38
#pragma omp parallel
sections
if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp parallel
sections
' cannot contain more than one 'if' clause}}
42
#pragma omp parallel
sections
if (S) // expected-error {{'S' does not refer to a value}
[
all
...]
sections_firstprivate_messages.cpp
70
#pragma omp
sections
firstprivate // expected-error {{expected '(' after 'firstprivate'}}
75
#pragma omp
sections
firstprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
80
#pragma omp
sections
firstprivate() // expected-error {{expected expression}}
85
#pragma omp
sections
firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
90
#pragma omp
sections
firstprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
95
#pragma omp
sections
firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
100
#pragma omp
sections
firstprivate(argc)
105
#pragma omp
sections
firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
110
#pragma omp
sections
firstprivate(a, b) // expected-error {{firstprivate variable with incomplete type 'S1'}}
115
#pragma omp
sections
firstprivate(argv[1]) // expected-error {{expected variable name}
[
all
...]
parallel_sections_default_messages.cpp
6
#pragma omp parallel
sections
default // expected-error {{expected '(' after 'default'}}
8
#pragma omp parallel
sections
default( // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
10
#pragma omp parallel
sections
default() // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
12
#pragma omp parallel
sections
default(none // expected-error {{expected ')'}} expected-note {{to match this '('}}
14
#pragma omp parallel
sections
default(shared), default(shared) // expected-error {{directive '#pragma omp parallel
sections
' cannot contain more than one 'default' clause}}
16
#pragma omp parallel
sections
default(x) // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
26
#pragma omp parallel
sections
default(none)
31
#pragma omp parallel
sections
default(none)
33
#pragma omp parallel
sections
default(shared
[
all
...]
parallel_sections_proc_bind_messages.cpp
6
#pragma omp parallel
sections
proc_bind // expected-error {{expected '(' after 'proc_bind'}}
8
#pragma omp parallel
sections
proc_bind( // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
10
#pragma omp parallel
sections
proc_bind() // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}}
12
#pragma omp parallel
sections
proc_bind(master // expected-error {{expected ')'}} expected-note {{to match this '('}}
14
#pragma omp parallel
sections
proc_bind(close), proc_bind(spread) // expected-error {{directive '#pragma omp parallel
sections
' cannot contain more than one 'proc_bind' clause}}
16
#pragma omp parallel
sections
proc_bind(x) // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}}
19
#pragma omp parallel
sections
proc_bind(master)
22
#pragma omp parallel
sections
proc_bind(close)
24
#pragma omp parallel
sections
proc_bind(spread
[
all
...]
parallel_sections_num_threads_messages.cpp
14
#pragma omp parallel
sections
num_threads // expected-error {{expected '(' after 'num_threads'}}
16
#pragma omp parallel
sections
num_threads ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18
#pragma omp parallel
sections
num_threads () // expected-error {{expected expression}}
20
#pragma omp parallel
sections
num_threads (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
22
#pragma omp parallel
sections
num_threads (argc)) // expected-warning {{extra tokens at the end of '#pragma omp parallel
sections
' are ignored}}
24
#pragma omp parallel
sections
num_threads ((argc > 0) ? argv[1] : argv[2]) // expected-error 2 {{expression must have integral or unscoped enumeration type, not 'char *'}}
26
#pragma omp parallel
sections
num_threads (foobool(argc)), num_threads (true), num_threads (-5) // expected-error 2 {{directive '#pragma omp parallel
sections
' cannot contain more than one 'num_threads' clause}} expected-error {{argument to 'num_threads' clause must be a strictly positive integer value}}
28
#pragma omp parallel
sections
num_threads (S) // expected-error {{'S' does not refer to a value}
[
all
...]
parallel_sections_firstprivate_messages.cpp
69
#pragma omp parallel
sections
firstprivate // expected-error {{expected '(' after 'firstprivate'}}
73
#pragma omp parallel
sections
firstprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
77
#pragma omp parallel
sections
firstprivate() // expected-error {{expected expression}}
81
#pragma omp parallel
sections
firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
85
#pragma omp parallel
sections
firstprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
89
#pragma omp parallel
sections
firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
93
#pragma omp parallel
sections
firstprivate(argc)
97
#pragma omp parallel
sections
firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
101
#pragma omp parallel
sections
firstprivate(a, b) // expected-error {{firstprivate variable with incomplete type 'S1'}}
105
#pragma omp parallel
sections
firstprivate(argv[1]) // expected-error {{expected variable name}
[
all
...]
sections_lastprivate_messages.cpp
71
#pragma omp
sections
lastprivate // expected-error {{expected '(' after 'lastprivate'}}
76
#pragma omp
sections
lastprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
81
#pragma omp
sections
lastprivate() // expected-error {{expected expression}}
86
#pragma omp
sections
lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
91
#pragma omp
sections
lastprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
96
#pragma omp
sections
lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
101
#pragma omp
sections
lastprivate(argc)
106
#pragma omp
sections
lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
111
#pragma omp
sections
lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
116
#pragma omp
sections
lastprivate(argv[1]) // expected-error {{expected variable name}
[
all
...]
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-nios2/
relax_call26_multi.ld
2
In this case, input
sections
text0 and text1 cannot share stubs
3
because they are in different output
sections
. */
8
SECTIONS
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
dynamic-sections.t
0
SECTIONS
6
/* The .rel*
sections
are typically placed here, because of the way
7
elf32.em handles orphaned
sections
. A bug introduced on 2002-06-10
/external/clang/test/Driver/
nozlibcompress.c
1
// RUN: %clang -c %s -Wa,--compress-debug-
sections
2>&1 | FileCheck %s
2
// RUN: %clang -c %s -Wa,--compress-debug-
sections
-Wa,--nocompress-debug-
sections
2>&1 | FileCheck --check-prefix=NOWARN %s
5
// CHECK: warning: cannot compress debug
sections
(zlib not installed)
6
// NOWARN-NOT: warning: cannot compress debug
sections
(zlib not installed)
compress.c
1
// RUN: %clang -### -c -integrated-as -Wa,-compress-debug-
sections
%s 2>&1 | FileCheck --check-prefix=COMPRESS_DEBUG %s
2
// RUN: %clang -### -c -integrated-as -Wa,--compress-debug-
sections
%s 2>&1 | FileCheck --check-prefix=COMPRESS_DEBUG %s
5
// COMPRESS_DEBUG: "-compress-debug-
sections
"
7
// RUN: %clang -### -c -integrated-as -Wa,--compress-debug-
sections
-Wa,--nocompress-debug-
sections
%s 2>&1 | FileCheck --check-prefix=NOCOMPRESS_DEBUG %s
8
// NOCOMPRESS_DEBUG-NOT: "-compress-debug-
sections
"
cloudabi.c
2
// CHECK: "-cc1" "-triple" "x86_64-unknown-cloudabi" {{.*}} "-ffunction-
sections
" "-fdata-
sections
"
3
// CHECK: "-Bstatic" "--eh-frame-hdr" "--gc-
sections
" "-o" "a.out" "crt0.o" "crtbegin.o" "{{.*}}" "{{.*}}" "-lc" "-lcompiler_rt" "crtend.o"
/ndk/tests/device/test-stlport_shared-exception/jni/
gcsec1.cpp
3
-ffunction-
sections
or -fdata-
sections
. */
5
/* { dg-require-gc-
sections
"" } */
6
/* { dg-options "-ffunction-
sections
-Wl,--gc-
sections
" } */
/ndk/tests/device/test-stlport_static-exception/jni/
gcsec1.cpp
3
-ffunction-
sections
or -fdata-
sections
. */
5
/* { dg-require-gc-
sections
"" } */
6
/* { dg-options "-ffunction-
sections
-Wl,--gc-
sections
" } */
/external/llvm/test/Object/
coff-invalid.test
2
RUN: FileCheck --check-prefix=
SECTIONS
%s
4
SECTIONS
: Section {
5
SECTIONS
-NEXT: Number: 1
6
SECTIONS
-NEXT: Name: .text (2E 74 65 78 74 00 00 00)
7
SECTIONS
-NEXT: VirtualSize: 0x0
8
SECTIONS
-NEXT: VirtualAddress: 0x1000000
13
CHECK:
Sections
with relocations should have an address of 0
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
orphan4.ld
2
we're linking has
sections
named ".foo". Make sure these
sections
7
SECTIONS
{
/external/compiler-rt/test/asan/TestCases/Linux/
globals-gc-sections.cc
1
// RUN: %clangxx_asan %s -o %t -Wl,--gc-
sections
-ffunction-
sections
-mllvm -asan-globals=0
2
// RUN: %clangxx_asan %s -o %t -Wl,--gc-
sections
-ffunction-
sections
-mllvm -asan-globals=1
/external/llvm/test/Bindings/llvm-c/
objectfile.ll
1
; RUN: not llvm-c-test --object-list-
sections
< /dev/null
/external/llvm/test/CodeGen/X86/
global-sections-comdat.ll
2
; RUN: llc < %s -mtriple=i386-unknown-linux -data-
sections
-function-
sections
| FileCheck %s -check-prefix=LINUX-
SECTIONS
3
; RUN: llc < %s -mtriple=i386-unknown-linux -data-
sections
-function-
sections
-unique-section-names=false | FileCheck %s -check-prefix=LINUX-
SECTIONS
-SHORT
31
; LINUX-
SECTIONS
: .section .text.F1,"axG",@progbits,F1,comdat
32
; LINUX-
SECTIONS
: .size F1,
33
; LINUX-
SECTIONS
-NEXT: .cfi_endproc
34
; LINUX-
SECTIONS
-NEXT: .section .rodata.F1,"aG",@progbits,F1,comda
[
all
...]
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
resource-func-unit-2.d
1
#name: C6X parallel instructions on same functional unit, multiple
sections
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
data-only-map.ld
4
SECTIONS
script-type.ld
0
SECTIONS
{
Completed in 871 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>