HomeSort by: relevance | last modified time | path
    Searched refs:Index (Results 1 - 25 of 839) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/acpica/dist/compiler/
aslmessages.c 347 UINT32 Index;
356 Index = MessageId;
358 if (Index >= ACPI_ARRAY_LENGTH (AslCompilerMsgs))
369 Index = MessageId - ASL_MSG_TABLE_COMPILER;
371 if (Index >= ACPI_ARRAY_LENGTH (AslTableCompilerMsgs))
382 Index = MessageId - ASL_MSG_PREPROCESSOR;
384 if (Index >= ACPI_ARRAY_LENGTH (AslPreprocessorMsgs))
397 return (MessageTable[Index]);
494 UINT32 Index = 1;
510 for (i = 1; Index < ACPI_ARRAY_LENGTH (AslCompilerMsgs); i++, Index++
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TypeLocBuilder.cpp 49 unsigned NewIndex = Index + NewCapacity - Capacity;
51 &Buffer[Index],
52 Capacity - Index);
59 Index = NewIndex;
73 if (LocalSize > Index) {
74 size_t RequiredCapacity = Capacity + (LocalSize - Index);
99 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4);
100 Index -= 4;
110 memmove(&Buffer[Index + 4], &Buffer[Index], NumBytesAtAlign4)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeEnumModules.cpp 22 NativeEnumModules::NativeEnumModules(NativeSession &PDBSession, uint32_t Index)
23 : Session(PDBSession), Index(Index) {}
35 if (Index >= getChildCount())
37 return getChildAtIndex(Index++);
40 void NativeEnumModules::reset() { Index = 0; }
NativeEnumLineNumbers.cpp 25 : Lines(std::move(LineNums)), Index(0) {}
39 return getChildAtIndex(Index++);
42 void NativeEnumLineNumbers::reset() { Index = 0; }
NativeEnumSymbols.cpp 23 : Symbols(std::move(Symbols)), Index(0), Session(PDBSession) {}
38 return getChildAtIndex(Index++);
41 void NativeEnumSymbols::reset() { Index = 0; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/
SummaryBasedOptimizations.h 13 void computeSyntheticCounts(ModuleSummaryIndex &Index);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeTableCollection.cpp 37 CVType TypeTableCollection::getType(TypeIndex Index) {
38 assert(Index.toArrayIndex() < Records.size());
39 return CVType(Records[Index.toArrayIndex()]);
42 StringRef TypeTableCollection::getTypeName(TypeIndex Index) {
43 if (Index.isNoneType() || Index.isSimple())
44 return TypeIndex::simpleTypeName(Index);
46 uint32_t I = Index.toArrayIndex();
48 StringRef Result = NameStorage.save(computeTypeName(*this, Index));
54 bool TypeTableCollection::contains(TypeIndex Index) {
    [all...]
LazyRandomTypeCollection.cpp 83 uint32_t LazyRandomTypeCollection::getOffsetOfType(TypeIndex Index) {
84 error(ensureTypeExists(Index));
85 assert(contains(Index));
87 return Records[Index.toArrayIndex()].Offset;
90 CVType LazyRandomTypeCollection::getType(TypeIndex Index) {
91 assert(!Index.isSimple());
93 auto EC = ensureTypeExists(Index);
95 assert(contains(Index));
97 return Records[Index.toArrayIndex()].Type;
100 Optional<CVType> LazyRandomTypeCollection::tryGetType(TypeIndex Index) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Option/
Option.cpp 110 unsigned &Index) const {
114 if (ArgSize != strlen(Args.getArgString(Index)))
116 return new Arg(*this, Spelling, Index++);
119 const char *Value = Args.getArgString(Index) + ArgSize;
120 return new Arg(*this, Spelling, Index++, Value);
124 const char *Str = Args.getArgString(Index) + ArgSize;
125 Arg *A = new Arg(*this, Spelling, Index++);
153 if (ArgSize != strlen(Args.getArgString(Index)))
156 Index += 2;
157 if (Index > Args.getNumInputArgStrings() |
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
FunctionId.h 19 FunctionId() : Index(0) {}
21 explicit FunctionId(uint32_t Index) : Index(Index) {}
23 uint32_t getIndex() const { return Index; }
26 uint32_t Index;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeEnumModules.h 21 NativeEnumModules(NativeSession &Session, uint32_t Index = 0);
24 std::unique_ptr<PDBSymbol> getChildAtIndex(uint32_t Index) const override;
30 uint32_t Index;
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsmthdat.c 59 UINT32 Index,
65 UINT32 Index,
73 UINT32 Index,
156 UINT32 Index;
164 for (Index = 0; Index < ACPI_METHOD_NUM_LOCALS; Index++)
166 if (WalkState->LocalVariables[Index].Object)
169 Index, WalkState->LocalVariables[Index].Object))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430MachineFunctionInfo.h 53 void setRAIndex(int Index) { ReturnAddrIndex = Index; }
56 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
  /src/sys/external/bsd/gnu-efi/dist/lib/
smbios.c 41 UINT16 Index;
50 for (Index = 0; Index < SmbiosTable->TableLength ; Index++) {
104 UINT16 Index;
115 for (Index = 1; Index <= StringNumber; Index++) {
116 if (StringNumber == Index) {
  /src/external/gpl3/gcc/dist/contrib/
index-prop 3 # We do this by propagating the full pathname from the Index: line
10 if (/^Index: (.*)/)
  /src/external/gpl3/gcc.old/dist/contrib/
index-prop 3 # We do this by propagating the full pathname from the Index: line
10 if (/^Index: (.*)/)
  /src/external/apache2/llvm/dist/clang/lib/AST/
SelectorLocationsKind.cpp 19 static SourceLocation getStandardSelLoc(unsigned Index,
26 assert(Index == 0);
34 assert(Index < NumSelArgs);
37 IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Index);
64 SourceLocation getArgLoc(unsigned Index, ArrayRef<T*> Args) {
65 return Index < Args.size() ? getArgLoc(Args[Index]) : SourceLocation();
103 SourceLocation clang::getStandardSelectorLoc(unsigned Index,
108 return getStandardSelLoc(Index, Sel, WithArgSpace,
109 getArgLoc(Index, Args), EndLoc)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 1 //===- ModuleSummaryAnalysis.h - Module summary index builder ---*- C++ -*-===//
58 Optional<ModuleSummaryIndex> Index;
65 /// Get the index built by pass
66 ModuleSummaryIndex &getIndex() { return *Index; }
67 const ModuleSummaryIndex &getIndex() const { return *Index; }
83 const ModuleSummaryIndex *Index;
89 const ModuleSummaryIndex *Index = nullptr);
90 const ModuleSummaryIndex *getIndex() const { return Index; }
100 createImmutableModuleSummaryIndexWrapperPass(const ModuleSummaryIndex *Index);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
Delta.h 30 /// Helper function to verify if a given Target-index is inside the Chunk
31 bool contains(int Index) const { return Index >= Begin && Index <= End; }
56 int Index = 1;
72 bool ShouldKeep = ChunksToKeep.front().contains(Index);
73 auto _ = make_scope_exit([&]() { ++Index; }); // Next time - next feature.
76 if (ChunksToKeep.front().End == Index)
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAGAddressAnalysis.h 19 /// Helper struct to parse and store a memory address as base + index + offset.
22 /// to store whether there was a sign extension involved in the index
25 /// (i64 signextend (add (i8 load %index)
30 /// (i64 signextend (i32 add (i32 signextend (i8 load %index))
35 SDValue Index;
41 BaseIndexOffset(SDValue Base, SDValue Index, bool IsIndexSignExt)
42 : Base(Base), Index(Index), Offset(), IsIndexSignExt(IsIndexSignExt) {}
43 BaseIndexOffset(SDValue Base, SDValue Index, int64_t Offset,
45 : Base(Base), Index(Index), Offset(Offset)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ReleaseModeModelRunner.cpp 40 void setFeature(FeatureIndex Index, int64_t Value) override;
41 int64_t getFeature(int Index) const override;
58 const int Index =
60 assert(Index >= 0 && "Cannot find Feature in inlining model");
61 FeatureIndices[I] = Index;
69 int64_t ReleaseModeModelRunner::getFeature(int Index) const {
71 CompiledModel->arg_data(FeatureIndices[Index]));
74 void ReleaseModeModelRunner::setFeature(FeatureIndex Index, int64_t Value) {
76 FeatureIndices[static_cast<size_t>(Index)])) = Value;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
LookupResult.cpp 19 std::string LookupResult::getSourceFile(uint32_t Index) const {
21 if (Index < Locations.size()) {
22 if (!Locations[Index].Dir.empty()) {
23 if (Locations[Index].Base.empty()) {
24 Fullpath = std::string(Locations[Index].Dir);
27 llvm::sys::path::append(Storage, Locations[Index].Dir,
28 Locations[Index].Base);
31 } else if (!Locations[Index].Base.empty())
32 Fullpath = std::string(Locations[Index].Base);
  /src/sys/external/bsd/acpica/dist/utilities/
uthex.c 78 UINT64 Index;
80 AcpiUtShortShiftRight (Integer, Position, &Index);
81 return (AcpiGbl_HexToAscii[Index & 0xF]);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonBlockRanges.h 45 // This is to represent an "index", which is an abstraction of a position
57 IndexType(unsigned Idx) : Index(Idx) {}
59 static bool isInstr(IndexType X) { return X.Index >= First; }
75 unsigned Index = None;
106 // A list of index ranges. This represents liveness of a register
178 assert(Index >= First);
179 return Index;
183 return Index == x;
187 return Index == Idx.Index;
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
EnumeratedArray.h 31 inline const ValueType &operator[](const Enumeration Index) const {
32 auto IX = static_cast<const IndexType>(Index);
33 assert(IX >= 0 && IX < Size && "Index is out of bounds.");
36 inline ValueType &operator[](const Enumeration Index) {
39 IndexType, Size> &>(*this)[Index]);

Completed in 41 milliseconds

1 2 3 4 5 6 7 8 91011>>