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

1234

/freebsd-9.3-release/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-9.3-release/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-9.3-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXSplitBBatBar.cpp37 BasicBlock::iterator IE = BI->end(); local
41 while (II != IE) {
50 if ((II != IE) && (!II->isTerminator())) {
H A DNVPTXLowerAggrCopies.cpp116 for (BasicBlock::iterator II = BI->begin(), IE = BI->end(); II != IE;
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DRegisterScavenging.h135 IE = Scavenged.end(); I != IE; ++I)
145 IE = Scavenged.end(); I != IE; ++I)
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DOcamlGCPrinter.cpp109 for (iterator I = begin(), IE = end(); I != IE; ++I) {
123 for (iterator I = begin(), IE = end(); I != IE; ++I) {
/freebsd-9.3-release/contrib/llvm/lib/Analysis/IPA/
H A DFindUsedTypes.cpp77 for (const_inst_iterator II = inst_begin(F), IE = inst_end(F);
78 II != IE; ++II) {
H A DCallGraph.cpp51 for (BasicBlock::iterator II = BB->begin(), IE = BB->end(); II != IE;
/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp307 std::map<std::string, std::vector<std::string> >::iterator IE, EE; local
308 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) {
309 const std::string &Case = IE->first;
310 std::vector<std::string> &InstList = IE->second;
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DPartiallyInlineLibCalls.cpp67 for (BasicBlock::iterator II = CurrBB->begin(), IE = CurrBB->end();
68 II != IE; ++II) {
H A DLoopRerollPass.cpp372 IE = Header->getFirstInsertionPt(); I != IE; ++I) {
447 IE = Header->getFirstInsertionPt(); I != IE; ++I) {
519 IE = Roots.end(); I != IE; ++I)
1178 IE = PossibleIVs.end(); I != IE; ++I)
/freebsd-9.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp245 } else if (InsertElementInst *IE = dyn_cast<InsertElementInst>(I)) {
247 if (IE->getOperand(2) == EI.getOperand(1))
248 return ReplaceInstUsesWith(EI, IE->getOperand(1));
251 if (isa<Constant>(IE->getOperand(2)) && isa<Constant>(EI.getOperand(1))) {
253 EI.setOperand(0, IE->getOperand(0));
476 Instruction *InstCombiner::visitInsertElementInst(InsertElementInst &IE) { argument
477 Value *VecOp = IE.getOperand(0);
478 Value *ScalarOp = IE.getOperand(1);
479 Value *IdxOp = IE.getOperand(2);
483 ReplaceInstUsesWith(IE, VecO
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DSpecialCaseList.cpp152 IE = I->second.end();
153 II != IE; ++II) {
165 IE = I->second.end();
166 II != IE; ++II) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp577 void ExprEngine::VisitInitListExpr(const InitListExpr *IE, argument
584 QualType T = getContext().getCanonicalType(IE->getType());
585 unsigned NumInitElements = IE->getNumInits();
587 if (!IE->isGLValue() &&
596 B.generateNode(IE, Pred, state->BindExpr(IE, LCtx, V));
600 for (InitListExpr::const_reverse_iterator it = IE->rbegin(),
601 ei = IE->rend(); it != ei; ++it) {
606 B.generateNode(IE, Pred,
607 state->BindExpr(IE, LCt
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp418 for (Loop::block_iterator I = L->block_begin(), IE = L->block_end();
419 I != IE; ++I)
430 IE = ExitingBlocks.end(); I != IE; ++I) {
580 for (MachineBasicBlock::iterator IE = MBB->begin();; --I) {
597 if (I == IE)
635 for (MachineFunction::iterator I = MF.begin(), IE = MF.end();
636 I != IE; ++I) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DNonNullParamChecker.cpp105 if (const InitListExpr *IE =
107 ArgE = dyn_cast<Expr>(*(IE->begin()));
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DScopeInfo.cpp63 const ObjCIvarRefExpr *IE = cast<ObjCIvarRefExpr>(E); local
64 D = IE->getDecl();
65 IsExact = IE->getBase()->isObjCSelfExpr();
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DStackColoring.cpp510 MachineBasicBlock::iterator I, IE; local
512 for (I = BB->begin(), IE = BB->end(); I != IE; ++I) {
600 MachineBasicBlock::const_iterator I, IE; local
602 for (I = BB->begin(), IE = BB->end(); I != IE; ++I) {
H A DScheduleDAGInstrs.cpp103 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
104 I != IE; ++I) {
142 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
143 I != IE; ++I) {
478 IE = Objs.end(); I != IE; ++I) {
618 for (std::set<SUnit *>::iterator I = CheckList.begin(), IE = CheckList.end();
619 I != IE; ++I) {
892 MapVector<const Value *, SUnit *>::iterator IE = local
894 if (I != IE) {
973 MapVector<const Value *, SUnit *>::iterator IE = local
[all...]
H A DRegisterScavenging.cpp48 IE = Scavenged.end(); I != IE; ++I) {
185 IE = Scavenged.end(); I != IE; ++I) {
/freebsd-9.3-release/contrib/llvm/lib/IR/
H A DBasicBlock.cpp347 for (iterator II = Succ->begin(), IE = Succ->end(); II != IE; ++II) {
/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMBaseInfo.h91 IE = 2, enumerator in enum:llvm::ARM_PROC::IMod
113 case IE: return "ie";
/freebsd-9.3-release/contrib/llvm/lib/Target/
H A DTargetMachineC.cpp78 IE = TargetRegistry::end(); IT != IE; ++IT) {
/freebsd-9.3-release/contrib/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp350 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end();
351 II != IE; ++II)
561 for (User::op_iterator II = User->op_begin() + 1, IE = User->op_end();
562 II != IE; ++II)
686 IE = SI->end(); II != IE; ++II) {
837 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end();
838 II != IE; ++II)

Completed in 302 milliseconds

1234