Searched defs:Index (Results 76 - 100 of 181) sorted by relevance

12345678

/external/llvm/include/llvm/
H A DPassManagers.h361 unsigned Index = 0; local
364 InheritedAnalysis[Index++] = (*I)->getAvailableAnalysis();
/external/llvm/lib/Target/ARM/
H A DARMMachineFunctionInfo.h247 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; } argument
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp52 unsigned Index = Storage.size(); local
54 if (Index == 0) return;
58 unsigned Target = (Index + 1) / 2 - 1;
59 if (!Precedes(data[Index], data[Target])) return;
60 std::swap(data[Index], data[Target]);
62 Index = Target;
80 unsigned Index = 0; local
82 // With a 1-based index, the children would be Index*2 and Index*2+1.
83 unsigned R = (Index
523 unsigned Index = 1; local
[all...]
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp290 uint64_t Index; local
319 for (Index = Start; Index < End; Index += Size) {
322 if (DisAsm->getInstruction(Inst, Size, memoryObject, Index,
324 outs() << format("%8" PRIx64 ":\t", SectionAddr + Index);
325 DumpBytes(StringRef(Bytes.data() + Index, Size));
347 if (addr >= Index + Size) break;
/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp54 unsigned Index = 0; local
60 ++Index;
62 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
64 return RL->getFieldOffset(Index);
/external/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp545 unsigned Depth = 0, Index = 0; local
552 Index = TTP->getIndex();
559 llvm::tie(Depth, Index) = getDepthAndIndex(ND);
587 !TemplateArgs.hasTemplateArgument(Depth, Index)) {
593 NewPackSize = TemplateArgs(Depth, Index).pack_size();
605 if (PartialDepth == Depth && PartialIndex == Index)
649 unsigned Index; local
654 Index = TTP->getIndex();
675 llvm::tie(Depth, Index) = getDepthAndIndex(ND);
678 !TemplateArgs.hasTemplateArgument(Depth, Index))
[all...]
/external/chromium/net/disk_cache/
H A Ddisk_format.h101 struct Index { struct in namespace:disk_cache
181 int16 this_file; // Index of this file.
238 int32 last_block; // Index of the last written block.
/external/clang/include/clang/Analysis/
H A DAnalysisContext.h257 unsigned Index; member in class:clang::StackFrameContext
264 Block(blk), Index(idx) {}
273 unsigned getIndex() const { return Index; }
/external/clang/tools/libclang/
H A DCIndexDiagnostic.cpp217 CXDiagnostic clang_getDiagnostic(CXTranslationUnit Unit, unsigned Index) { argument
223 if (Index >= Diags->getNumDiagnostics())
226 return Diags->getDiagnostic(Index);
447 unsigned Index) {
449 if (Index < D->getNumDiagnostics())
450 return D->getDiagnostic(Index);
446 clang_getDiagnosticInSet(CXDiagnosticSet Diags, unsigned Index) argument
H A DCIndexCodeCompletion.cpp860 unsigned Index) {
863 if (!Results || Index >= Results->Diagnostics.size())
866 return new CXStoredDiagnostic(Results->Diagnostics[Index], Results->LangOpts);
859 clang_codeCompleteGetDiagnostic(CXCodeCompleteResults *ResultsIn, unsigned Index) argument
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DVertexBuffer.java117 Index, enum constant in enum:VertexBuffer.Type
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h46 MO_FrameIndex, ///< Abstract Stack Frame Index
169 int Index; // For MO_*Index - The index itself. member in union:llvm::MachineOperand::__anon8446::__anon8448::__anon8449
422 return Contents.OffsetedInfo.Val.Index;
500 Contents.OffsetedInfo.Val.Index = Idx;
H A DMachineFrameInfo.h502 int Index = (int)Objects.size() - NumFixedObjects - 1; local
503 assert(Index >= 0 && "Bad frame index!");
505 return Index;
514 int Index = (int)Objects.size() - NumFixedObjects - 1; local
516 return Index;
/external/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp61 unsigned Index; // The index in BBCallbacks for the BasicBlock. member in struct:llvm::MMIAddrLabelMap::AddrLabelSymEntry
118 Entry.Index = BBCallbacks.size()-1;
167 BBCallbacks[Entry.Index] = 0; // Clear the callback.
212 BBCallbacks[OldEntry.Index].setPtr(New); // Update the callback.
217 BBCallbacks[OldEntry.Index] = 0; // Update the callback.
H A DStackColoring.cpp526 SlotIndex Index = Indexes->getInstructionIndex(I); local
528 assert(Interval->find(Index) != Interval->end() &&
H A DMachineFunction.cpp234 unsigned Index = 0; local
239 Result[Index] = *I;
247 Result[Index] = JustLoad;
249 ++Index;
266 unsigned Index = 0; local
271 Result[Index] = *I;
279 Result[Index] = JustStore;
281 ++Index;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp984 SDValue Index) {
985 DebugLoc dl = Index.getDebugLoc();
987 if (Index.getValueType().bitsGT(TLI.getPointerTy()))
988 Index = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Index);
990 Index = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Index);
995 Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(), Index,
983 GetVectorElementPointer(SDValue VecPtr, EVT EltVT, SDValue Index) argument
[all...]
/external/llvm/utils/yaml2obj/
H A Dyaml2obj.cpp340 unsigned Index = getStringIndex(Name); local
341 std::string str = utostr(Index);
548 unsigned Index = getStringIndex(Name); local
550 Sym.Header.Name + 4) = Index;
701 unsigned Index = StringTable.size(); local
704 StringTableMap[Str] = Index;
705 return Index;
/external/clang/include/clang/Lex/
H A DPreprocessingRecord.h269 virtual PreprocessedEntity *ReadPreprocessedEntity(unsigned Index) = 0;
277 /// entity with index \arg Index came from file \arg FID.
278 virtual llvm::Optional<bool> isPreprocessedEntityInFileID(unsigned Index, argument
351 PPEntityID getPPEntityID(unsigned Index, bool isLoaded) const { argument
352 return isLoaded ? PPEntityID(Index) - LoadedPreprocessedEntities.size()
353 : Index;
366 PreprocessedEntity *getLoadedPreprocessedEntity(unsigned Index);
/external/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp351 ElementRegion::ProfileRegion(ID, ElementType, Index, superRegion);
482 << Index << ',' << getElementType().getAsString() << '}';
1148 SVal Index = ER->getIndex(); local
1149 if (const nonloc::ConcreteInt *CI=dyn_cast<nonloc::ConcreteInt>(&Index)) {
/external/llvm/include/llvm/Target/
H A DTargetRegisterInfo.h294 static unsigned index2VirtReg(unsigned Index) { argument
295 return Index | (1u << 31);
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp294 Value *Index = *I; local
298 unsigned FieldNo = cast<ConstantInt>(Index)->getZExtValue();
306 if (ConstantInt *CIdx = dyn_cast<ConstantInt>(Index)) {
317 unsigned Width = cast<IntegerType>(Index->getType())->getBitWidth();
323 Index = GetLinearExpression(Index, IndexScale, IndexOffset, Extension,
337 if (VarIndices[i].V == Index &&
353 VariableGEPIndex Entry = {Index, Extension,
H A DConstantFolding.cpp254 if (!CI) return false; // Index isn't a simple constant?
315 unsigned Index = SL->getElementContainingOffset(ByteOffset); local
316 uint64_t CurEltOffset = SL->getElementOffset(Index);
322 uint64_t EltSize = TD.getTypeAllocSize(CS->getOperand(Index)->getType());
325 !ReadDataFromGlobal(CS->getOperand(Index), ByteOffset, CurPtr,
329 ++Index;
332 if (Index == CS->getType()->getNumElements())
336 uint64_t NextEltOffset = SL->getElementOffset(Index);
354 uint64_t Index = ByteOffset / EltSize; local
355 uint64_t Offset = ByteOffset - Index * EltSiz
[all...]
H A DValueTracking.cpp617 Value *Index = I->getOperand(i); local
622 unsigned Idx = cast<ConstantInt>(Index)->getZExtValue();
630 unsigned GEPOpiBits = Index->getType()->getScalarSizeInBits();
633 ComputeMaskedBits(Index, LocalKnownZero, LocalKnownOne, TD, Depth+1);
/external/llvm/lib/MC/
H A DMachObjectWriter.cpp440 unsigned Index = 1; local
442 ie = Asm.end(); it != ie; ++it, ++Index)
443 SectionIndexMap[&it->getSection()] = Index;
444 assert(Index <= 256 && "Too many sections!");
446 // Index 0 is always the empty string.
530 Index = 0;
532 LocalSymbolData[i].SymbolData->setIndex(Index++);
534 ExternalSymbolData[i].SymbolData->setIndex(Index++);
536 UndefinedSymbolData[i].SymbolData->setIndex(Index++);

Completed in 342 milliseconds

12345678