Searched refs:Index (Results 126 - 150 of 731) sorted by relevance

1234567891011>>

/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Daslpredef.c198 UINT32 Index; local
205 Index = ApCheckForPredefinedName (Op, Op->Asl.NameSeg);
207 switch (Index)
242 ThisName = &AcpiGbl_PredefinedMethods[Index];
357 UINT32 Index; local
369 Index = ApCheckForPredefinedName (MethodInfo->Op,
373 switch (Index)
391 ThisName = &AcpiGbl_PredefinedMethods[Index];
463 UINT32 Index; local
472 Index
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbmethod.c278 UINT32 Index; local
320 Index = strtoul (IndexArg, NULL, 16);
346 if (Index > ACPI_METHOD_MAX_ARG)
349 Index);
354 Index, ObjDesc, WalkState);
360 ObjDesc = WalkState->Arguments[Index].Object;
362 AcpiOsPrintf ("Arg%u: ", Index);
370 if (Index > ACPI_METHOD_MAX_LOCAL)
373 Index);
378 Index, ObjDes
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/components/hardware/
H A Dhwregs.c377 UINT8 Index; local
405 Index = 0;
418 Address + Index * ACPI_DIV_8 (AccessWidth),
424 Address + Index * ACPI_DIV_8 (AccessWidth),
431 * Use offset style bit writes because "Index * AccessWidth" is
434 ACPI_SET_BITS (Value, Index * AccessWidth,
438 Index++;
474 UINT8 Index; local
499 Index = 0;
503 * Use offset style bit reads because "Index * AccessWidt
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DGlobalTypeTableBuilder.h56 CVType getType(TypeIndex Index) override;
57 StringRef getTypeName(TypeIndex Index) override;
58 bool contains(TypeIndex Index) override;
61 bool replaceType(TypeIndex &Index, CVType Data, bool Stabilize) override;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIAEnumSymbols.h26 std::unique_ptr<PDBSymbol> getChildAtIndex(uint32_t Index) const override;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeEnumInjectedSources.h29 getChildAtIndex(uint32_t Index) const override;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessingRecord.cpp337 for (unsigned Index = 0; Index != SkippedRanges.size(); ++Index) {
338 if (SkippedRanges[Index].isInvalid())
339 SkippedRanges[Index] = ExternalSource->ReadSkippedRange(Index);
352 unsigned Index = -PPID.ID - 1; local
353 assert(Index < LoadedPreprocessedEntities.size() &&
355 return getLoadedPreprocessedEntity(Index);
360 unsigned Index
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-fdr-dump.cpp93 BlockIndexer::Index Index;
94 BlockIndexer BI(Index);
104 for (auto ProcessThreadBlocks : Index) {
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenIntrinsics.h160 unsigned Index; member in struct:llvm::CodeGenIntrinsic::ArgAttribute
165 : Index(Idx), Kind(K), Value(V) {}
168 return std::tie(Index, Kind, Value) <
169 std::tie(Other.Index, Other.Kind, Other.Value);
H A DSubtargetFeatureInfo.h33 uint64_t Index; member in struct:llvm::SubtargetFeatureInfo
35 SubtargetFeatureInfo(Record *D, uint64_t Idx) : TheDef(D), Index(Idx) {}
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasAnalysisSummary.cpp78 auto Index = IValue.Index; local
79 auto *V = (Index == 0) ? &Call : Call.getArgOperand(Index - 1);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_fdr_log_writer.h24 template <size_t Index> struct SerializerImpl {
27 Index<std::tuple_size<
31 auto P = reinterpret_cast<const char *>(&std::get<Index>(T));
32 constexpr auto Size = sizeof(std::get<Index>(T));
34 SerializerImpl<Index + 1>::serializeTo(Buffer + Size,
40 Index >= std::tuple_size<typename std::remove_reference<
48 template <class Tuple, size_t Index> struct AggregateSizesImpl {
50 sizeof(typename std::tuple_element<Index, Tuple>::type) +
51 AggregateSizesImpl<Tuple, Index - 1>::value;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.h104 /// Index is zero-based (MachO section indexes are usually one-based) and
106 NormalizedSection &getSectionByIndex(unsigned Index) { argument
107 auto I = IndexToSection.find(Index);
115 Expected<NormalizedSection &> findSectionByIndex(unsigned Index) { argument
116 auto I = IndexToSection.find(Index);
119 formatv("{0:d}", Index));
126 Expected<NormalizedSymbol &> findSymbolByIndex(uint64_t Index) { argument
127 if (Index >= IndexToSymbol.size())
129 auto *Sym = IndexToSymbol[Index];
132 formatv("{0:d}", Index));
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DLSUnit.h266 bool isValidGroupID(unsigned Index) const {
267 return Index && (Groups.find(Index) != Groups.end());
299 const MemoryGroup &getGroup(unsigned Index) const {
300 assert(isValidGroupID(Index) && "Group doesn't exist!");
301 return *Groups.find(Index)->second;
304 MemoryGroup &getGroup(unsigned Index) { argument
305 assert(isValidGroupID(Index) && "Group doesn't exist!");
306 return *Groups.find(Index)->second;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackDocument.cpp66 DocNode &ArrayDocNode::operator[](size_t Index) { argument
67 if (size() <= Index) {
69 Array->resize(Index + 1, getDocument()->getEmptyNode());
71 return (*Array)[Index];
108 : Node(Node), Index(StartIndex), End(StartIndex + Length),
111 size_t Index; member in struct:StackLevel
187 DestNode = &Array[Stack.back().Index++];
199 ++Stack.back().Index;
231 if (Stack.back().Index != Stack.back().End)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp103 SymIndexId SymbolCache::createSimpleType(TypeIndex Index, argument
105 if (Index.getSimpleMode() != codeview::SimpleTypeMode::Direct)
106 return createSymbol<NativeTypePointer>(Index);
108 const auto Kind = Index.getSimpleKind();
149 SymIndexId SymbolCache::findSymbolByTypeIndex(codeview::TypeIndex Index) { argument
151 const auto Entry = TypeIndexToSymbolId.find(Index);
156 if (Index.isSimple()) {
157 SymIndexId Result = createSimpleType(Index, ModifierOptions::None);
158 assert(TypeIndexToSymbolId.count(Index) == 0);
159 TypeIndexToSymbolId[Index]
598 getOrCreateCompiland(uint32_t Index) argument
[all...]
H A DNativeTypeFunctionSig.cpp55 std::unique_ptr<PDBSymbol> getChildAtIndex(uint32_t Index) const override {
56 return wrap(TypeEnumerator->getChildAtIndex(Index));
78 codeview::TypeIndex Index,
81 Proc(std::move(Proc)), Index(Index), IsMemberFunction(false) {}
84 NativeSession &Session, SymIndexId Id, codeview::TypeIndex Index,
87 MemberFunc(std::move(MemberFunc)), Index(Index), IsMemberFunction(true) {}
76 NativeTypeFunctionSig(NativeSession &Session, SymIndexId Id, codeview::TypeIndex Index, codeview::ProcedureRecord Proc) argument
83 NativeTypeFunctionSig( NativeSession &Session, SymIndexId Id, codeview::TypeIndex Index, codeview::MemberFunctionRecord MemberFunc) argument
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h302 Expected<const Elf_Shdr *> getSection(uint32_t Index) const;
305 uint32_t Index) const;
325 getSection(typename ELFT::ShdrRange Sections, uint32_t Index) { argument
326 if (Index >= Sections.size())
327 return createError("invalid section index: " + Twine(Index));
328 return &Sections[Index];
337 unsigned Index = Sym - FirstSym; local
338 if (Index >= ShndxTable.size())
340 "extended symbol index (" + Twine(Index) +
345 return ShndxTable[Index];
352 uint32_t Index = Sym->st_shndx; local
510 uint32_t Index = Rel->getSymbol(isMips64EL()); local
520 uint32_t Index = getHeader()->e_shstrndx; local
[all...]
H A DWasm.h214 bool isValidFunctionIndex(uint32_t Index) const;
215 bool isDefinedFunctionIndex(uint32_t Index) const;
216 bool isValidGlobalIndex(uint32_t Index) const;
217 bool isDefinedGlobalIndex(uint32_t Index) const;
218 bool isValidEventIndex(uint32_t Index) const;
219 bool isDefinedEventIndex(uint32_t Index) const;
220 bool isValidFunctionSymbol(uint32_t Index) const;
221 bool isValidGlobalSymbol(uint32_t Index) const;
222 bool isValidEventSymbol(uint32_t Index) const;
223 bool isValidDataSymbol(uint32_t Index) cons
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuilder.h173 Address CreateStructGEP(Address Addr, unsigned Index, argument
178 auto Offset = CharUnits::fromQuantity(Layout->getElementOffset(Index));
181 Addr.getPointer(), Index, Name),
193 Address CreateConstArrayGEP(Address Addr, uint64_t Index, argument
202 {getSize(CharUnits::Zero()), getSize(Index)}, Name),
203 Addr.getAlignment().alignmentAtOffset(Index * EltSize));
211 Address CreateConstInBoundsGEP(Address Addr, uint64_t Index, argument
218 getSize(Index), Name),
219 Addr.getAlignment().alignmentAtOffset(Index * EltSize));
227 Address CreateConstGEP(Address Addr, uint64_t Index, argument
305 CreatePreserveStructAccessIndex(Address Addr, unsigned Index, unsigned FieldIndex, llvm::MDNode *DbgInfo) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUndefinedArraySubscriptChecker.cpp37 const Expr *Index = A->getIdx(); local
38 if (!C.getSVal(Index).isUndef())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIAEnumSymbols.cpp27 DIAEnumSymbols::getChildAtIndex(uint32_t Index) const {
29 if (S_OK != Enumerator->Item(Index, &Item))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolTypeFunctionSig.cpp42 std::unique_ptr<PDBSymbol> getChildAtIndex(uint32_t Index) const override {
43 auto FunctionArgSymbol = Enumerator->getChildAtIndex(Index);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsMachineFunction.h43 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; } argument
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionWasm.h74 void setSegmentIndex(uint32_t Index) { SegmentIndex = Index; } argument

Completed in 287 milliseconds

1234567891011>>