Home
last modified time | relevance | path

Searched refs:IE (Results 1 – 25 of 149) sorted by relevance

123456

/NextBSD/sys/contrib/ngatm/netnatm/sig/
HDunimkmsg.h50 #define MK_IE_CALLSTATE(IE,CS) \ argument
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) \ argument
61 (IE).h.present = 0; \
62 IE_SETPRESENT(IE); \
63 (IE).h.coding = UNI_CODING_ITU; \
[all …]
/NextBSD/sys/contrib/ngatm/netnatm/msg/
HDuni_hdr.h195 #define IE_ISPRESENT(IE) \ argument
196 (((IE).h.present & (UNI_IE_PRESENT|UNI_IE_EMPTY)) == UNI_IE_PRESENT)
197 #define IE_SETPRESENT(IE) \ argument
198 ((IE).h.present = ((IE).h.present & ~UNI_IE_MASK) | \
201 #define IE_ADDPRESENT(IE) \ argument
202 ((IE).h.present = ((IE).h.present & ~UNI_IE_EMPTY) | \
205 #define IE_ISEMPTY(IE) \ argument
206 (((IE).h.present & UNI_IE_MASK) == (UNI_IE_PRESENT | UNI_IE_EMPTY))
207 #define IE_SETEMPTY(IE) \ argument
208 ((IE).h.present = ((IE).h.present & ~UNI_IE_MASK) | \
[all …]
HDpriv.h97 #define GET_IEDECL(IE, CODING) \ argument
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));\
/NextBSD/contrib/llvm/lib/Transforms/InstCombine/
HDInstCombineVectorOps.cpp199 } else if (InsertElementInst *IE = dyn_cast<InsertElementInst>(I)) { in visitExtractElementInst() local
201 if (IE->getOperand(2) == EI.getOperand(1)) in visitExtractElementInst()
202 return ReplaceInstUsesWith(EI, IE->getOperand(1)); in visitExtractElementInst()
205 if (isa<Constant>(IE->getOperand(2)) && isa<Constant>(EI.getOperand(1))) { in visitExtractElementInst()
207 EI.setOperand(0, IE->getOperand(0)); in visitExtractElementInst()
480 Instruction *InstCombiner::visitInsertElementInst(InsertElementInst &IE) { in visitInsertElementInst() argument
481 Value *VecOp = IE.getOperand(0); in visitInsertElementInst()
482 Value *ScalarOp = IE.getOperand(1); in visitInsertElementInst()
483 Value *IdxOp = IE.getOperand(2); in visitInsertElementInst()
487 ReplaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
[all …]
/NextBSD/contrib/llvm/lib/Target/PowerPC/
HDPPCLoopDataPrefetch.cpp114 for (auto I = LI->begin(), IE = LI->end(); I != IE; ++I) in runOnFunction() local
133 for (Loop::block_iterator I = L->block_begin(), IE = L->block_end(); in runOnLoop() local
134 I != IE; ++I) { in runOnLoop()
156 for (Loop::block_iterator I = L->block_begin(), IE = L->block_end(); in runOnLoop() local
157 I != IE; ++I) { in runOnLoop()
HDPPCLoopPreIncPrep.cpp147 for (auto I = LI->begin(), IE = LI->end(); I != IE; ++I) in runOnFunction() local
174 for (Loop::block_iterator I = L->block_begin(), IE = L->block_end(); in runOnLoop() local
175 I != IE; ++I) { in runOnLoop()
332 IE = Buckets[i].end(); I != IE; ++I) { in runOnLoop() local
382 for (Loop::block_iterator I = L->block_begin(), IE = L->block_end(); in runOnLoop() local
383 I != IE; ++I) { in runOnLoop()
HDPPCCTRLoops.cpp461 for (Loop::block_iterator I = L->block_begin(), IE = L->block_end(); in convertToCTRLoop() local
462 I != IE; ++I) in convertToCTRLoop()
473 IE = ExitingBlocks.end(); I != IE; ++I) { in convertToCTRLoop() local
623 for (MachineBasicBlock::iterator IE = MBB->begin();; --I) { in verifyCTRBranch() local
640 if (I == IE) in verifyCTRBranch()
678 for (MachineFunction::iterator I = MF.begin(), IE = MF.end(); in runOnMachineFunction() local
679 I != IE; ++I) { in runOnMachineFunction()
HDPPCVSXCopy.cpp85 for (MachineBasicBlock::iterator I = MBB.begin(), IE = MBB.end(); in processBlock() local
86 I != IE; ++I) { in processBlock()
HDPPCTLSDynamicCall.cpp57 for (MachineBasicBlock::iterator I = MBB.begin(), IE = MBB.end(); in processBlock() local
58 I != IE;) { in processBlock()
/NextBSD/contrib/llvm/include/llvm/CodeGen/
HDRegisterScavenging.h129 IE = Scavenged.end(); I != IE; ++I) in isScavengingFrameIndex() local
139 IE = Scavenged.end(); I != IE; ++I) in getScavengingFrameIndices() local
/NextBSD/contrib/llvm/utils/TableGen/
HDCodeEmitterGen.cpp291 std::map<std::string, std::vector<std::string> >::iterator IE, EE; in run() local
292 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) { in run()
293 const std::string &Case = IE->first; in run()
294 std::vector<std::string> &InstList = IE->second; in run()
/NextBSD/contrib/llvm/lib/CodeGen/AsmPrinter/
HDOcamlGCPrinter.cpp112 IE = Info.funcinfo_end(); in finishAssembly() local
113 I != IE; ++I) { in finishAssembly()
131 IE = Info.funcinfo_end(); in finishAssembly() local
132 I != IE; ++I) { in finishAssembly()
HDErlangGCPrinter.cpp60 IE = Info.funcinfo_end(); in finishAssembly() local
61 FI != IE; ++FI) { in finishAssembly()
/NextBSD/contrib/llvm/lib/ProfileData/
HDSampleProf.cpp24 std::string message(int IE) const override { in message()
25 sampleprof_error E = static_cast<sampleprof_error>(IE); in message()
HDInstrProf.cpp24 std::string message(int IE) const override { in message()
25 instrprof_error E = static_cast<instrprof_error>(IE); in message()
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDExprEngineC.cpp585 void ExprEngine::VisitInitListExpr(const InitListExpr *IE, in VisitInitListExpr() argument
592 QualType T = getContext().getCanonicalType(IE->getType()); in VisitInitListExpr()
593 unsigned NumInitElements = IE->getNumInits(); in VisitInitListExpr()
595 if (!IE->isGLValue() && in VisitInitListExpr()
604 B.generateNode(IE, Pred, state->BindExpr(IE, LCtx, V)); in VisitInitListExpr()
608 for (InitListExpr::const_reverse_iterator it = IE->rbegin(), in VisitInitListExpr()
609 ei = IE->rend(); it != ei; ++it) { in VisitInitListExpr()
614 B.generateNode(IE, Pred, in VisitInitListExpr()
615 state->BindExpr(IE, LCtx, in VisitInitListExpr()
629 V = state->getSVal(IE->getInit(0), LCtx); in VisitInitListExpr()
[all …]
/NextBSD/contrib/llvm/lib/Analysis/
HDCaptureTracking.cpp74 auto IE = BB->end(); in find() local
75 if (LastInstFound != IE) in find()
79 for (++LastInstPos; II != IE; ++II, ++LastInstPos) { in find()
86 assert(II != IE && "Instruction not found?"); in find()
/NextBSD/tools/tools/net80211/wlaninject/
HDREADME67 That is, 010203... The first hexdigit is the type of the IE.
68 Therefore, 00616161 should correspond to the SSID IE of 'aaa'.
71 -S Add an SSID IE with the data specified in ascii; e.g. -S 'aaa'
73 -R Add an IE of 11b supported rates.
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDScopeInfo.cpp73 const ObjCIvarRefExpr *IE = cast<ObjCIvarRefExpr>(E); in getBaseInfo() local
74 D = IE->getDecl(); in getBaseInfo()
75 IsExact = IE->getBase()->isObjCSelfExpr(); in getBaseInfo()
/NextBSD/contrib/llvm/lib/CodeGen/
HDRegisterScavenging.cpp41 IE = Scavenged.end(); I != IE; ++I) { in initRegState() local
180 IE = Scavenged.end(); I != IE; ++I) { in forward() local
/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDPartiallyInlineLibCalls.cpp70 for (BasicBlock::iterator II = CurrBB->begin(), IE = CurrBB->end(); in runOnFunction() local
71 II != IE; ++II) { in runOnFunction()
HDLoopRerollPass.cpp473 IE = Header->getFirstInsertionPt(); I != IE; ++I) { in collectPossibleIVs() local
549 IE = Header->getFirstInsertionPt(); I != IE; ++I) { in collectPossibleReductions() local
620 IE = Roots.end(); I != IE; ++I) in collectInLoopUserSet() local
1513 IE = PossibleIVs.end(); I != IE; ++I) in runOnLoop() local
/NextBSD/contrib/llvm/lib/Transforms/IPO/
HDArgumentPromotion.cpp468 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end(); in isSafeToPromoteArgument() local
469 II != IE; ++II) in isSafeToPromoteArgument()
677 for (User::op_iterator II = UI->op_begin() + 1, IE = UI->op_end(); in DoPromotion() local
678 II != IE; ++II) in DoPromotion()
813 IE = SI->second.end(); in DoPromotion() local
814 II != IE; ++II) { in DoPromotion()
975 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end(); in DoPromotion() local
976 II != IE; ++II) in DoPromotion()
/NextBSD/share/i18n/csmapper/KOI/
DKOI8-E%UCS.src26 0xA4 = 0x0454 # CYRILLIC SMALL LETTER UKRAINIAN IE
42 0xB4 = 0x0404 # CYRILLIC CAPITAL LETTER UKRAINIAN IE
DUCS%KOI8-E.src28 0x0404 = 0xB4 # CYRILLIC CAPITAL LETTER UKRAINIAN IE
43 0x0454 = 0xA4 # CYRILLIC SMALL LETTER UKRAINIAN IE

123456