OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vla2
(Results
1 - 2
of
2
) 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/
parallel_firstprivate_codegen.cpp
262
double
vla2
[n][n] __attribute__((aligned(128)));
local
264
#pragma omp parallel firstprivate(s, vla1,
vla2
)
265
vla1[b] =
vla2
[1][n - 1] = a = b;
271
double
vla2
[n][n] __attribute__((aligned(128)));
local
284
#pragma omp parallel firstprivate(a, s, vla1,
vla2
)
Completed in 54 milliseconds