OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vla2
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/Sema/
c11-typedef-redef.c
15
typedef int
vla2
[N];
typedef
16
typedef
vla2
vla3; // expected-note{{previous definition is here}}
17
typedef
vla2
vla3; // expected-error{{redefinition of typedef for variably-modified type '
vla2
' (aka 'int [N]')}}
/external/clang/test/OpenMP/
teams_firstprivate_codegen.cpp
240
double
vla2
[n][n] __attribute__((aligned(128)));
local
243
#pragma omp teams firstprivate(s, vla1,
vla2
)
244
vla1[b] =
vla2
[1][n - 1] = a = b;
249
double
vla2
[n][n] __attribute__((aligned(128)));
local
265
#pragma omp teams firstprivate(a, s, vla1,
vla2
)
parallel_firstprivate_codegen.cpp
472
double
vla2
[n][n] __attribute__((aligned(128)));
local
474
#pragma omp parallel firstprivate(s, vla1,
vla2
)
475
vla1[b] =
vla2
[1][n - 1] = a = b;
481
double
vla2
[n][n] __attribute__((aligned(128)));
local
494
#pragma omp parallel firstprivate(a, s, vla1,
vla2
)
Completed in 564 milliseconds