Searched refs:Symbols (Results 1 - 25 of 30) sorted by relevance

12

/macosx-10.9.5/xnu-2422.115.4/libsyscall/xcodescripts/
H A Dcreate-syscalls.pl99 my %Symbols = (
216 $Symbols{$name} = {
234 while (($c_sym_name, $sym) = each %Symbols) {
257 foreach my $k (keys %Symbols) {
258 $sym_to_c{$Symbols{$k}{asm_sym}} = $k;
283 foreach my $sym (values %Symbols) {
300 if ($Symbols{$c}) {
301 push(@{$Symbols{$c}{except}}, $arch);
395 while (($k, $sym) = each %Symbols)
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DMachineModuleInfo.cpp56 /// Symbols - The symbols for the label. This is a pointer union that is
58 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols; member in struct:llvm::MMIAddrLabelMap::AddrLabelSymEntry
86 if (I->second.Symbols.is<std::vector<MCSymbol*>*>())
87 delete I->second.Symbols.get<std::vector<MCSymbol*>*>();
107 if (!Entry.Symbols.isNull()) {
109 if (Entry.Symbols.is<MCSymbol*>())
110 return Entry.Symbols.get<MCSymbol*>();
111 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0];
121 Entry.Symbols = Result;
134 if (Entry.Symbols
[all...]
/macosx-10.9.5/tcl-102/
H A DGNUmakefile7 SYMROOT ?= /tmp/tcl/Symbols
/macosx-10.9.5/Security-55471.14.18/sec/SOSCircle/CloudKeychainProxy/scripts/
H A Dsosbuildroot27 tar -czvf $symtar -C ${buildRoots}/Symbols . &> /dev/null
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-objdump/
H A DMachODump.cpp206 std::vector<SymbolRef> &Symbols,
211 Symbols.push_back(*SI);
295 std::vector<SymbolRef> Symbols; local
298 getSectionsAndSymbols(Header, MachOOF.get(), &SymtabLC, Sections, Symbols,
302 std::vector<SymbolRef> UnsortedSymbols(Symbols);
304 std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
334 std::vector<SymbolRef> Symbols; local
336 getSectionsAndSymbols(Header, DSYMObj.get(), 0, DSYMSections, Symbols,
411 for (unsigned SymIdx = 0; SymIdx != Symbols
202 getSectionsAndSymbols(const macho::Header &Header, MachOObjectFile *MachOObj, InMemoryStruct<macho::SymtabLoadCommand> *SymtabLC, std::vector<SectionRef> &Sections, std::vector<SymbolRef> &Symbols, SmallVectorImpl<uint64_t> &FoundFns) argument
[all...]
H A Dllvm-objdump.cpp200 std::vector<std::pair<uint64_t, StringRef> > Symbols; local
212 Symbols.push_back(std::make_pair(Address, Name));
217 array_pod_sort(Symbols.begin(), Symbols.end());
239 if (Symbols.empty())
240 Symbols.push_back(std::make_pair(0, name));
297 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) {
298 uint64_t Start = Symbols[si].first;
305 else if (Symbols[si + 1].first != Start)
306 End = Symbols[s
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.h60 const SymbolTableMap &Symbols,
H A DRuntimeDyldMachO.h54 const SymbolTableMap &Symbols,
H A DRuntimeDyldMachO.cpp208 const SymbolTableMap &Symbols,
223 SymbolTableMap::const_iterator lsi = Symbols.find(TargetName.data());
224 if (lsi != Symbols.end()) {
205 processRelocationRef(const ObjRelocationInfo &Rel, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols, StubMap &Stubs) argument
H A DRuntimeDyldELF.cpp379 const SymbolTableMap &Symbols,
395 SymbolTableMap::const_iterator lsi = Symbols.find(TargetName.data());
396 if (lsi != Symbols.end()) {
376 processRelocationRef(const ObjRelocationInfo &Rel, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols, StubMap &Stubs) argument
H A DRuntimeDyldImpl.h152 // Relocations to external symbols that are not yet resolved. Symbols are
249 const SymbolTableMap &Symbols,
/macosx-10.9.5/remote_cmds-41.90.1/timed.tproj/SMM.doc/
H A DMakefile19 "SYMROOT = ./Symbols" \
65 @$(RM) -rf Objects Symbols *_obj sym
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/MC/
H A DMCAssembler.h701 iplist<MCSymbolData> Symbols; member in class:llvm::MCAssembler
863 const SymbolDataListType &getSymbolList() const { return Symbols; }
864 SymbolDataListType &getSymbolList() { return Symbols; }
866 symbol_iterator symbol_begin() { return Symbols.begin(); }
867 const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
869 symbol_iterator symbol_end() { return Symbols.end(); }
870 const_symbol_iterator symbol_end() const { return Symbols.end(); }
872 size_t symbol_size() const { return Symbols.size(); }
H A DMCContext.h66 /// Symbols - Bindings of names to symbols.
67 SymbolTable Symbols; member in class:llvm::MCContext
115 /// Symbols created for the start and end of this section.
193 return Symbols;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h90 // in 'buffer', and Symbols[i-1] records the Value*.
99 SmallVector<Value *, 4> Symbols; member in class:llvm::NVPTXAsmPrinter::AggBuffer
140 Symbols.push_back(GVar);
163 Value *v = Symbols[nSym];
/macosx-10.9.5/llvmCore-3425.0.33/lib/MC/
H A DWinCOFFObjectWriter.cpp136 symbols Symbols; member in class:__anon10285::WinCOFFObjectWriter
328 for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I)
335 return createCOFFEntity<COFFSymbol>(Name, Symbols);
343 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
726 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
750 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
885 for (symbols::iterator i = Symbols
[all...]
H A DMCContext.cpp36 Allocator(), Symbols(Allocator), UsedNames(Allocator),
75 StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name);
153 return Symbols.lookup(Name);
/macosx-10.9.5/llvmCore-3425.0.33/tools/lto/
H A DLTOModule.cpp650 StringMap<State> Symbols; member in class:__anon10711::RecordStreamer
653 State &S = Symbols[Symbol.getName()];
667 State &S = Symbols[Symbol.getName()];
682 State &S = Symbols[Symbol.getName()];
727 return Symbols.begin();
731 return Symbols.end();
/macosx-10.9.5/llvmCore-3425.0.33/utils/yaml2obj/
H A Dyaml2obj.cpp512 YS.printError(SymbolsN, "Symbols must be a sequence");
663 Symbols.push_back(Sym);
725 std::vector<Symbol> Symbols; member in struct:COFFParser
762 for (std::vector<COFFParser::Symbol>::iterator i = CP.Symbols.begin(),
763 e = CP.Symbols.end();
839 for (std::vector<COFFParser::Symbol>::const_iterator i = CP.Symbols.begin(),
840 e = CP.Symbols.end();
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dmma.vim52 " to list all predefined Symbols would be too insane...
55 " TODO - populate this with other often used Symbols
H A Dmupad.vim44 " Symbols and Constants
H A Dplsql.vim41 " Symbols.
/macosx-10.9.5/vim-53/runtime/lang/
H A Dmenu_de_de.latin1.vim62 menutrans Toggle\ &Showmatch<Tab>:set\ sm! Anzeige\ des\ passenden\ &Symbols\ ein-\ und\ ausschalten<Tab>:set\ sm!
/macosx-10.9.5/libxml2-26/libxml2/doc/
H A Dsearch.php71 <li><a href="APIsymbols.html">Symbols</a></li>
/macosx-10.9.5/libxslt-13/libxslt/doc/
H A Dsearch.php10 <a href="tutorial2/libxslt_pipes.html" shape="rect">Tutorial2</a></li><li><a href="xsltproc.html" shape="rect">Man page for xsltproc</a></li><li><a href="http://mail.gnome.org/archives/xslt/" shape="rect">Mail archive</a></li><li><a href="http://xmlsoft.org/" shape="rect">XML libxml2</a></li><li><a href="ftp://xmlsoft.org/" shape="rect">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/" shape="rect">Windows binaries</a></li><li><a href="http://garypennington.net/libxml2/" shape="rect">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html" shape="rect">MacOsX binaries</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxslt" shape="rect">Bug Tracker</a></li><li><a href="http://codespeak.net/lxml/" shape="rect">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXSLT" shape="rect">Perl XSLT bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading17" shape="rect">XSLT with PHP</a></li><li><a href="http://www.mod-xslt2.com/" shape="rect">Apache module</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/" shape="rect">Pascal bindings</a></li><li><a href="http://xsldbg.sourceforge.net/" shape="rect">Xsldbg Debugger</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center" rowspan="1"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd" rowspan="1" colspan="1"><ul><li><a href="APIchunk0.html" shape="rect">Alphabetic</a></li><li><a href="APIconstructors.html" shape="rect">Constructors</a></li><li><a href="APIfunctions.html" shape="rect">Functions/Types</a></li><li><a href="APIfiles.html" shape="rect">Modules</a></li><li><a href="APIsymbols.html" shape="rect">Symbols</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765" rowspan="1" colspan="1"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td rowspan="1" colspan="1"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td rowspan="1" colspan="1"><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd" rowspan="1" colspan="1">

Completed in 375 milliseconds

12