Searched defs:Entry (Results 201 - 225 of 343) sorted by relevance

1234567891011>>

/external/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp292 SEHUnwindMapEntry Entry; local
293 Entry.ToState = ParentState;
294 Entry.IsFinally = false;
295 Entry.Filter = Filter;
296 Entry.Handler = Handler;
297 FuncInfo.SEHUnwindMap.push_back(Entry);
303 SEHUnwindMapEntry Entry; local
304 Entry.ToState = ParentState;
305 Entry.IsFinally = true;
306 Entry
431 ClrEHUnwindMapEntry Entry; local
[all...]
/external/llvm/lib/IR/
H A DType.cpp314 IntegerType *&Entry = C.pImpl->IntegerTypes[NumBits]; local
316 if (!Entry)
317 Entry = new (C.pImpl->TypeAllocator) IntegerType(C, NumBits);
319 return Entry;
684 ArrayType *&Entry = local
687 if (!Entry)
688 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
689 return Entry;
714 VectorType *&Entry = ElementType->getContext().pImpl local
717 if (!Entry)
738 PointerType *&Entry = AddressSpace == 0 ? CImpl->PointerTypes[EltTy] local
[all...]
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp1152 auto *Entry = reinterpret_cast<ulittle32_t *>(IntPtr); local
1153 while (*Entry++)
1156 auto *Entry = reinterpret_cast<ulittle64_t *>(IntPtr); local
1157 while (*Entry++)
1424 auto *Entry = reinterpret_cast<const coff_base_reloc_block_entry *>(Header + 1); local
1425 Type = Entry[Index].getType();
1430 auto *Entry = reinterpret_cast<const coff_base_reloc_block_entry *>(Header + 1); local
1431 Result = Header->PageRVA + Entry[Index].getOffset();
/external/llvm/lib/Support/
H A DYAMLTraits.cpp344 auto Entry = this->createHNodes(&SN); local
347 SQHNode->Entries.push_back(std::move(Entry));
/external/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.cpp694 MachineBasicBlock &Entry = MBB.getParent()->front(); local
695 MachineBasicBlock::iterator Insert = Entry.front();
715 if (!Entry.isLiveIn(Reg))
716 Entry.addLiveIn(Reg);
719 RS->enterBasicBlock(&Entry);
723 BuildMI(Entry, Insert, DL, get(AMDGPU::S_LOAD_DWORD_IMM), STmp0)
726 BuildMI(Entry, Insert, DL, get(AMDGPU::S_LOAD_DWORD_IMM), STmp1)
731 BuildMI(Entry, Insert, DL, get(AMDGPU::S_MUL_I32), STmp1)
735 BuildMI(Entry, Insert, DL, get(AMDGPU::V_MUL_U32_U24_e32), TIDReg)
739 BuildMI(Entry, Inser
[all...]
/external/llvm/lib/Target/WebAssembly/
H A DRelooper.cpp85 void Calculate(Block *Entry);
207 void RelooperAlgorithm::Calculate(Block *Entry) { argument
282 Pre.FindLive(Entry);
463 for (const auto &Entry : Entries) {
464 Helper.Ownership[Entry] = Entry;
465 IndependentGroups[Entry].insert(Entry);
466 Queue.push_back(Entry);
568 for (const auto &Entry
640 Block *Entry = iter->first; local
[all...]
/external/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp323 MachineBasicBlock *Entry = &MF.front(); local
326 for (MachineBasicBlock *BB : depth_first_ext(Entry, Processed))
/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp955 BasicBlock *Entry = BasicBlock::Create(*Ctx, "entry", FlushF); local
961 IRBuilder<> Builder(Entry);
/external/llvm/lib/Transforms/Scalar/
H A DStructurizeCFG.cpp153 /// | / 1 = "Entry" block
473 BasicBlock *Entry = R->getEntry(); local
474 if (Visited.count(Entry))
475 Pred[Entry] = BoolTrue;
477 LPred[Entry] = BoolFalse;
708 BasicBlock *Entry = PrevNode->getEntry(); local
711 killTerminator(Entry);
712 if (!NeedEmpty || Entry->getFirstInsertionPt() == Entry->end())
713 return Entry;
797 BasicBlock *Entry = Node->getEntry(); local
[all...]
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp369 MachO::nlist Entry = Obj->getSymbolTableEntry(DRI); local
370 Symbol.StringIndex = Entry.n_strx;
371 Symbol.Type = Entry.n_type;
372 Symbol.SectionIndex = Entry.n_sect;
373 Symbol.Flags = Entry.n_desc;
374 Symbol.Value = Entry.n_value;
377 MachO::nlist_64 Entry = Obj->getSymbol64TableEntry(DRI); local
378 Symbol.StringIndex = Entry.n_strx;
379 Symbol.Type = Entry.n_type;
380 Symbol.SectionIndex = Entry
[all...]
/external/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp896 unsigned Entry = MCOpPredicateMap[Rec]; local
897 if (!Entry) {
900 Entry = MCOpPredicates.size();
901 MCOpPredicateMap[Rec] = Entry;
906 Op + ", STI, " + llvm::utostr(Entry) + ")";
959 for (auto &Entry : IAPrinterMap) {
960 std::vector<IAPrinter> &IAPs = Entry.second;
978 CasesO.indent(2) << "case " << Entry.first << ":\n";
H A DRegisterInfoEmitter.cpp614 CodeGenSubRegIndex *&Entry = Vec[I.first->EnumValue - 1]; local
615 if (Entry && Entry != I.second)
621 auto *&Entry = Vec[I.first->EnumValue - 1]; local
622 assert((!Entry || Entry == I.second) &&
624 Entry = I.second;
/external/v8/test/cctest/compiler/
H A Dtest-js-typed-lowering.cc1229 struct Entry { struct
1237 Entry ops[] = {
/external/clang/include/clang/Analysis/
H A DCFG.h718 /// Entry block. The CFG solely represents control-flow; it consists of
824 void setEntry(CFGBlock *B) { Entry = B; }
862 CFGBlock & getEntry() { return *Entry; }
863 const CFGBlock & getEntry() const { return *Entry; }
951 : Entry(nullptr), Exit(nullptr), IndirectGotoBlock(nullptr), NumBlockIDs(0),
963 CFGBlock *Entry; member in class:clang::CFGBlock::CFG
/external/clang/include/clang/Basic/
H A DSourceManager.h112 /// Can be different from 'Entry' if we overridden the contents of one file
605 /// Positive FileIDs are indexes into this table. Entry 0 indicates an invalid
890 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid); local
891 if (MyInvalid || !Entry.isFile()) {
898 return Entry.getFile().getContentCache()->getBuffer(Diag, *this, Loc,
904 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid); local
905 if (MyInvalid || !Entry.isFile()) {
912 return Entry.getFile().getContentCache()->getBuffer(Diag, *this,
920 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid); local
921 if (MyInvalid || !Entry
950 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
961 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1000 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1012 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1024 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
[all...]
/external/clang/lib/Analysis/
H A DConsumed.cpp512 ConstInfoEntry Entry = findInfo(StmtNode); local
514 if (Entry != PropagationMap.end())
515 return Entry->second;
527 InfoEntry Entry = findInfo(From); local
528 if (Entry != PropagationMap.end())
529 insertInfo(To, Entry->second);
537 InfoEntry Entry = findInfo(From); local
538 if (Entry != PropagationMap.end()) {
539 PropagationInfo& PInfo = Entry->second;
551 InfoEntry Entry local
562 InfoEntry Entry = findInfo(To); local
623 InfoEntry Entry = findInfo(Call->getArg(Index)); local
766 InfoEntry Entry = findInfo(Temp->getSubExpr()); local
890 InfoEntry Entry = findInfo(Ret->getRetValue()); local
907 InfoEntry Entry = findInfo(UOp->getSubExpr()); local
1047 auto &Entry = StateMapsArray[Block->getBlockID()]; local
1062 auto &Entry = StateMapsArray[Block->getBlockID()]; local
1086 auto &Entry = StateMapsArray[Block->getBlockID()]; local
1140 VarMapType::const_iterator Entry = VarMap.find(Var); local
1150 TmpMapType::const_iterator Entry = TmpMap.find(Tmp); local
[all...]
/external/clang/lib/Basic/
H A DSourceManager.cpp294 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); local
295 if (!Entry.isFile() || Invalid)
298 const SrcMgr::FileInfo &FileInfo = Entry.getFile();
322 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); local
323 if (!Entry.isFile() || Invalid)
326 const SrcMgr::FileInfo &FileInfo = Entry.getFile();
420 ContentCache *&Entry = FileInfos[FileEnt]; local
421 if (Entry) return Entry;
424 Entry
453 ContentCache *Entry = ContentCacheAlloc.Allocate<ContentCache>(); local
1108 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &CharDataInvalid); local
1296 const SLocEntry &Entry = getSLocEntry(FID, &MyInvalid); local
1421 const LineEntry *Entry = local
1457 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); local
1527 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); local
1546 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1692 const FileEntry *Entry = FileContentCache ? FileContentCache->OrigEntry local
1726 const SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1803 const SrcMgr::SLocEntry &Entry = getSLocEntryByID(ID, &Invalid); local
1856 const SLocEntry &Entry = getSLocEntry(SpellFID); local
1970 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
[all...]
H A DVirtualFileSystem.cpp467 for (const auto &Entry : Entries) {
468 Result += Entry.second->toString(Indent + 2);
676 class Entry { class in namespace:__anon1081
681 virtual ~Entry();
682 Entry(EntryKind K, StringRef Name) : Kind(K), Name(Name) {} function in class:__anon1081::Entry
687 class RedirectingDirectoryEntry : public Entry {
688 std::vector<std::unique_ptr<Entry>> Contents;
693 std::vector<std::unique_ptr<Entry>> Contents,
695 : Entry(EK_Directory, Name), Contents(std::move(Contents)),
701 static bool classof(const Entry *
1457 const YAMLVFSEntry &Entry = Entries.front(); local
[all...]
/external/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp175 auto Entry = SM.getFileEntryForID(SpellingFile); local
176 if (!Entry)
180 Mapping.push_back(CVM.getFileID(Entry));
945 for (const auto &Entry : FileEntries)
946 FilenameRefs[Entry.second] = Entry.first->getName();
966 for (const auto &Entry : FileEntries) {
967 llvm::SmallString<256> Path(Entry.first->getName());
970 auto I = Entry.second;
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp475 const FileEntry *Entry = PP.getFileManager().getFile(Filename); local
476 if (!Entry) {
483 PP.SetCodeCompletionPoint(Entry, Line, Column);
1683 const FileEntry *Entry = TheModule->getASTFile(); local
1684 if (!Entry) {
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp457 for (PDFileEntry &Entry : Set)
458 Entry.~PDFileEntry();
467 PDFileEntry *Entry = Set.FindNodeOrInsertPos(NodeID, InsertPos); local
468 if (!Entry) {
469 Entry = Alloc.Allocate<PDFileEntry>();
470 Entry = new (Entry) PDFileEntry(NodeID);
471 Set.InsertNode(Entry, InsertPos);
478 Entry->files.push_back(std::make_pair(ConsumerName,
488 PDFileEntry *Entry local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/
H A DvktShaderLibrary.cpp599 struct Entry struct in struct:vkt::__anon3771::ValueBufferLayout
604 Entry (void) : offset(0), vecStride(0) {} function in struct:vkt::__anon3771::ValueBufferLayout::Entry
605 Entry (int offset_, int vecStride_) : offset(offset_), vecStride(vecStride_) {} function in struct:vkt::__anon3771::ValueBufferLayout::Entry
608 vector<Entry> entries;
630 layout.entries[ndx] = ValueBufferLayout::Entry(layout.size, alignment);
652 layout.entries[ndx] = ValueBufferLayout::Entry(layout.size, alignment);
659 void copyToLayout (void* dst, const ValueBufferLayout::Entry& entryLayout, const Value& value, int arrayNdx)
1016 const ValueBufferLayout::Entry& layoutEntry = layout.entries[inputNdx];
/external/guava/guava/src/com/google/common/collect/
H A DMaps.java54 import java.util.Map.Entry;
85 private enum EntryFunction implements Function<Entry<?, ?>, Object> {
89 public Object apply(Entry<?, ?> entry) {
96 public Object apply(Entry<?, ?> entry) {
103 static <K> Function<Entry<K, ?>, K> keyFunction() {
108 static <V> Function<Entry<?, V>, V> valueFunction() {
112 static <K, V> Iterator<K> keyIterator(Iterator<Entry<K, V>> entryIterator) {
116 static <K, V> Iterator<V> valueIterator(Iterator<Entry<K, V>> entryIterator) {
121 final UnmodifiableIterator<Entry<K, V>> entryIterator) {
157 for (Map.Entry<
1845 transformEntry( final EntryTransformer<? super K, ? super V1, V2> transformer, final Entry<K, V1> entry) argument
2073 transformEntry(@ullable Entry<K, V1> entry) argument
2413 filterEntries( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2457 filterEntries( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2463 filterSortedIgnoreNavigable( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2504 filterEntries( NavigableMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2540 filterEntries( BiMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2553 filterFiltered(AbstractFilteredMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2564 AbstractFilteredMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) argument
2617 FilteredMapValues(Map<K, V> filteredMap, Map<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) argument
2656 FilteredKeyMap(Map<K, V> unfiltered, Predicate<? super K> keyPredicate, Predicate<? super Entry<K, V>> entryPredicate) argument
2688 FilteredEntryMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2773 filterFiltered( FilteredEntrySortedMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2784 FilteredEntrySortedMap(SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2875 filterFiltered( FilteredEntryNavigableMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2895 FilteredEntryNavigableMap( NavigableMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
3022 filterFiltered( FilteredEntryBiMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
3032 inversePredicate( final Predicate<? super Entry<K, V>> forwardPredicate) argument
3043 FilteredEntryBiMap(BiMap<K, V> delegate, Predicate<? super Entry<K, V>> predicate) argument
3050 FilteredEntryBiMap( BiMap<K, V> delegate, Predicate<? super Entry<K, V>> predicate, BiMap<V, K> inverse) argument
3100 unmodifiableOrNull(@ullable Entry<K, V> entry) argument
3522 keyOrNull(@ullable Entry<K, ?> entry) argument
3527 valueOrNull(@ullable Entry<?, V> entry) argument
[all...]
H A DSynchronized.java35 import java.util.Map.Entry;
422 transient Set<Entry<E>> entrySet;
478 public Set<Entry<E>> entrySet() {
518 transient Collection<Map.Entry<K, V>> entries;
643 public Collection<Map.Entry<K, V>> entries() {
738 transient Set<Map.Entry<K, V>> entrySet;
763 @Override public Set<Map.Entry<K, V>> entries() {
840 extends SynchronizedSet<Map.Entry<K, Collection<V>>> {
842 Set<Map.Entry<K, Collection<V>>> delegate, @Nullable Object mutex) {
846 @Override public Iterator<Map.Entry<
1514 nullableSynchronizedEntry( @ullable Entry<K, V> entry, @Nullable Object mutex) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMaps.java52 import java.util.Map.Entry;
80 private enum EntryFunction implements Function<Entry<?, ?>, Object> {
84 public Object apply(Entry<?, ?> entry) {
91 public Object apply(Entry<?, ?> entry) {
98 static <K> Function<Entry<K, ?>, K> keyFunction() {
103 static <V> Function<Entry<?, V>, V> valueFunction() {
107 static <K, V> Iterator<K> keyIterator(Iterator<Entry<K, V>> entryIterator) {
111 static <K, V> Iterator<V> valueIterator(Iterator<Entry<K, V>> entryIterator) {
116 final UnmodifiableIterator<Entry<K, V>> entryIterator) {
152 for (Map.Entry<
1536 transformEntry( final EntryTransformer<? super K, ? super V1, V2> transformer, final Entry<K, V1> entry) argument
1921 filterEntries( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1965 filterEntries( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1971 filterSortedIgnoreNavigable( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2007 filterEntries( BiMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2020 filterFiltered(AbstractFilteredMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2031 AbstractFilteredMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) argument
2084 FilteredMapValues(Map<K, V> filteredMap, Map<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) argument
2123 FilteredKeyMap(Map<K, V> unfiltered, Predicate<? super K> keyPredicate, Predicate<? super Entry<K, V>> entryPredicate) argument
2155 FilteredEntryMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2240 filterFiltered( FilteredEntrySortedMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2251 FilteredEntrySortedMap(SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2341 filterFiltered( FilteredEntryBiMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2351 inversePredicate( final Predicate<? super Entry<K, V>> forwardPredicate) argument
2362 FilteredEntryBiMap(BiMap<K, V> delegate, Predicate<? super Entry<K, V>> predicate) argument
2369 FilteredEntryBiMap( BiMap<K, V> delegate, Predicate<? super Entry<K, V>> predicate, BiMap<V, K> inverse) argument
2397 unmodifiableOrNull(@ullable Entry<K, V> entry) argument
2623 keyOrNull(@ullable Entry<K, ?> entry) argument
2628 valueOrNull(@ullable Entry<?, V> entry) argument
[all...]

Completed in 1046 milliseconds

1234567891011>>