Searched refs:IE (Results 1 - 25 of 107) sorted by relevance

12345

/freebsd-11-stable/sys/contrib/ngatm/netnatm/sig/
H A Dunimkmsg.h50 #define MK_IE_CALLSTATE(IE,CS) \
52 (IE).h.present = 0; \
53 IE_SETPRESENT(IE); \
54 (IE).h.coding = UNI_CODING_ITU; \
55 (IE).h.act = UNI_IEACT_DEFAULT; \
56 (IE).state = CS; \
59 #define MK_IE_EPREF(IE,EPREF,FLAG) \
61 (IE).h.present = 0; \
62 IE_SETPRESENT(IE); \
63 (IE)
[all...]
/freebsd-11-stable/sys/contrib/ngatm/netnatm/msg/
H A Duni_hdr.h94 UNI_IE_FACILITY = 0x1C, /* Q.2932 facility IE */
153 UNI_IEACT_IGNORE = 0x01, /* ignore IE and proceed */
154 UNI_IEACT_REPORT = 0x02, /* ignore IE, report and proceed */
195 #define IE_ISPRESENT(IE) \
196 (((IE).h.present & (UNI_IE_PRESENT|UNI_IE_EMPTY)) == UNI_IE_PRESENT)
197 #define IE_SETPRESENT(IE) \
198 ((IE).h.present = ((IE).h.present & ~UNI_IE_MASK) | \
201 #define IE_ADDPRESENT(IE) \
202 ((IE)
[all...]
H A Dpriv.h31 * Private definitions for the IE code file.
97 #define GET_IEDECL(IE, CODING) \
101 if((CODING) <= 3 && (IE) <= 255) \
102 if((_decl = uni_ietable[IE][CODING]) != NULL) \
104 if((_decl = uni_ietable[IE][0]) == NULL) \
105 PANIC(("IE %02x,%02x -- no default", CODING,IE));\
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DOrderedBasicBlock.cpp44 auto IE = BB->end(); local
45 if (LastInstFound != IE)
49 for (; II != IE; ++II) {
56 assert(II != IE && "Instruction not found?");
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegisterScavenging.h139 IE = Scavenged.end(); I != IE; ++I)
149 IE = Scavenged.end(); I != IE; ++I)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DOcamlGCPrinter.cpp116 IE = Info.funcinfo_end();
117 I != IE; ++I) {
135 IE = Info.funcinfo_end();
136 I != IE; ++I) {
H A DErlangGCPrinter.cpp56 IE = Info.funcinfo_end();
57 FI != IE; ++FI) {
H A DDwarfCompileUnit.h167 void addImportedEntity(const DIImportedEntity* IE) { argument
168 DIScope *Scope = IE->getScope();
175 ImportedEntities[LocalScope].push_back(IE);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp147 for (MachineBasicBlock::iterator IE = MBB->begin();; --I) {
164 if (I == IE)
202 for (MachineFunction::iterator I = MF.begin(), IE = MF.end();
203 I != IE; ++I) {
H A DPPCTLSDynamicCall.cpp54 for (MachineBasicBlock::iterator I = MBB.begin(), IE = MBB.end();
55 I != IE;) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAggrCopies.cpp70 for (BasicBlock::iterator II = BI->begin(), IE = BI->end(); II != IE;
/freebsd-11-stable/contrib/llvm-project/clang/lib/CrossTU/
H A DCrossTranslationUnit.cpp321 void CrossTranslationUnitContext::emitCrossTUDiagnostics(const IndexError &IE) { argument
322 switch (IE.getCode()) {
325 << IE.getFileName();
329 << IE.getFileName() << IE.getLineNum();
333 << IE.getLineNum();
337 << IE.getFileName() << IE.getTripleToName() << IE.getTripleFromName();
509 [&](const ImportError &IE) {
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DPartiallyInlineLibCalls.cpp98 for (BasicBlock::iterator II = CurrBB->begin(), IE = CurrBB->end();
99 II != IE; ++II) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMTargetStreamer.cpp60 for (unsigned II = 0, IE = Size; II != IE; II++) {
72 for (unsigned II = 0, IE = Size; II != IE; II = II + 2) {
H A DARMBaseInfo.h27 IE = 2, enumerator in enum:llvm::ARM_PROC::IMod
49 case IE: return "ie";
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DScopeInfo.cpp86 const ObjCIvarRefExpr *IE = cast<ObjCIvarRefExpr>(E); local
87 D = IE->getDecl();
88 IsExact = IE->getBase()->isObjCSelfExpr();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIWholeQuadMode.cpp328 for (auto II = MBB.begin(), IE = MBB.end(); II != IE; ++II) {
715 auto II = MBB.getFirstNonPHI(), IE = MBB.end(); local
721 MachineBasicBlock::iterator FirstWQM = IE;
727 MachineBasicBlock::iterator FirstWWM = IE;
733 if (FirstWQM == IE)
736 if (FirstWWM == IE)
741 if (II != IE) {
832 FirstWQM = IE;
833 FirstWWM = IE;
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp732 void ExprEngine::VisitInitListExpr(const InitListExpr *IE, argument
739 QualType T = getContext().getCanonicalType(IE->getType());
740 unsigned NumInitElements = IE->getNumInits();
742 if (!IE->isGLValue() && !IE->isTransparent() &&
751 B.generateNode(IE, Pred, state->BindExpr(IE, LCtx, V));
755 for (InitListExpr::const_reverse_iterator it = IE->rbegin(),
756 ei = IE->rend(); it != ei; ++it) {
761 B.generateNode(IE, Pre
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp128 std::string message(int IE) const override {
129 return getInstrProfErrString(static_cast<instrprof_error>(IE));
184 void SoftInstrProfErrors::addError(instrprof_error IE) { argument
185 if (IE == instrprof_error::success)
189 FirstError = IE;
191 switch (IE) {
509 auto IE = ValueData.end(); local
512 while (I != IE && J != JE) {
607 auto IE = ValueData.end(); local
610 while (I != IE
[all...]
H A DSampleProf.cpp44 std::string message(int IE) const override {
45 sampleprof_error E = static_cast<sampleprof_error>(IE);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp396 if (auto *IE = dyn_cast<InsertElementInst>(I)) {
398 if (IE->getOperand(2) == Index)
399 return replaceInstUsesWith(EI, IE->getOperand(1));
402 if (isa<Constant>(IE->getOperand(2)) && IndexC) {
404 EI.setOperand(0, IE->getOperand(0));
1026 Instruction *InstCombiner::visitInsertElementInst(InsertElementInst &IE) { argument
1027 Value *VecOp = IE.getOperand(0);
1028 Value *ScalarOp = IE.getOperand(1);
1029 Value *IdxOp = IE.getOperand(2);
1032 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE)))
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp500 std::map<std::string, std::vector<std::string>>::iterator IE, EE; local
501 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) {
502 const std::string &Case = IE->first;
503 std::vector<std::string> &InstList = IE->second;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNonNullParamChecker.cpp133 if (const auto *IE = dyn_cast<InitListExpr>(CE->getInitializer()))
134 ArgE = dyn_cast<Expr>(*(IE->begin()));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroEarly.cpp157 for (auto IB = inst_begin(F), IE = inst_end(F); IB != IE;) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSMTConstraintManager.h310 auto I = CZ.begin(), IE = CZ.end(); local
313 if (I != IE) {
317 while (I != IE) {

Completed in 177 milliseconds

12345