OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ASE
(Results
1 - 20
of
20
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
InvalidatedIteratorChecker.cpp
45
void checkPreStmt(const ArraySubscriptExpr *
ASE
, CheckerContext &C) const;
100
void InvalidatedIteratorChecker::checkPreStmt(const ArraySubscriptExpr *
ASE
,
103
SVal LVal = State->getSVal(
ASE
->getLHS(), C.getLocationContext());
IteratorRangeChecker.cpp
54
void checkPreStmt(const ArraySubscriptExpr *
ASE
, CheckerContext &C) const;
179
void IteratorRangeChecker::checkPreStmt(const ArraySubscriptExpr *
ASE
,
182
SVal LVal = State->getSVal(
ASE
->getLHS(), C.getLocationContext());
/src/external/apache2/llvm/dist/clang/lib/Analysis/
ReachableCode.cpp
582
const ArraySubscriptExpr *
ASE
= cast<ArraySubscriptExpr>(S);
583
R1 =
ASE
->getLHS()->getSourceRange();
584
R2 =
ASE
->getRHS()->getSourceRange();
585
return
ASE
->getRBracketLoc();
/src/sys/arch/mips/mips/
fp.S
295
PTR_WORD branchc1any2 # sub 9 bc1any2 MIPS-3D
ASE
296
PTR_WORD branchc1any4 # sub 10 bc1any4 MIPS-3D
ASE
348
PTR_WORD recip2_s # func 28 34 RECIP2.S MIPS-3D
ASE
349
PTR_WORD recip1_s # func 29 35 RECIP1.S MIPS-3D
ASE
350
PTR_WORD rsqrt1_s # func 30 36 RSQRT1.S MIPS-3D
ASE
351
PTR_WORD rsqrt2_s # func 31 37 RSQRT2.S MIPS-3D
ASE
414
PTR_WORD recip2_d # func 28 34 RECIP2.D MIPS-3D
ASE
415
PTR_WORD recip2_d # func 29 35 RECIP1.D MIPS-3D
ASE
416
PTR_WORD rsqrt1_d # func 30 36 RSQRT1.D MIPS-3D
ASE
417
PTR_WORD rsqrt2_d # func 31 37 RSQRT2.D MIPS-3D
ASE
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp
4994
if (auto *
ASE
= dyn_cast_or_null<ArraySubscriptExpr>(RefExpr)) {
4995
Expr *Base =
ASE
->getBase()->IgnoreParenImpCasts();
16470
auto *
ASE
= dyn_cast<ArraySubscriptExpr>(RefExpr->IgnoreParens());
16472
if (
ASE
) {
16473
Type =
ASE
->getType().getNonReferenceType();
16497
/*AcceptIfMutable*/ false,
ASE
|| OASE))
16504
if (!
ASE
&& !OASE) {
16610
if (!
ASE
&& !OASE) {
16623
if (!
ASE
&& !OASE) {
16660
(!OASE && !
ASE
&
[
all
...]
SemaExpr.cpp
12696
} else if (const ArraySubscriptExpr *
ASE
=
12698
E =
ASE
->getBase()->IgnoreParenImpCasts();
18062
auto *
ASE
= cast<ArraySubscriptExpr>(E);
18063
Expr *OldBase =
ASE
->getBase()->IgnoreImplicit();
18069
Expr *LHS =
ASE
->getBase() ==
ASE
->getLHS() ? Base.get() :
ASE
->getLHS();
18070
Expr *RHS =
ASE
->getBase() ==
ASE
->getRHS() ? Base.get() :
ASE
->getRHS()
[
all
...]
SemaChecking.cpp
7554
auto
ASE
= dyn_cast<ArraySubscriptExpr>(UnaOp->getSubExpr());
7555
if (UnaOp->getOpcode() == UO_AddrOf &&
ASE
) {
7557
if (
ASE
->getRHS()->EvaluateAsInt(IndexResult, S.Context,
7562
E =
ASE
->getBase();
13573
void VisitArraySubscriptExpr(const ArraySubscriptExpr *
ASE
) {
13578
VisitSequencedExpressions(
ASE
->getLHS(),
ASE
->getRHS());
13580
Visit(
ASE
->getLHS());
13581
Visit(
ASE
->getRHS());
14292
auto *
ASE
= cast<ArraySubscriptExpr>(E)
[
all
...]
SemaInit.cpp
7101
if (auto *
ASE
= dyn_cast<ArraySubscriptExpr>(Init)) {
7102
Init =
ASE
->getBase();
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp
3831
if (const auto *
ASE
= dyn_cast<ArraySubscriptExpr>(Array))
3832
ArrayLV = EmitArraySubscriptExpr(
ASE
, /*Accessed*/ true);
3889
if (auto *
ASE
= dyn_cast<OMPArraySectionExpr>(Base->IgnoreParenImpCasts())) {
3890
BaseLVal = CGF.EmitOMPArraySectionExpr(
ASE
, IsLowerBound);
4055
if (const auto *
ASE
= dyn_cast<ArraySubscriptExpr>(Array))
4056
ArrayLV = EmitArraySubscriptExpr(
ASE
, /*Accessed*/ true);
CGOpenMPRuntimeGPU.cpp
121
if (const auto *
ASE
= dyn_cast<ArraySubscriptExpr>(RefExpr)) {
122
const Expr *Base =
ASE
->getBase()->IgnoreParenImpCasts();
CGOpenMPRuntime.cpp
994
} else if (const auto *
ASE
= dyn_cast<ArraySubscriptExpr>(Ref)) {
995
const Expr *Base =
ASE
->getBase()->IgnoreParenImpCasts();
4154
} else if (const auto *
ASE
=
4157
CGF.EmitOMPArraySectionExpr(
ASE
, /*IsLowerBound=*/false);
CGStmtOpenMP.cpp
6502
while (const auto *
ASE
= dyn_cast<ArraySubscriptExpr>(Base))
6503
Base =
ASE
->getBase()->IgnoreParenImpCasts();
/src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp
3901
if (const ArraySubscriptExpr *
ASE
= dyn_cast<ArraySubscriptExpr>(E))
3902
return
ASE
->getBase()->getType()->isVectorType();
4697
while (auto *
ASE
=
4699
Base =
ASE
->getBase();
ExprConstant.cpp
5927
} else if (auto *
ASE
= dyn_cast<ArraySubscriptExpr>(E)) {
5929
auto *Base =
ASE
->getBase()->IgnoreImplicit();
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp
862
const ArraySubscriptExpr *
ASE
;
863
while ((
ASE
= dyn_cast<ArraySubscriptExpr>(Init)))
864
Init =
ASE
->getBase()->IgnoreImplicit();
/src/external/gpl3/gdb.old/dist/sim/testsuite/mips/
mips32-dsp.s
1
# MIPS32 DSP
ASE
test
mips32-dsp2.s
1
# MIPS32 DSP REV 2
ASE
test
/src/external/gpl3/gdb/dist/sim/testsuite/mips/
mips32-dsp.s
1
# MIPS32 DSP
ASE
test
mips32-dsp2.s
1
# MIPS32 DSP REV 2
ASE
test
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h
12398
const ArraySubscriptExpr *
ASE
=nullptr,
Completed in 197 milliseconds
Indexes created Tue Jun 16 00:25:01 UTC 2026