HomeSort by: relevance | last modified time | path
    Searched refs:ElementIndex (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
SparseBitVector.h 53 unsigned ElementIndex;
57 ElementIndex = ~0U;
63 ElementIndex = Idx;
69 if (ElementIndex != RHS.ElementIndex)
88 return ElementIndex;
271 ElementListIter FindLowerBoundImpl(unsigned ElementIndex) const {
295 if (CurrElementIter->index() == ElementIndex) {
297 } else if (CurrElementIter->index() > ElementIndex) {
299 && ElementIter->index() > ElementIndex)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WasmObjectFile.cpp 45 Out << ", ElemIndex=" << Info.ElementIndex;
540 Info.ElementIndex = readVaruint32(Ctx);
541 if (!isValidFunctionIndex(Info.ElementIndex) ||
542 IsDefined != isDefinedFunctionIndex(Info.ElementIndex))
547 unsigned FuncIndex = Info.ElementIndex - NumImportedFunctions;
553 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex];
568 Info.ElementIndex = readVaruint32(Ctx);
569 if (!isValidGlobalIndex(Info.ElementIndex) ||
570 IsDefined != isDefinedGlobalIndex(Info.ElementIndex))
579 unsigned GlobalIndex = Info.ElementIndex - NumImportedGlobals
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
wasm2yaml.cpp 136 Info.ElementIndex = Symbol.ElementIndex;
139 Info.ElementIndex = Symbol.ElementIndex;
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
WasmYAML.cpp 508 IO.mapRequired("Function", Info.ElementIndex);
510 IO.mapRequired("Global", Info.ElementIndex);
512 IO.mapRequired("Table", Info.ElementIndex);
514 IO.mapRequired("Event", Info.ElementIndex);
522 IO.mapRequired("Section", Info.ElementIndex);
WasmEmitter.cpp 193 encodeULEB128(Info.ElementIndex, SubSection.getStream());
207 encodeULEB128(Info.ElementIndex, SubSection.getStream());
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Wasm.h 202 uint32_t ElementIndex;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
WasmDumper.cpp 231 W.printHex("ElementIndex", Symbol.Info.ElementIndex);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 162 uint32_t ElementIndex;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 2138 unsigned ElementIndex = getTypeSizeIndex(Shift, VecEltTy);
2140 ElementIndex = Elements.size() - ElementIndex - 1;
2143 if (Elements[ElementIndex])
2146 Elements[ElementIndex] = V;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp 1108 encodeULEB128(Sym.ElementIndex, W->OS);
1123 CustomSections[Sym.ElementIndex].OutputIndex;
1746 Info.ElementIndex = WasmIndices.find(&WS)->second;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaInit.cpp 350 llvm::APSInt elementIndex,
1858 llvm::APSInt elementIndex,
1909 llvm::APSInt maxElements(elementIndex.getBitWidth(),
1910 elementIndex.isUnsigned());
1914 elementIndex = elementIndex.extOrTrunc(maxElements.getBitWidth());
1915 elementIndex.setIsUnsigned(maxElements.isUnsigned());
1929 // Handle this designated initializer. elementIndex will be
1932 DeclType, nullptr, &elementIndex, Index,
1939 if (elementIndex.getBitWidth() > maxElements.getBitWidth()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 11163 ConstantInt *ElementIndex = nullptr;
11165 m_ConstantInt(ElementIndex))) &&
11166 ElementIndex->getValue() == 1 &&

Completed in 40 milliseconds