HomeSort by relevance Sort by last modified time
    Searched defs:Entry (Results 251 - 275 of 800) sorted by null

<<11121314151617181920>>

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Registry.h 25 /// A simple registry entry which provides only a name, description, and
48 typedef SimpleRegistryEntry<T> entry; typedef in class:llvm::Registry
67 const entry& Val;
70 node(const entry &V) : Next(nullptr), Val(V) {}
93 const entry &operator*() const { return Cur->Val; }
94 const entry *operator->() const { return &Cur->Val; }
116 entry Entry;
123 : Entry(Name, Desc, CtorFn), Node(Entry) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
SpillPlacement.h 79 /// BorderConstraint - A basic block has separate constraints for entry and
83 PrefReg, ///< Block entry/exit prefers a register.
84 PrefSpill, ///< Block entry/exit prefers a stack slot.
85 PrefBoth, ///< Block entry prefers both register and stack.
89 /// BlockConstraint - Entry and exit constraints for a basic block.
92 BorderConstraint Entry : 8; ///< Constraint on block entry.
118 /// Entry = Exit = PrefSpill, and ChangesValue = false.
163 void setThreshold(const BlockFrequency &Entry);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
SpecialCaseList.cpp 190 auto &Entry = Sections[SectionsMap[Section]].Entries[Prefix][Category];
192 if (!Entry.insert(std::move(Regexp), LineNo, REError)) {
  /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/lib/Target/Hexagon/
HexagonGenExtract.cpp 260 BasicBlock *Entry = GraphTraits<Function*>::getEntryNode(&F);
261 Changed = visitBlock(Entry);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
X86RetpolineThunks.cpp 213 BasicBlock *Entry = BasicBlock::Create(Ctx, "entry", F);
214 IRBuilder<> Builder(Entry);
222 MachineBasicBlock *EntryMBB = MF.CreateMachineBasicBlock(Entry);
241 MachineBasicBlock *Entry = &MF.front();
242 Entry->clear();
244 MachineBasicBlock *CaptureSpec = MF.CreateMachineBasicBlock(Entry->getBasicBlock());
245 MachineBasicBlock *CallTarget = MF.CreateMachineBasicBlock(Entry->getBasicBlock());
252 BuildMI(Entry, DebugLoc(), TII->get(CallOpc)).addMBB(CallTarget);
253 Entry->addSuccessor(CallTarget)
    [all...]
X86SelectionDAGInfo.cpp 89 // Check to see if there is a specialized entry-point for memory zeroing.
99 TargetLowering::ArgListEntry Entry;
100 Entry.Node = Dst;
101 Entry.Ty = IntPtrTy;
102 Args.push_back(Entry);
103 Entry.Node = Size;
104 Args.push_back(Entry);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/AggressiveInstCombine/
TruncInstCombine.cpp 296 Info Entry = InstInfoMap.lookup(I);
297 assert(Entry.NewValue);
298 return Entry.NewValue;
334 auto Entry = find(Worklist, I);
335 if (Entry != Worklist.end()) {
337 *Entry = NewCI;
339 Worklist.erase(Entry);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cvtres/
llvm-cvtres.cpp 177 ResourceEntryRef Entry = error(RF->getHeadEntry());
180 error(Entry.moveNext(End));
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-link/
llvm-link.cpp 264 auto &Entry = ImportList[FileName];
265 Entry.insert(F->getGUID());
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
TimelineView.cpp 46 // Update the WaitTime entry which corresponds to this Index.
77 const WaitTimeEntry &Entry,
82 if (Entry.Executions == 0) {
86 unsigned Executions = Entry.Executions;
87 AverageTime1 = (double)Entry.CyclesSpentInSchedulerQueue / Executions;
88 AverageTime2 = (double)Entry.CyclesSpentInSQWhileReady / Executions;
89 AverageTime3 = (double)Entry.CyclesSpentAfterWBAndBeforeRetire / Executions;
143 const TimelineViewEntry &Entry,
150 for (unsigned I = 0, E = Entry.CycleDispatched; I < E; ++I)
153 if (Entry.CycleDispatched != Entry.CycleExecuted)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 256 // If we found an entry that matches out matcher, merge it into the set to
289 // Otherwise, we don't know how to handle this entry, we have to bail.
311 // Factor these checks by pulling the first node off each entry and
312 // discarding it. Take the first one off the first entry to reuse.
416 unsigned &Entry = TypeEntry[CTMTy];
417 if (Entry != 0) {
419 Matcher *PrevMatcher = Cases[Entry-1].second;
427 Cases[Entry-1].second = new ScopeMatcher(Entries);
431 Entry = Cases.size()+1;
X86EVEX2VEXTablesEmitter.cpp 33 typedef std::pair<const CodeGenInstruction *, const CodeGenInstruction *> Entry;
36 std::vector<Entry> EVEX2VEX128;
37 std::vector<Entry> EVEX2VEX256;
48 void printTable(const std::vector<Entry> &Table, raw_ostream &OS);
51 void X86EVEX2VEXTablesEmitter::printTable(const std::vector<Entry> &Table,
238 // In case a match is found add new entry to the appropriate table
  /external/v8/src/ast/
modules.h 80 struct Entry : public ZoneObject {
102 explicit Entry(Scanner::Location loc)
112 // parser. (A Deserialize'd entry has an invalid location.)
114 static Entry* Deserialize(Isolate* isolate, AstValueFactory* avfactory,
115 Handle<ModuleInfoEntry> entry);
135 typedef ZoneMultimap<const AstRawString*, Entry*, AstRawStringComparer>
137 typedef ZoneMap<const AstRawString*, Entry*, AstRawStringComparer>
144 const ZoneVector<const Entry*>& namespace_imports() const {
152 const ZoneVector<const Entry*>& special_exports() const {
160 void AddRegularExport(Entry* entry)
    [all...]
  /external/v8/src/ic/
stub-cache.h 35 struct Entry {
42 // Access cache for entry hash(name, map).
65 StubCache::Entry* first_entry(StubCache::Table table) {
77 // Setting the entry size such that the index is shifted by Name::kHashShift
105 // update strategy on updates is fairly clear and simple: Any existing entry
119 // Compute the entry for a given offset in exactly the same way as
122 // of sizeof(Entry). This makes it easier to avoid making mistakes
124 static Entry* entry(Entry* table, int offset) function in class:v8::internal::StubCache
    [all...]
  /external/webrtc/webrtc/base/
diskcache.h 63 struct Entry {
70 typedef std::map<std::string, Entry> EntryMap;
79 const Entry* GetEntry(const std::string& id) const {
82 Entry* GetOrCreateEntry(const std::string& id, bool create);
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 35 * where each list element represents a single entry (post) in the XML feed.
51 /** Parse an Atom feed, returning a collection of Entry objects.
54 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
58 public List<Entry> parse(InputStream in)
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
79 private List<Entry> readFeed(XmlPullParser parser)
81 List<Entry> entries = new ArrayList<Entry>();
96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
100 // <entry>
    [all...]
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 35 * where each list element represents a single entry (post) in the XML feed.
51 /** Parse an Atom feed, returning a collection of Entry objects.
54 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
58 public List<Entry> parse(InputStream in)
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
79 private List<Entry> readFeed(XmlPullParser parser)
81 List<Entry> entries = new ArrayList<Entry>();
96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
100 // <entry>
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/
FeedParser.java 35 * where each list element represents a single entry (post) in the XML feed.
51 /** Parse an Atom feed, returning a collection of Entry objects.
54 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
58 public List<Entry> parse(InputStream in)
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
79 private List<Entry> readFeed(XmlPullParser parser)
81 List<Entry> entries = new ArrayList<Entry>();
96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
100 // <entry>
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/HiKeyFastbootDxe/
HiKeyFastbootDxe.c 73 FASTBOOT_PARTITION_LIST *Entry;
76 Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&mPartitionListHead);
77 while (!IsNull (&mPartitionListHead, &Entry->Link)) {
78 NextEntry = (FASTBOOT_PARTITION_LIST *) GetNextNode (&mPartitionListHead, &Entry->Link);
80 RemoveEntryList (&Entry->Link);
81 FreePool (Entry);
83 Entry = NextEntry;
105 EFI_PARTITION_ENTRY *Entry;
116 // Read size of Partition entry and number of entries from GPT header
141 Entry = (EFI_PARTITION_ENTRY *)(Buffer + (2 * BlockSize));
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey960/HiKey960FastbootDxe/
HiKey960FastbootDxe.c 74 FASTBOOT_PARTITION_LIST *Entry;
77 Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&mPartitionListHead);
78 while (!IsNull (&mPartitionListHead, &Entry->Link)) {
79 NextEntry = (FASTBOOT_PARTITION_LIST *) GetNextNode (&mPartitionListHead, &Entry->Link);
81 RemoveEntryList (&Entry->Link);
82 FreePool (Entry);
84 Entry = NextEntry;
102 EFI_PARTITION_ENTRY *Entry;
116 // Read size of Partition entry and number of entries from GPT header
141 Entry = (EFI_PARTITION_ENTRY *)(Buffer + (2 * BlockSize));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/OrderedCollectionTest/
OrderedCollectionTest.c 144 ORDERED_COLLECTION_ENTRY *Entry;
146 Entry = OrderedCollectionMin (Collection);
147 while (Entry != NULL) {
152 Next = OrderedCollectionNext (Entry);
153 OrderedCollectionDelete (Collection, Entry, &Ptr);
159 Entry = Next;
177 ORDERED_COLLECTION_ENTRY *Entry;
179 Entry = OrderedCollectionMax (Collection);
180 while (Entry != NULL) {
185 Prev = OrderedCollectionPrev (Entry);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/DataSink/
DataSink.c 270 nfds_t Entry;
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/
ArmVExpressFastBoot.c 57 FASTBOOT_PARTITION_LIST *Entry;
60 Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&mPartitionListHead);
61 while (!IsNull (&mPartitionListHead, &Entry->Link)) {
62 NextEntry = (FASTBOOT_PARTITION_LIST *) GetNextNode (&mPartitionListHead, &Entry->Link);
64 RemoveEntryList (&Entry->Link);
65 FreePool (Entry);
67 Entry = NextEntry;
91 // Read size of Partition entry and number of entries from GPT header
163 FASTBOOT_PARTITION_LIST *Entry;
204 // Read the GPT partition entry array into memory so we can get the partition names
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/
EblCmdLib.c 75 UINTN Entry;
101 for (Entry = 0; Entry < DebugImageTableHeader->TableSize; Entry++, DebugTable++) {
247 // The entry for EBL is still running so the stop time will be zero. Skip it

Completed in 4094 milliseconds

<<11121314151617181920>>