Home
last modified time | relevance | path

Searched refs:ElementIndex (Results 1 – 25 of 41) sorted by relevance

12

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSparseBitVector.h53 unsigned ElementIndex;
57 ElementIndex = ~0U; in SparseBitVectorElement()
63 ElementIndex = Idx; in SparseBitVectorElement()
69 if (ElementIndex != RHS.ElementIndex)
88 return ElementIndex; in index()
271 ElementListIter FindLowerBoundImpl(unsigned ElementIndex) const { in FindLowerBoundImpl() argument
295 if (CurrElementIter->index() == ElementIndex) { in FindLowerBoundImpl()
297 } else if (CurrElementIter->index() > ElementIndex) { in FindLowerBoundImpl()
299 && ElementIter->index() > ElementIndex) in FindLowerBoundImpl()
303 ElementIter->index() < ElementIndex) in FindLowerBoundImpl()
[all …]
/external/llvm-project/llvm/include/llvm/ADT/
DSparseBitVector.h53 unsigned ElementIndex;
57 ElementIndex = ~0U; in SparseBitVectorElement()
63 ElementIndex = Idx; in SparseBitVectorElement()
69 if (ElementIndex != RHS.ElementIndex)
88 return ElementIndex; in index()
271 ElementListIter FindLowerBoundImpl(unsigned ElementIndex) const { in FindLowerBoundImpl() argument
295 if (CurrElementIter->index() == ElementIndex) { in FindLowerBoundImpl()
297 } else if (CurrElementIter->index() > ElementIndex) { in FindLowerBoundImpl()
299 && ElementIter->index() > ElementIndex) in FindLowerBoundImpl()
303 ElementIter->index() < ElementIndex) in FindLowerBoundImpl()
[all …]
/external/llvm/include/llvm/ADT/
DSparseBitVector.h56 unsigned ElementIndex;
61 ElementIndex = ~0U;
67 ElementIndex = Idx;
73 if (ElementIndex != RHS.ElementIndex)
92 return ElementIndex;
278 ElementListIter FindLowerBound(unsigned ElementIndex) {
292 if (CurrElementIter->index() == ElementIndex) {
294 } else if (CurrElementIter->index() > ElementIndex) {
296 && ElementIter->index() > ElementIndex)
300 ElementIter->index() < ElementIndex)
[all …]
/external/llvm-project/llvm/test/MC/WebAssembly/
Dfunction-alias.ll21 ; CHECK-NEXT: ElementIndex: 0x0
28 ; CHECK-NEXT: ElementIndex: 0x0
35 ; CHECK-NEXT: ElementIndex: 0x0
42 ; CHECK-NEXT: ElementIndex: 0x0
Ddebug-info64.ll171 ; CHECK-NEXT: ElementIndex: 0x0
206 ; CHECK-NEXT: ElementIndex: 0x7
214 ; CHECK-NEXT: ElementIndex: 0x8
223 ; CHECK-NEXT: ElementIndex: 0x0
231 ; CHECK-NEXT: ElementIndex: 0x9
239 ; CHECK-NEXT: ElementIndex: 0xC
Ddebug-info.ll171 ; CHECK-NEXT: ElementIndex: 0x0
206 ; CHECK-NEXT: ElementIndex: 0x7
214 ; CHECK-NEXT: ElementIndex: 0x8
223 ; CHECK-NEXT: ElementIndex: 0x0
231 ; CHECK-NEXT: ElementIndex: 0x9
239 ; CHECK-NEXT: ElementIndex: 0xC
Dno-dead-strip.ll19 ; CHECK-NEXT: ElementIndex: 0x0
/external/llvm-project/llvm/test/tools/llvm-readobj/wasm/
Dsymbols.test11 # CHECK-NEXT: ElementIndex: 0x2
30 # CHECK-NEXT: ElementIndex: 0x0
38 # CHECK-NEXT: ElementIndex: 0x3
47 # CHECK-NEXT: ElementIndex: 0x1
Dwasm-imports.test103 # CHECK-NEXT: ElementIndex: 0x3
112 # CHECK-NEXT: ElementIndex: 0x0
123 # CHECK-NEXT: ElementIndex: 0x1
134 # CHECK-NEXT: ElementIndex: 0x2
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/index/
DElementIndex.java24 public class ElementIndex implements IIndexUpdate { class
36 public ElementIndex(final ReportOutputFolder baseFolder) { in ElementIndex() method in ElementIndex
/external/llvm-project/llvm/lib/Object/
DWasmObjectFile.cpp45 Out << ", ElemIndex=" << Info.ElementIndex; in print()
530 Info.ElementIndex = readVaruint32(Ctx); in parseLinkingSectionSymtab()
531 if (!isValidFunctionIndex(Info.ElementIndex) || in parseLinkingSectionSymtab()
532 IsDefined != isDefinedFunctionIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
537 unsigned FuncIndex = Info.ElementIndex - NumImportedFunctions; in parseLinkingSectionSymtab()
543 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab()
558 Info.ElementIndex = readVaruint32(Ctx); in parseLinkingSectionSymtab()
559 if (!isValidGlobalIndex(Info.ElementIndex) || in parseLinkingSectionSymtab()
560 IsDefined != isDefinedGlobalIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
569 unsigned GlobalIndex = Info.ElementIndex - NumImportedGlobals; in parseLinkingSectionSymtab()
[all …]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
DSessionsPageTest.java25 import org.jacoco.report.internal.html.index.ElementIndex;
40 private ElementIndex index;
46 index = new ElementIndex(rootFolder); in setup()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DWasmObjectFile.cpp44 Out << ", ElemIndex=" << Info.ElementIndex; in print()
497 Info.ElementIndex = readVaruint32(Ctx); in parseLinkingSectionSymtab()
498 if (!isValidFunctionIndex(Info.ElementIndex) || in parseLinkingSectionSymtab()
499 IsDefined != isDefinedFunctionIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
504 unsigned FuncIndex = Info.ElementIndex - NumImportedFunctions; in parseLinkingSectionSymtab()
510 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab()
522 Info.ElementIndex = readVaruint32(Ctx); in parseLinkingSectionSymtab()
523 if (!isValidGlobalIndex(Info.ElementIndex) || in parseLinkingSectionSymtab()
524 IsDefined != isDefinedGlobalIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
533 unsigned GlobalIndex = Info.ElementIndex - NumImportedGlobals; in parseLinkingSectionSymtab()
[all …]
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
DSessionsPage.java29 import org.jacoco.report.internal.html.index.ElementIndex;
53 private final ElementIndex index;
75 final ElementIndex index, final ReportPage parent, in SessionsPage()
/external/llvm-project/lld/wasm/
DInputFiles.cpp146 return tableEntries[sym.Info.ElementIndex]; in calcExpectedValue()
150 return tableEntriesRel[sym.Info.ElementIndex]; in calcExpectedValue()
179 functions[sym.Info.ElementIndex - wasmObj->getNumImportedFunctions()]; in calcExpectedValue()
192 return sym.Info.ElementIndex; in calcExpectedValue()
463 functions[sym.Info.ElementIndex - wasmObj->getNumImportedFunctions()]; in createDefined()
482 globals[sym.Info.ElementIndex - wasmObj->getNumImportedGlobals()]; in createDefined()
488 InputSection *section = customSectionsByIndex[sym.Info.ElementIndex]; in createDefined()
494 events[sym.Info.ElementIndex - wasmObj->getNumImportedEvents()]; in createDefined()
/external/jacoco/org.jacoco.report/src/org/jacoco/report/html/
DHTMLFormatter.java33 import org.jacoco.report.internal.html.index.ElementIndex;
61 private ElementIndex index;
192 index = new ElementIndex(root); in createVisitor()
/external/webrtc/third_party/abseil-cpp/absl/container/internal/
Dlayout.h360 static constexpr size_t ElementIndex() {
419 return Offset<ElementIndex<T>()>();
452 return Size<ElementIndex<T>()>();
500 return Pointer<ElementIndex<T>()>(p);
558 return Slice<ElementIndex<T>()>(p);
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/
Dlayout.h362 static constexpr size_t ElementIndex() {
421 return Offset<ElementIndex<T>()>();
454 return Size<ElementIndex<T>()>();
502 return Pointer<ElementIndex<T>()>(p);
560 return Slice<ElementIndex<T>()>(p);
/external/libtextclassifier/abseil-cpp/absl/container/internal/
Dlayout.h362 static constexpr size_t ElementIndex() {
421 return Offset<ElementIndex<T>()>();
454 return Size<ElementIndex<T>()>();
502 return Pointer<ElementIndex<T>()>(p);
560 return Slice<ElementIndex<T>()>(p);
/external/openscreen/third_party/abseil/src/absl/container/internal/
Dlayout.h362 static constexpr size_t ElementIndex() {
421 return Offset<ElementIndex<T>()>();
454 return Size<ElementIndex<T>()>();
502 return Pointer<ElementIndex<T>()>(p);
560 return Slice<ElementIndex<T>()>(p);
/external/abseil-cpp/absl/container/internal/
Dlayout.h360 static constexpr size_t ElementIndex() {
419 return Offset<ElementIndex<T>()>();
452 return Size<ElementIndex<T>()>();
500 return Pointer<ElementIndex<T>()>(p);
558 return Slice<ElementIndex<T>()>(p);
/external/llvm-project/lld/test/wasm/lto/
Dweak.ll18 ; CHECK-NEXT: ElementIndex: 0x0
Drelocatable.ll11 ; CHECK-NEXT: ElementIndex: 0x0
/external/llvm-project/llvm/lib/ObjectYAML/
DWasmYAML.cpp499 IO.mapRequired("Function", Info.ElementIndex); in mapping()
501 IO.mapRequired("Global", Info.ElementIndex); in mapping()
503 IO.mapRequired("Table", Info.ElementIndex); in mapping()
505 IO.mapRequired("Event", Info.ElementIndex); in mapping()
513 IO.mapRequired("Section", Info.ElementIndex); in mapping()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DWasmYAML.cpp491 IO.mapRequired("Function", Info.ElementIndex); in mapping()
493 IO.mapRequired("Global", Info.ElementIndex); in mapping()
495 IO.mapRequired("Event", Info.ElementIndex); in mapping()
503 IO.mapRequired("Section", Info.ElementIndex); in mapping()

12