OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IE
(Results
1 - 22
of
22
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Sema/
ScopeInfo.cpp
87
const ObjCIvarRefExpr *
IE
= cast<ObjCIvarRefExpr>(E);
88
D =
IE
->getDecl();
89
IsExact =
IE
->getBase()->isObjCSelfExpr();
SemaExprObjC.cpp
739
InitializedEntity
IE
= InitializedEntity::InitializeTemporary(ValueType);
740
ConvertedValueExpr = PerformCopyInitialization(
IE
, ValueExpr->getExprLoc(),
745
InitializedEntity
IE
= InitializedEntity::InitializeParameter(Context,
747
ConvertedValueExpr = PerformCopyInitialization(
IE
, SourceLocation(),
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LiveInterval.cpp
408
const_iterator
ie
= end();
local
416
i = std::upper_bound(i,
ie
, j->start);
431
while (i !=
ie
) {
434
std::swap(
ie
, je);
453
const_iterator
IE
= end();
454
if (I ==
IE
)
476
std::swap(
IE
, JE);
/src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SMTConstraintManager.h
311
auto I = CZ.begin(),
IE
= CZ.end();
314
if (I !=
IE
) {
318
while (I !=
IE
) {
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeEmitterGen.cpp
498
std::map<std::string, std::vector<std::string>>::iterator
IE
, EE;
499
for (
IE
= CaseMap.begin(), EE = CaseMap.end();
IE
!= EE; ++
IE
) {
500
const std::string &Case =
IE
->first;
501
std::vector<std::string> &InstList =
IE
->second;
CodeGenSchedule.cpp
1269
RecIter II = InstDefs->begin(),
IE
= InstDefs->end();
1270
for (; II !=
IE
; ++II) {
1276
if (II ==
IE
)
2037
for (RecIter II = PM.ItinRWDefs.begin(),
IE
= PM.ItinRWDefs.end();
2038
II !=
IE
; ++II) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
CallSiteSplitting.cpp
511
auto
IE
= BB.getTerminator()->getIterator();
514
// case,
IE
will be invalidated and we also have to check the current
516
while (II !=
IE
&& &*II != BB.getTerminator()) {
LoopInterchange.cpp
116
ValueVector::iterator I,
IE
, J, JE;
118
for (I = MemInstr.begin(),
IE
= MemInstr.end(); I !=
IE
; ++I) {
/src/usr.bin/tip/
tip.c
92
char *
IE
;
/src/usr.sbin/makefs/cd9660/
cd9660_eltorito.h
130
boot_catalog_initial_entry
IE
;
/src/external/apache2/llvm/dist/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp
950
DiagList::iterator II,
IE
;
951
for (II = Right.begin(),
IE
= Right.end(); II !=
IE
; ++II) {
966
if (II ==
IE
) {
/src/external/apache2/llvm/dist/llvm/lib/MC/
WinCOFFObjectWriter.cpp
1149
sections::iterator
IE
= Sections.end();
1152
for (; I !=
IE
&& J != JE; ++I, ++J)
/src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProf.cpp
133
std::string message(int
IE
) const override {
134
return getInstrProfErrString(static_cast<instrprof_error>(
IE
));
193
void SoftInstrProfErrors::addError(instrprof_error
IE
) {
194
if (
IE
== instrprof_error::success)
198
FirstError =
IE
;
200
switch (
IE
) {
531
auto
IE
= ValueData.end();
534
while (I !=
IE
&& J != JE) {
629
auto
IE
= ValueData.end();
632
while (I !=
IE
&& I->Value < J->Value
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h
1060
auto *
IE
= dyn_cast<InsertElementInst>(U);
1061
if (!
IE
)
1063
auto *CI = dyn_cast<ConstantInt>(
IE
->getOperand(2));
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIWholeQuadMode.cpp
500
for (auto II = MBB.begin(),
IE
= MBB.end(); II !=
IE
; ++II) {
1032
auto II = MBB.getFirstNonPHI(),
IE
= MBB.end();
1033
while (II !=
IE
) {
1243
auto II = MBB.getFirstNonPHI(),
IE
= MBB.end();
1246
if (II !=
IE
&& II->getOpcode() == AMDGPU::COPY)
1252
MachineBasicBlock::iterator FirstWQM =
IE
;
1258
MachineBasicBlock::iterator FirstStrict =
IE
;
1268
if (FirstWQM ==
IE
)
1271
if (FirstStrict ==
IE
)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMBaseInfo.h
27
IE
= 2,
49
case
IE
: return "
ie
";
/src/external/apache2/llvm/dist/clang/lib/AST/
ItaniumMangle.cpp
4902
const ImaginaryLiteral *
IE
= cast<ImaginaryLiteral>(E);
4908
dyn_cast<FloatingLiteral>(
IE
->getSubExpr())) {
4915
llvm::APSInt Value(cast<IntegerLiteral>(
IE
->getSubExpr())->getValue());
4916
if (
IE
->getSubExpr()->getType()->isSignedIntegerType())
/src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp
434
InitListExpr *
IE
= cast<InitListExpr>(S);
435
children = llvm::makeArrayRef(reinterpret_cast<Stmt**>(
IE
->getInits()),
436
IE
->getNumInits());
5363
if (Expr *
IE
= I->getInit())
5364
IE
->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts()));
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
InstructionSimplify.cpp
4590
/// vector lane (
ie
, the same mask index), so we can eliminate the shuffle(s).
5928
auto *
IE
= cast<InsertElementInst>(I);
5929
Result = SimplifyInsertElementInst(
IE
->getOperand(0),
IE
->getOperand(1),
5930
IE
->getOperand(2), Q);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp
1812
Expr *
IE
= E->getInit(i);
1813
Value *Init = Visit(
IE
);
1822
if (isa<ExtVectorElementExpr>(
IE
)) {
1870
if (isa<ExtVectorElementExpr>(
IE
)) {
CGOpenMPRuntime.cpp
4379
const auto *
IE
= cast<OMPIteratorExpr>(Modifier->IgnoreParenImpCasts());
4380
for (unsigned I = 0, E =
IE
->numOfIterators(); I < E; ++I) {
4381
llvm::Value *Sz = CGF.EmitScalarExpr(
IE
->getHelper(I).Upper);
4869
if (const auto *
IE
= cast_or_null<OMPIteratorExpr>(D.IteratorExpr)) {
4870
for (unsigned I = 0, E =
IE
->numOfIterators(); I < E; ++I) {
4871
llvm::Value *Sz = CGF.EmitScalarExpr(
IE
->getHelper(I).Upper);
4973
if (const auto *
IE
=
4976
for (unsigned I = 0, E =
IE
->numOfIterators(); I < E; ++I) {
4977
llvm::Value *Sz = CGF.EmitScalarExpr(
IE
->getHelper(I).Upper);
7237
const Expr *
IE
= nullptr
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp
3608
void Verifier::visitInsertElementInst(InsertElementInst &
IE
) {
3609
Assert(InsertElementInst::isValidOperands(
IE
.getOperand(0),
IE
.getOperand(1),
3610
IE
.getOperand(2)),
3611
"Invalid insertelement operands!", &
IE
);
3612
visitInstruction(
IE
);
Completed in 175 milliseconds
Indexes created Tue Apr 07 00:22:49 UTC 2026