HomeSort by relevance Sort by last modified time
    Searched refs:NI (Results 1 - 25 of 39) sorted by null

1 2

  /external/llvm/include/llvm/MC/
MCInstrInfo.h 35 void InitMCInstrInfo(const MCInstrDesc *D, const unsigned *NI, const char *ND,
38 InstrNameIndices = NI;
  /external/llvm/lib/Analysis/
DominanceFrontier.cpp 79 for (DomTreeNode::const_iterator NI = currentNode->begin(),
80 NE = currentNode->end(); NI != NE; ++NI) {
81 DomTreeNode *IDominee = *NI;
  /external/chromium_org/third_party/openssl/openssl/crypto/rc4/asm/
rc4-ia64.pl 177 $NI = 2;
245 &I(\$c, "padd1 I[%u] = One, I[%u]", $i0 % $NI, $i1 % $NI)if ($p & $pComI);
252 &I(\$c, "KEYADDR(IPr[%u], I[%u])", $i0 % $NIP, $i1 % $NI) if ($p & $pComI);
273 &I(\$c, "cmp.eq pBypass, p0 = I[%u], J", $i1 % $NI) if ($pByp);
  /external/openssl/crypto/rc4/asm/
rc4-ia64.pl 177 $NI = 2;
245 &I(\$c, "padd1 I[%u] = One, I[%u]", $i0 % $NI, $i1 % $NI)if ($p & $pComI);
252 &I(\$c, "KEYADDR(IPr[%u], I[%u])", $i0 % $NIP, $i1 % $NI) if ($p & $pComI);
273 &I(\$c, "cmp.eq pBypass, p0 = I[%u], J", $i1 % $NI) if ($pByp);
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 292 for (SelectionDAG::allnodes_iterator NI = DAG->allnodes_begin(),
293 E = DAG->allnodes_end(); NI != E; ++NI) {
294 SDNode *Node = &*NI;
311 for (SelectionDAG::allnodes_iterator NI = DAG->allnodes_begin(),
312 E = DAG->allnodes_end(); NI != E; ++NI) {
313 NI->setNodeId(-1);
332 SDNode *NI = Worklist.pop_back_val();
335 for (unsigned i = 0, e = NI->getNumOperands(); i != e; ++i
    [all...]
SelectionDAGPrinter.cpp 69 SDNodeIterator NI = SDNodeIterator::begin(TargetNode);
70 std::advance(NI, I.getNode()->getOperand(I.getOperand()).getResNo());
71 return NI;
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp 93 for (ExplodedNodeSet::iterator NI = dstLocation.begin(),
94 NE = dstLocation.end(); NI!=NE; ++NI) {
95 Pred = *NI;
CheckerManager.cpp 121 for (ExplodedNodeSet::iterator NI = PrevSet->begin(), NE = PrevSet->end();
122 NI != NE; ++NI) {
123 checkCtx.runChecker(*I, B, *NI);
530 NI = Src.begin(), NE = Src.end(); NI != NE; ++NI) {
531 ExplodedNode *Pred = *NI;
ExprEngine.cpp     [all...]
BugReporterVisitors.cpp 874 const ExplodedNode *NI = N;
876 ProgramPoint ProgPoint = NI->getLocation();
889 NI = NI->getFirstPred();
890 } while (NI);
    [all...]
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 225 BasicBlock::iterator NI = II->getNormalDest()->getFirstInsertionPt();
228 InvokeNum, false, NI);
296 Instruction *NI = InsertValueInst::Create(AI, EI, 0);
297 NI->insertAfter(EI);
298 AI->replaceAllUsesWith(NI);
301 NI->setOperand(0, AI);
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 103 FE, CO, NI, CU, ZN, GA, GE, AS, SE, BR, KR, RB, SR, Y, ZR, NB, MO, TC, RU, RH, PD, AG, CD,
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 236 MachineBasicBlock::iterator NI = llvm::next(MBBI);
237 if (NI == MBB.end()) return;
239 unsigned Opc = NI->getOpcode();
242 NI->getOperand(0).getReg() == StackPtr) {
244 *NumBytes -= NI->getOperand(2).getImm();
245 MBB.erase(NI);
246 MBBI = NI;
249 NI->getOperand(0).getReg() == StackPtr) {
251 *NumBytes += NI->getOperand(2).getImm();
252 MBB.erase(NI);
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfoImpl.h 291 for (df_iterator<BlockT *> NI = df_begin(EntryBB),
292 NE = df_end(EntryBB); NI != NE; ++NI)
294 assert(*NI != OutsideLoopPreds[i] &&
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 257 Instruction *NI = InsertValueInst::Create(AI, EI, 0);
258 NI->insertAfter(EI);
259 AI->replaceAllUsesWith(NI);
263 NI->setOperand(0, AI);
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 424 final int NI = event.getPointerCount();
426 for (int i = 0; i < NI; i++) {
432 for (int i = 0; i < NI; i++) {
570 final int NI = event.getPointerCount();
581 for (int i = 0; i < NI; i++) {
594 for (int i = 0; i < NI; i++) {
    [all...]
  /frameworks/base/core/jni/
android_util_AssetManager.cpp 910 const jsize NI = env->GetArrayLength(attrs);
912 if (NV < (NI*STYLE_NUM_ENTRIES)) {
932 if (env->GetArrayLength(outIndices) > NI) {
996 for (jsize ii=0; ii<NI; ii++) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp     [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp     [all...]
DAGISelMatcherGen.cpp 207 const SDNodeInfo &NI = CGP.getSDNodeInfo(CGP.getSDNodeNamed("imm"));
208 AddMatcher(new CheckOpcodeMatcher(NI));
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp     [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 437 NewArchiveIterator NI(I, Name);
439 Members.push_back(NI);
441 Members[Pos] = NI;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
threading.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
threading.py     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 440 NameSet::iterator NI = UsedNames.find(name);
441 if (NI != UsedNames.end())
456 NameSet::iterator NI = UsedNames.find(name);
457 if (NI != UsedNames.end())
    [all...]

Completed in 1038 milliseconds

1 2