/external/clang/test/CodeGenCXX/ |
H A D | mangle-alias-template.cpp | 16 vector<int> VI; local 17 f(VI); 24 h<Vec>(VI);
|
/external/llvm/test/MC/AMDGPU/ |
H A D | smem.s | 1 // RUN: llvm-mc -arch=amdgcn -mcpu=tonga -show-encoding %s | FileCheck -check-prefix=GCN -check-prefix=VI %s 6 ; VI: s_dcache_wb ; encoding: [0x00,0x00,0x84,0xc0,0x00,0x00,0x00,0x00] 10 ; VI: s_dcache_wb_vol ; encoding: [0x00,0x00,0x8c,0xc0,0x00,0x00,0x00,0x00]
|
/external/llvm/lib/IR/ |
H A D | ValueSymbolTable.cpp | 27 for (iterator VI = vmap.begin(), VE = vmap.end(); VI != VE; ++VI) 29 << *VI->getValue()->getType() << "' Name = '" 30 << VI->getKeyData() << "'\n";
|
/external/harfbuzz_ng/src/ |
H A D | hb-ot-shape-complex-indic-table.cc | 102 /* 0900 */ _(Bi,T), _(Bi,T), _(Bi,T), _(Vs,R), _(VI,x), _(VI,x), _(VI,x), _(VI,x), 103 /* 0908 */ _(VI,x), _(VI,x), _(VI,x), _(VI,x), _(VI,x), _(VI, [all...] |
/external/llvm/include/llvm/Analysis/ |
H A D | PHITransAddr.h | 119 if (Instruction *VI = dyn_cast<Instruction>(V)) 120 InstInputs.push_back(VI);
|
H A D | MemoryLocation.h | 67 static MemoryLocation get(const VAArgInst *VI);
|
/external/llvm/lib/Analysis/ |
H A D | MemoryLocation.cpp | 40 MemoryLocation MemoryLocation::get(const VAArgInst *VI) { argument 42 VI->getAAMetadata(AATags); 44 return MemoryLocation(VI->getPointerOperand(), UnknownSize, AATags);
|
/external/llvm/lib/CodeGen/ |
H A D | DFAPacketizer.cpp | 244 for (std::vector<MachineInstr*>::iterator VI = CurrentPacketMIs.begin(), 245 VE = CurrentPacketMIs.end(); VI != VE; ++VI) { 246 MachineInstr *MJ = *VI;
|
H A D | LiveVariables.cpp | 684 VarInfo &VI = getVarInfo(Reg); local 685 std::replace(VI.Kills.begin(), VI.Kills.end(), OldMI, NewMI); 740 LiveVariables::VarInfo &VI = getVarInfo(Reg); local 743 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i) 744 Kills.insert(VI.Kills[i]->getParent()); 751 if (VI.AliveBlocks.test(SuccIdx)) 805 VarInfo &VI = getVarInfo(Reg); local 806 if (Kills.count(Reg) || VI.AliveBlocks.test(SuccBB->getNumber())) 807 VI [all...] |
H A D | StackColoring.cpp | 461 for (auto &VI : MMI->getVariableDbgInfo()) { 462 if (!VI.Var) 464 if (SlotRemap.count(VI.Slot)) { 466 << cast<DILocalVariable>(VI.Var)->getName() << "].\n"); 467 VI.Slot = SlotRemap[VI.Slot];
|
H A D | InlineSpiller.cpp | 550 for (LiveInterval::vni_iterator VI = LI.vni_begin(), VE = LI.vni_end(); 551 VI != VE; ++VI) { 552 VNInfo *VNI2 = *VI; 660 for (LiveInterval::const_vni_iterator VI = LI.vni_begin(), 661 VE = LI.vni_end(); VI != VE; ++VI) { 662 VNInfo *VNI = *VI;
|
/external/llvm/lib/Transforms/IPO/ |
H A D | StripSymbols.cpp | 164 for (ValueSymbolTable::iterator VI = ST.begin(), VE = ST.end(); VI != VE; ) { 165 Value *V = VI->getValue(); 166 ++VI;
|
/external/llvm/utils/TableGen/ |
H A D | CodeEmitterGen.cpp | 51 if (VarInit *VI = dyn_cast<VarInit>(VBI->getBitVar())) 52 if (VI->getName() == VarName) 54 } else if (VarInit *VI = dyn_cast<VarInit>(BI->getBit(bit))) { 55 if (VI->getName() == VarName)
|
H A D | DFAPacketizerEmitter.cpp | 959 auto VI = Visited.find(NewStateResources); local 960 if (VI != Visited.end()) { 961 NewState = VI->second;
|
/external/clang/test/CXX/drs/ |
H A D | dr4xx.cpp | 719 typedef volatile int VI; typedef in namespace:dr466 720 void f(int *a, CI *b, VI *c) { 723 a->~VI(); 726 a->VI::~VI(); 728 a->CI::~VI(); // FIXME: This is invalid; CI and VI are not the same scalar type. 732 b->~VI(); 735 b->VI::~VI(); [all...] |
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | LazyEmittingLayer.h | 133 auto VI = MangledSymbols->find(Name); variable 134 if (VI == MangledSymbols->end()) 136 auto GV = VI->second;
|
/external/llvm/lib/Transforms/Utils/ |
H A D | LoopUnroll.cpp | 364 for (ValueToValueMapTy::iterator VI = VMap.begin(), VE = VMap.end(); 365 VI != VE; ++VI) 366 LastValueMap[VI->first] = VI->second;
|
/external/opencv3/modules/videoio/src/ |
H A D | cap_msmf.cpp | 3597 videoInput VI; member in class:CvCaptureCAM_MSMF 3621 VI(videoInput::getInstance()) 3636 VI.closeDevice(index); 3655 devices = VI.listDevices(true); 3665 VI.setupDevice(try_index, 0, 0, 0); // With maximum frame size. 3669 VI.waitForDevice(try_index); 3674 if( !VI.isFrameNew(try_index) ) 3695 while (VI.isDeviceSetup(index) && !VI.isFrameNew(index)) 3697 return VI [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | RegionStore.cpp | 2082 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); local 2087 for (; Size.hasValue() ? i < Size.getValue() : true ; ++i, ++VI) { 2089 if (VI == VE) 2096 NewB = bindStruct(NewB, ER, *VI); 2098 NewB = bindArray(NewB, ER, *VI); 2100 NewB = bind(NewB, loc::MemRegionVal(ER), *VI); 2131 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); local 2136 if (VI == VE) 2143 NewB = bindArray(NewB, ER, *VI); 2145 NewB = bindStruct(NewB, ER, *VI); 2224 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); local [all...] |
/external/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUInstrInfo.cpp | 340 VI = 1 enumerator in enum:SISubtarget 348 return VI;
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineShifts.cpp | 244 if (Instruction *VI = dyn_cast<Instruction>(V)) { 245 VI->moveBefore(BO); 246 VI->takeName(BO); 284 if (Instruction *VI = dyn_cast<Instruction>(V)) { 285 VI->moveBefore(I); 286 VI->takeName(I);
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | StructurizeCFG.cpp | 608 for (BBValueVector::iterator VI = PI->second.begin(), 609 VE = PI->second.end(); VI != VE; ++VI) { 611 Updater.AddAvailableValue(VI->first, VI->second); 612 Dominator.addBlock(VI->first);
|
H A D | Float2Int.cpp | 453 } else if (Instruction *VI = dyn_cast<Instruction>(V)) { 454 NewOperands.push_back(convert(VI, ToTy));
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfDebug.cpp | 735 for (const auto &VI : MMI->getVariableDbgInfo()) { 736 if (!VI.Var) 738 assert(VI.Var->isValidLocationForIntrinsic(VI.Loc) && 741 InlinedVariable Var(VI.Var, VI.Loc->getInlinedAt()); 743 LexicalScope *Scope = LScopes.findLexicalScope(VI.Loc); 751 RegVar->initializeMMI(VI.Expr, VI.Slot);
|
/external/llvm/lib/Bitcode/Writer/ |
H A D | ValueEnumerator.cpp | 487 for (ValueSymbolTable::const_iterator VI = VST.begin(), VE = VST.end(); 488 VI != VE; ++VI) 489 EnumerateValue(VI->getValue());
|