HomeSort by relevance Sort by last modified time
    Searched refs:Entry (Results 326 - 350 of 2649) sorted by null

<<11121314151617181920>>

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DebugInlineeLinesSubsection.h 86 struct Entry {
107 std::vector<Entry>::const_iterator begin() const { return Entries.begin(); }
108 std::vector<Entry>::const_iterator end() const { return Entries.end(); }
114 std::vector<Entry> Entries;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 76 TargetLowering::ArgListEntry Entry;
77 Entry.Ty = DAG.getDataLayout().getIntPtrType(*DAG.getContext());
78 Entry.Node = Dst;
79 Args.push_back(Entry);
81 Entry.Node = Size;
82 Args.push_back(Entry);
87 Entry.Node = Size;
88 Args.push_back(Entry);
96 Entry.Node = Src;
97 Entry.Ty = Type::getInt32Ty(*DAG.getContext())
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
SchedulerStatistics.cpp 57 for (const std::pair<unsigned, unsigned> &Entry : IssuedPerCycle) {
58 TempStream << " " << Entry.first << ", " << Entry.second << " ("
59 << format("%.1f", ((double)Entry.second / NumCycles) * 100)
  /external/tensorflow/tensorflow/stream_executor/
executor_cache.cc 25 // In the fast path case, the cache already has an entry and we can just
33 Entry* entry = nullptr; local
36 entry = &cache_[config.ordinal];
37 // Release the map lock; the address of 'entry' is stable because
41 // Acquire the per-Entry mutex without holding the map mutex. Initializing
44 mutex_lock lock{entry->configurations_mutex};
45 for (const auto& iter : entry->configurations) {
57 // If construction failed, leave the cache Entry around, but with a null
61 entry->configurations.emplace_back(config, std::move(result.ValueOrDie()))
67 Entry* entry = nullptr; local
    [all...]
  /external/u-boot/tools/binman/
entry_test.py 5 # Test for the Entry class
26 """Test that we can import Entry subclassess successfully"""
29 global entry
30 import entry
31 entry.Entry.Create(None, self.GetNode(), 'u-boot')
35 global entry
36 reload(entry)
37 entry.Entry.Create(None, self.GetNode(), 'u-boot-spl'
    [all...]
  /external/u-boot/tools/binman/etype/
u_boot_spl.py 5 # Entry-type module for spl/u-boot-spl.bin
10 from entry import Entry
u_boot_spl_with_ucode_ptr.py 5 # Entry-type module for an SPL binary with an embedded microcode pointer
11 from entry import Entry
section.py 5 # Entry-type module for sections, which are entries which can contain other
9 from entry import Entry
15 class Entry_section(Entry):
17 Entry.__init__(self, image, etype, node)
29 This calls each entry's GetPositions() method. If it returns a list
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoEncoder.java 94 private final LocalList.Entry[] lastEntryForReg;
120 lastEntryForReg = new LocalList.Entry[regSize];
194 ArrayList<PositionList.Entry> sortedPositions = buildSortedPositions();
195 ArrayList<LocalList.Entry> methodArgs = extractMethodArguments();
256 // Combined advance PC + position entry
286 LocalList.Entry entry = locals.get(curLocalIdx++); local
287 int reg = entry.getRegister();
288 LocalList.Entry prevEntry = lastEntryForReg[reg];
290 if (entry == prevEntry)
376 PositionList.Entry entry = sortedPositions.get(0); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoEncoder.java 102 private final LocalList.Entry[] lastEntryForReg;
128 lastEntryForReg = new LocalList.Entry[regSize];
202 ArrayList<PositionList.Entry> sortedPositions = buildSortedPositions();
203 ArrayList<LocalList.Entry> methodArgs = extractMethodArguments();
264 // Combined advance PC + position entry
294 LocalList.Entry entry = locals.get(curLocalIdx++); local
295 int reg = entry.getRegister();
296 LocalList.Entry prevEntry = lastEntryForReg[reg];
298 if (entry == prevEntry)
384 PositionList.Entry entry = sortedPositions.get(0); local
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Include/
LinkedList.h 107 EFI_LIST_ENTRY *Entry
114 to free any memory used by the entry if needed. The list must have been
119 Entry - Element to remove from the list.
131 EFI_LIST_ENTRY *Entry
144 Entry - Element to insert at the end of the list.
156 EFI_LIST_ENTRY *Entry
169 Entry - Element to insert to beginning of list
  /external/apache-http/src/org/apache/commons/logging/impl/
WeakHashtable.java 125 * the map will be purged of one cleared entry.
166 Map.Entry entry = (Map.Entry) it.next(); local
167 Referenced referencedKey = (Referenced) entry.getKey();
169 Object value = entry.getValue();
171 Entry dereferencedEntry = new Entry(key, value);
257 Map.Entry entry = (Map.Entry) it.next()
    [all...]
  /external/clang/lib/Index/
SimpleFormatContext.h 51 const FileEntry *Entry = Files.getFile(Name);
52 assert(Entry != nullptr);
53 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
  /external/guava/guava/src/com/google/common/collect/
DescendingImmutableSortedMultiset.java 38 public Entry<E> firstEntry() {
43 public Entry<E> lastEntry() {
58 Entry<E> getEntry(int index) {
EmptyImmutableSortedMultiset.java 38 public Entry<E> firstEntry() {
43 public Entry<E> lastEntry() {
68 Entry<E> getEntry(int index) {
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ImmutableEnumMapTest.java 29 import java.util.Map.Entry;
40 protected Map<AnEnum, String> create(Entry<AnEnum, String>[] entries) {
42 for (Entry<AnEnum, String> entry : entries) {
43 map.put(entry.getKey(), entry.getValue());
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
BodyDeclarationLocatorStore.java 20 import java.util.Map.Entry;
66 for (Entry<BodyDeclarationLocator, T> entry : locator2Data.entrySet()) {
67 if (entry.getKey().matches(declaration)) {
68 return entry.getValue();
106 for (Entry<BodyDeclarationLocator, T> entry : locator2Data.entrySet()) {
107 if (entry.getKey().matches(declaration)) {
108 return new Mapping<>(entry.getKey(), entry.getValue())
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
TrackFragmentRandomAccessBox.java 61 private List<Entry> entries = Collections.emptyList();
94 entries = new ArrayList<Entry>();
97 Entry entry = new Entry(); local
99 entry.time = IsoTypeReader.readUInt64(content);
100 entry.moofOffset = IsoTypeReader.readUInt64(content);
102 entry.time = IsoTypeReader.readUInt32(content);
103 entry.moofOffset = IsoTypeReader.readUInt32(content);
105 entry.trafNumber = IsoTypeReaderVariable.read(content, lengthSizeOfTrafNum)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
TwoSecondIntersectionFinder.java 33 for (TimeToSampleBox.Entry entry : track.getDecodingTimeEntries()) {
34 duration += entry.getCount() * entry.getDelta();
43 List<TimeToSampleBox.Entry> entries = track.getDecodingTimeEntries();
64 for (TimeToSampleBox.Entry entry : entries) {
65 for (int i = 0; i < entry.getCount(); i++) {
71 time += entry.getDelta();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
ReplaceSampleTrack.java 54 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() {
59 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() {
68 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26244/
SegmentIndexBox.java 44 List<Entry> entries = new ArrayList<Entry>();
85 for (Entry entry : entries) {
87 b.writeBits(entry.getReferenceType(), 1);
88 b.writeBits(entry.getReferencedSize(), 31);
89 IsoTypeWriter.writeUInt32(byteBuffer, entry.getSubsegmentDuration());
91 b.writeBits(entry.getStartsWithSap(), 1);
92 b.writeBits(entry.getSapType(), 3);
93 b.writeBits(entry.getSapDeltaTime(), 28)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 154 TargetLowering::ArgListEntry Entry;
158 Entry.Node = Dst;
159 Entry.Ty = IntPtrTy;
160 Args.push_back(Entry);
163 Entry.Node = Size;
164 Entry.Ty = IntPtrTy;
165 Entry.isSExt = false;
166 Args.push_back(Entry);
175 Entry.Node = Src;
176 Entry.Ty = Type::getInt32Ty(*DAG.getContext())
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/XRay/
InstrumentationMap.cpp 89 "an XRay sled entry in ELF64."),
99 auto &Entry = Sleds.back();
101 Entry.Address = Extractor.getU64(&OffsetPtr);
102 Entry.Function = Extractor.getU64(&OffsetPtr);
105 SledEntry::FunctionKinds::ENTRY, SledEntry::FunctionKinds::EXIT,
112 Entry.Kind = Kinds[Kind];
113 Entry.AlwaysInstrument = Extractor.getU8(&OffsetPtr) != 0;
119 CurFn = Entry.Function;
120 FunctionAddresses[FuncId] = Entry.Function;
121 FunctionIds[Entry.Function] = FuncId
    [all...]
  /external/v8/src/profiler/
circular-queue-inl.h 60 typename SamplingCircularQueue<T, L>::Entry* SamplingCircularQueue<T, L>::Next(
61 Entry* entry) {
62 Entry* next = entry + 1;
  /cts/tools/release-parser/src/com/android/cts/releaseparser/
DepCsvPrinter.java 36 private TreeMap<String, Entry> mTreeEntryMap;
41 private ArrayList<Entry> mEntryList;
51 mTreeEntryMap = new TreeMap<String, Entry>(mRelContent.getEntries());
61 for (Entry entry : mRelContent.getEntries().values()) {
62 if (entry.getType() == Entry.EntryType.EXE) {
63 String exeName = entry.getName();
65 writeCsv(entry, fileName);
77 for (Entry entry : mRelContent.getEntries().values())
    [all...]

Completed in 400 milliseconds

<<11121314151617181920>>