OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AA
(Results
1 - 25
of
64
) sorted by null
1
2
3
/external/clang/test/CXX/temp/temp.decls/temp.mem/
p3.cpp
3
template <class T> struct
AA
{
/external/clang/test/CodeGen/
decl-in-prototype.c
3
const int
AA
= 5;
6
int f1(enum {
AA
,BB} E) {
12
int f2(enum {
AA
=7,BB} E) {
14
return
AA
;
18
int f(void (*g)(), enum {
AA
,BB} h) {
20
return
AA
;
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p17.cpp
19
typedef A<int>
AA
;
21
template <> int
AA
::foo = 0;
22
int
AA
::bar = 1; // expected-error {{template specialization requires 'template<>'}}
/external/clang/test/SemaTemplate/
instantiate-member-initializers.cpp
22
template <class T> struct
AA
{
AA
(int); };
23
template <class T> class BB : public
AA
<T> {
25
BB() :
AA
<T>(1) {}
/external/clang/test/CodeGenCXX/
virtual-base-cast.cpp
3
struct A { int a; virtual int
aa
(); };
5
struct C : virtual A, virtual B { int c; virtual int
aa
(); virtual int bb(); };
6
struct
AA
{ int a; virtual int
aa
(); };
8
struct CC :
AA
, BB { virtual int
aa
(); virtual int bb(); virtual int cc(); };
/external/clang/test/Sema/
decl-in-prototype.c
3
const int
AA
= 5;
5
int f1(enum {
AA
,BB} E) {
9
int f2(enum {
AA
=7,BB} E) {
10
return
AA
;
22
struct
aA
{
28
int f5(struct
aA
{ struct ab { int j; } b; struct ab { char glorx; } glorx; } *); // expected-warning {{declaration of 'struct
aA
' will not be visible}} expected-warning {{redefinition of 'ab' will not be visible}} expected-warning {{redefinition of 'ab' will not be visible}}
MicrosoftExtensions.c
84
}
AA
;
87
AA
; // expected-warning {{anonymous structs are a Microsoft extension}}
/external/llvm/include/llvm/Analysis/
LoopDependenceAnalysis.h
39
AliasAnalysis *
AA
;
AliasAnalysis.h
59
AliasAnalysis *
AA
; // Previous Alias Analysis to chain to.
75
AliasAnalysis() : TD(0),
AA
(0) {}
147
/// if (
AA
.alias(P1, P2)) { ... }
AliasSetTracker.h
256
void addUnknownInst(Instruction *I, AliasAnalysis &
AA
);
272
AliasAnalysis &
AA
) const;
273
bool aliasesUnknownInst(Instruction *Inst, AliasAnalysis &
AA
) const;
297
AliasAnalysis &
AA
;
311
explicit AliasSetTracker(AliasAnalysis &
aa
) :
AA
(
aa
) {}
375
AliasAnalysis &getAliasAnalysis() const { return
AA
; }
MemoryDependenceAnalysis.h
324
/// Current
AA
implementation, just a cache.
325
AliasAnalysis *
AA
;
/external/llvm/include/llvm/CodeGen/
MachineScheduler.h
47
AliasAnalysis *
AA
;
50
MachineSchedContext(): MF(0), MLI(0), MDT(0), PassConfig(0),
AA
(0), LIS(0) {}
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/basis/
ImprovedNoise.java
60
int
AA
= ImprovedNoise.p[A] + Z;
70
ImprovedNoise.lerp(u, ImprovedNoise.grad3(ImprovedNoise.p[
AA
], x, y, z),
75
ImprovedNoise.lerp(u, ImprovedNoise.grad3(ImprovedNoise.p[
AA
+ 1], x, y, z - 1), // CORNERS
/external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGVLIW.cpp
65
///
AA
- AliasAnalysis for making memory reference queries.
66
AliasAnalysis *
AA
;
70
AliasAnalysis *
aa
,
72
: ScheduleDAGSDNodes(mf), AvailableQueue(availqueue),
AA
(
aa
) {
100
BuildSchedGraph(
AA
);
275
return new ScheduleDAGVLIW(*IS->MF, IS->
AA
, new ResourcePriorityQueue(IS));
/external/llvm/lib/Transforms/Scalar/
Sink.cpp
35
AliasAnalysis *
AA
;
99
AA
= &getAnalysis<AliasAnalysis>();
155
static bool isSafeToMove(Instruction *Inst, AliasAnalysis *
AA
,
164
AliasAnalysis::Location Loc =
AA
->getLocation(L);
167
if (
AA
->getModRefInfo(*I, Loc) & AliasAnalysis::Mod)
182
if (!isSafeToMove(Inst,
AA
, Stores))