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

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/gnu-efi/dist/lib/
error.c 75 UINTN Index;
77 for (Index = 0; ErrorCodeTable[Index].Desc; Index +=1) {
78 if (ErrorCodeTable[Index].Code == Status) {
79 StrCpy (Buffer, ErrorCodeTable[Index].Desc);
event.c 86 UINTN Index;
110 Status = uefi_call_wrapper(BS->WaitForEvent, 3, 2, WaitList, &Index);
117 if (!EFI_ERROR(Status) && Index == 1) {
128 Status = uefi_call_wrapper(BS->WaitForEvent, 3, 1, &Event, &Index);
130 ASSERT (Index == 0);
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/sys/external/bsd/acpica/dist/utilities/
uthex.c 78 UINT64 Index;
80 AcpiUtShortShiftRight (Integer, Position, &Index);
81 return (AcpiGbl_HexToAscii[Index & 0xF]);
utownerid.c 99 * allocations. (ACPI_NUM_OWNERID_MASKS + 1) because first index
129 * Found a free ID. The actual ID is the bit index plus one,
139 * Construct encoded ID from the index and bit position
195 UINT32 Index;
226 /* Decode ID to index/offset pair */
228 Index = ACPI_DIV_32 (OwnerId);
233 if (AcpiGbl_OwnerIdMask[Index] & Bit)
235 AcpiGbl_OwnerIdMask[Index] ^= Bit;
  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
Parser.h 69 std::unique_ptr<ModuleSummaryIndex> Index;
76 /// not verify that the generated Module or Index are valid, so you should
98 /// Note that this does not verify that the generated Index is valid, so you
100 /// Parse LLVM Assembly Index from a file
118 /// Parse LLVM Assembly including the summary index from a MemoryBuffer.
131 /// Parse LLVM Assembly for summary index from a MemoryBuffer.
147 /// \param Index The index to add data to.
154 MemoryBufferRef F, Module *M, ModuleSummaryIndex *Index, SMDiagnostic &Err,
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeEnumLineNumbers.h 28 ChildTypePtr getChildAtIndex(uint32_t Index) const override;
34 uint32_t Index;
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;
NativeTypeArray.h 43 codeview::TypeIndex Index;
NativeEnumGlobals.h 29 std::unique_ptr<PDBSymbol> getChildAtIndex(uint32_t Index) const override;
35 uint32_t Index;
NativeEnumSymbols.h 28 std::unique_ptr<PDBSymbol> getChildAtIndex(uint32_t Index) const override;
34 uint32_t Index;
NativeEnumTypes.h 34 std::unique_ptr<PDBSymbol> getChildAtIndex(uint32_t Index) const override;
40 uint32_t Index;
NativeTypeEnum.h 65 codeview::TypeIndex Index;
  /src/sys/external/bsd/acpica/dist/executer/
exoparg3.c 168 UINT64 Index;
178 case AML_MID_OP: /* Mid (Source[0], Index[1], Length[2], Result[3]) */
193 Index = Operand[1]->Integer.Value;
197 * If the index is beyond the length of the String/Buffer, or if the
200 if (Index >= Operand[0]->String.Length)
207 else if ((Index + Length) > Operand[0]->String.Length)
210 (ACPI_SIZE) Operand[0]->String.Length - (ACPI_SIZE) Index;
257 Operand[0]->String.Pointer + Index, Length);
exoparg6.c 227 UINT64 Index;
255 Index = Operand[5]->Integer.Value;
256 if (Index >= Operand[0]->Package.Count)
259 "Index (0x%8.8X%8.8X) beyond package end (0x%X)",
260 ACPI_FORMAT_UINT64 (Index), Operand[0]->Package.Count));
287 for ( ; Index < Operand[0]->Package.Count; Index++)
291 ThisElement = Operand[0]->Package.Elements[Index];
317 /* Match found: Index is the return value */
319 ReturnDesc->Integer.Value = Index;
    [all...]
exnames.c 185 UINT32 Index;
204 for (Index = 0;
205 (Index < ACPI_NAMESEG_SIZE) && (AcpiUtValidNameChar (*AmlAddress, 0));
206 Index++)
208 CharBuf[Index] = *AmlAddress++;
214 if (Index == 4)
232 else if (Index == 0)
exoparg2.c 284 UINT64 Index;
387 case AML_INDEX_OP: /* Index (Source Index Result) */
398 /* Initialize the Index reference object */
400 Index = Operand[1]->Integer.Value;
401 ReturnDesc->Reference.Value = (UINT32) Index;
406 * Verify that the index is within range.
412 if (Index >= Operand[0]->String.Length)
420 &(Operand[0]->Buffer.Pointer [Index]);
425 if (Index >= Operand[0]->Buffer.Length
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
UndefinedArraySubscriptChecker.cpp 37 const Expr *Index = A->getIdx();
38 if (!C.getSVal(Index).isUndef())
  /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/lib/AsmParser/
Parser.cpp 26 ModuleSummaryIndex *Index, SMDiagnostic &Err,
34 return LLParser(F.getBuffer(), SM, Err, M, Index,
40 ModuleSummaryIndex *Index, SMDiagnostic &Err,
43 return ::parseAssemblyInto(F, M, Index, Err, Slots,
82 std::unique_ptr<ModuleSummaryIndex> Index =
85 if (parseAssemblyInto(F, M.get(), Index.get(), Err, Slots, UpgradeDebugInfo,
89 return {std::move(M), std::move(Index)};
145 ModuleSummaryIndex &Index,
152 // index, but we need to initialize it.
154 return LLParser(F.getBuffer(), SM, Err, nullptr, &Index, unusedContext
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriterPass.cpp 23 const ModuleSummaryIndex *Index =
26 WriteBitcodeToFile(M, OS, ShouldPreserveUseListOrder, Index, EmitModuleHash);
54 const ModuleSummaryIndex *Index =
58 WriteBitcodeToFile(M, OS, ShouldPreserveUseListOrder, Index,
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
SubtargetFeatureInfo.h 27 /// An unique index assigned to represent this feature.
28 uint64_t Index;
30 SubtargetFeatureInfo(Record *D, uint64_t Idx) : TheDef(D), Index(Idx) {}
53 /// This version emits the bit index for the feature and can therefore support
  /src/external/apache2/llvm/dist/clang/tools/clang-extdef-mapping/
ClangExtDefMapGen.cpp 41 llvm::outs() << createCrossTUIndexString(Index);
54 llvm::StringMap<std::string> Index;
97 Index[*LookupName] = CurrentFileName;
  /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/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;

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 91011>>