| /minix3/external/bsd/llvm/dist/llvm/docs/ |
| H A D | CompilerWriterInfo.rst | 19 * `ARM documentation <http://www.arm.com/documentation/>`_ (`Processor Cores <http://www.arm.com/do… 21 * `ABI <http://www.arm.com/products/DevTools/ABI.html>`_ 23 * `ABI Addenda and Errata <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0045d/IHI0045D_ABI_a… 25 * `ARM C Language Extensions <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0053a/IHI0053A_ac… 30 * `ARMv8 Instruction Set Overview <http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.genc… 32 * `ARM C Language Extensions <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0053a/IHI0053A_ac… 37 * `Itanium documentation <http://developer.intel.com/design/itanium2/documentation.htm>`_ 42 * `MIPS Processor Architecture <http://imgtec.com/mips/mips-architectures.asp>`_ 52 * `PowerPC Compiler Writer's Guide <http://www.ibm.com/chips/techlib/techlib.nsf/techdocs/852569B20… 54 * `Intro to PowerPC Architecture <http://www.ibm.com/developerworks/linux/library/l-powarch/>`_ [all …]
|
| H A D | index.rst | 27 .. __: http://llvm.org/pubs/2008-10-04-ACAT-LLVM-Intro.html 32 .. __: http://www.aosabook.org/en/llvm.html 38 .. __: http://llvm.org/pubs/2004-01-30-CGO-LLVM.html 43 .. __: http://llvm.org/pubs/2002-12-LattnerMSThesis.html 45 `Publications mentioning LLVM <http://llvm.org/pubs>`_ 54 compilers, you should look into `Clang <http://clang.llvm.org>`_ or 55 `DragonEgg <http://dragonegg.llvm.org>`_ instead. The documentation here is 90 build system <http://www.cmake.org>`_. 133 .. __: http://clang.llvm.org/get_started.html 193 `Doxygen generated documentation <http://llvm.org/doxygen/>`_ [all …]
|
| /minix3/external/bsd/libevent/dist/include/event2/ |
| H A D | http.h | 96 int evhttp_bind_socket(struct evhttp *http, const char *address, ev_uint16_t port); 109 struct evhttp_bound_socket *evhttp_bind_socket_with_handle(struct evhttp *http, const char *address… 127 int evhttp_accept_socket(struct evhttp *http, evutil_socket_t fd); 139 struct evhttp_bound_socket *evhttp_accept_socket_with_handle(struct evhttp *http, evutil_socket_t f… 146 struct evhttp_bound_socket *evhttp_bind_listener(struct evhttp *http, struct evconnlistener *listen… 170 void evhttp_del_accept_socket(struct evhttp *http, struct evhttp_bound_socket *bound_socket); 189 void evhttp_free(struct evhttp* http); 192 void evhttp_set_max_headers_size(struct evhttp* http, ev_ssize_t max_headers_size); 194 void evhttp_set_max_body_size(struct evhttp* http, ev_ssize_t max_body_size); 207 void evhttp_set_allowed_methods(struct evhttp* http, ev_uint16_t methods); [all …]
|
| /minix3/external/bsd/llvm/dist/clang/www/ |
| H A D | menu.html.incl | 3 <a href="http://llvm.org/">LLVM Home</a> 29 <a href="http://clang-analyzer.llvm.org">Automatic Bug-Finding</a> 35 <a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-users">cfe-users List</a> 36 <a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev">cfe-dev List</a> 37 <a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits">cfe-commits List</a> 38 <a href="http://llvm.org/bugs/">Bug Reports</a> 39 <a href="http://planet.clang.org/">Planet Clang</a> 46 <a href="http://llvm.org/svn/llvm-project/cfe/trunk/">Browse SVN</a> 47 <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/">Browse ViewVC</a> 48 <a href="http://clang.llvm.org/doxygen/">doxygen</a> [all …]
|
| /minix3/external/bsd/llvm/dist/clang/docs/ |
| H A D | IntroductionToTheClangAST.rst | 12 …<center><iframe width="560" height="315" src="http://www.youtube.com/embed/VqCkCDFLSsc?vq=hd720" f… 14 `Slides <http://llvm.org/devmtg/2013-04/klimek-slides.pdf>`_ 26 `Doxygen <http://clang.llvm.org/doxygen>`_. The doxygen online 70 declaration <http://clang.llvm.org/doxygen/classclang_1_1TranslationUnitDecl.html>`_. 72 declaration <http://clang.llvm.org/doxygen/classclang_1_1FunctionDecl.html>`_ 74 statement <http://clang.llvm.org/doxygen/classclang_1_1CompoundStmt.html>`_, 76 statement <http://clang.llvm.org/doxygen/classclang_1_1DeclStmt.html>`_ 78 statement <http://clang.llvm.org/doxygen/classclang_1_1ReturnStmt.html>`_. 85 `ASTContext <http://clang.llvm.org/doxygen/classclang_1_1ASTContext.html>`_. 87 `getTranslationUnitDecl <http://clang.llvm.org/doxygen/classclang_1_1ASTContext.html#abd909fb01ef10… [all …]
|
| /minix3/tests/lib/libc/net/getaddrinfo/ |
| H A D | t_getaddrinfo.sh | 71 ( $TEST ::1 http 72 $TEST 127.0.0.1 http 73 $TEST localhost http 93 ( $TEST -4 localhost http 94 $TEST -6 localhost http ) > out 2>&1 108 ( $TEST '' http 112 $TEST -P '' http 180 ( $TEST fe80::1%lo0 http
|
| /minix3/external/bsd/libevent/dist/ |
| H A D | http.c | 201 static int evhttp_find_vhost(struct evhttp *http, struct evhttp **outhttp, 1149 struct evhttp *http = evcon->http_server; in evhttp_connection_free() local 1150 TAILQ_REMOVE(&http->connections, evcon, next); in evhttp_connection_free() 2942 evhttp_find_alias(struct evhttp *http, struct evhttp **outhttp, in evhttp_find_alias() argument 2948 TAILQ_FOREACH(alias, &http->aliases, next) { in evhttp_find_alias() 2952 *outhttp = http; in evhttp_find_alias() 2959 TAILQ_FOREACH(vhost, &http->virtualhosts, next_vhost) { in evhttp_find_alias() 2979 evhttp_find_vhost(struct evhttp *http, struct evhttp **outhttp, in evhttp_find_vhost() argument 2986 if (evhttp_find_alias(http, outhttp, hostname)) in evhttp_find_vhost() 2990 oldhttp = http; in evhttp_find_vhost() [all …]
|
| /minix3/external/bsd/libevent/dist/test/ |
| H A D | regress_rpc.c | 144 struct evhttp *http = NULL; in rpc_setup() local 147 http = http_setup(&port); in rpc_setup() 148 base = evrpc_init(http); in rpc_setup() 153 *phttp = http; in rpc_setup() 191 struct evhttp *http = NULL; in rpc_basic_test() local 196 rpc_setup(&http, &port, &base); in rpc_basic_test() 230 evhttp_free(http); in rpc_basic_test() 260 struct evhttp *http = NULL; in rpc_basic_message() local 266 rpc_setup(&http, &port, &base); in rpc_basic_message() 308 evhttp_free(http); in rpc_basic_message() [all …]
|
| H A D | regress_http.c | 70 static struct evhttp *http; variable 372 http = http_setup(&port, data->base); in http_basic_test() 375 if (http_bind(http, &port2) == -1) { in http_basic_test() 448 evhttp_free(http); in http_basic_test() 560 http = http_setup(&port, data->base); in http_bad_request_test() 563 if (http_bind(http, &port2) == -1) in http_bad_request_test() 623 evhttp_free(http); in http_bad_request_test() 678 http = http_setup(&port, data->base); in http_delete_test() 700 evhttp_free(http); in http_delete_test() 739 http = http_setup(&port, data->base); in http_allowed_methods_test() [all …]
|
| H A D | bench_http.c | 90 struct evhttp *http; in main() local 158 http = evhttp_new(base); in main() 170 evhttp_set_cb(http, "/ind", http_basic_cb, NULL); in main() 174 evhttp_set_cb(http, "/ref", http_ref_cb, NULL); in main() 182 evhttp_bind_socket(http, "0.0.0.0", port); in main()
|
| /minix3/external/bsd/llvm/dist/clang/ |
| H A D | README.txt | 16 Information on Clang: http://clang.llvm.org/ 17 Building and using Clang: http://clang.llvm.org/get_started.html 18 Clang Static Analyzer: http://clang-analyzer.llvm.org/ 19 Information on the LLVM project: http://llvm.org/ 23 http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev 26 http://llvm.org/bugs/
|
| /minix3/external/bsd/file/dist/magic/magdir/ |
| H A D | pwsafe | 7 # http://passwordsafe.sourceforge.net/ 9 # http://passwordsafe.svn.sourceforge.net/viewvc/passwordsafe/trunk/pwsafe/pwsafe/docs/formatV3.txt 10 # V2 http://passwordsafe.svn.sourceforge.net/viewvc/passwordsafe/trunk/pwsafe/pwsafe/docs/formatV2.… 11 # V1 http://passwordsafe.svn.sourceforge.net/viewvc/passwordsafe/trunk/pwsafe/pwsafe/docs/notes.txt
|
| H A D | kml | 7 # http://www.opengeospatial.org/standards/kml/ 11 >>&0 regex ['"]http://earth.google.com/kml Google KML document 21 # http://www.opengeospatial.org/standards/kml/ 23 >>&0 regex ['"]http://www.opengis.net/kml OpenGIS KML document 29 # http://code.google.com/apis/kml/documentation/kml_tut.html
|
| H A D | cad | 13 # http://www.wotsit.org/search.asp 14 # http://filext.com/detaillist.php?extdetail=DGN 15 # http://filext.com/detaillist.php?extdetail=CIT 17 # http://www.bentley.com/products/default.cfm?objectid=97F351F5-9C35-4E5E-89C2 19 # http://www.bentley.com/products/default.cfm?objectid=A5C2FD43-3AC9-4C71-B682 46 # Merge of the different contributions and updates from http://en.wikipedia.org/wiki/Dwg 47 # and http://www.iana.org/assignments/media-types/image/vnd.dwg 78 # Based on the DWG File Format Specifications at http://www.opendwg.org/ 92 # http://autodesk.blogs.com/between_the_lines/autocad-release-history.html 105 # ASCON http://ascon.net/main/ in English, [all …]
|
| H A D | keepass | 7 # * original one: http://keepass.info/ 8 # * *nix port: http://www.keepassx.org/ 9 # * android port: http://code.google.com/p/keepassdroid/
|
| H A D | windows | 29 # Created by: Andreas Schuster (http://computer.forensikblog.de/) 30 # Reference (1): http://computer.forensikblog.de/en/2008/02/64bit_magic.html 49 # Created by: Andreas Schuster (http://computer.forensikblog.de/) 50 # Reference (1): http://computer.forensikblog.de/en/2007/05/some_magic.html 78 # http://ithreats.files.wordpress.com/2009/05/\ 167 # http://en.wikipedia.org/wiki/Autorun.inf 168 # http://msdn.microsoft.com/en-us/library/windows/desktop/cc144200.aspx 176 # http://msdn.microsoft.com/en-us/library/windows/hardware/ff549520(v=vs.85).aspx 184 # http://www.winfaq.de/faq_html/Content/tip2500/onlinefaq.php?h=tip2653.htm 185 # http://msdn.microsoft.com/en-us/library/windows/desktop/cc144102.aspx [all …]
|
| /minix3/external/ |
| H A D | README | 45 http://www.opensource.org/licenses/apache2.0.php 51 http://www.opensource.org/licenses/bsd-license.php 56 http://www.opensource.org/licenses/cddl1.php 59 http://www.opensource.org/licenses/gpl-2.0.php 62 http://www.opensource.org/licenses/gpl-3.0.html 65 http://www.opensource.org/licenses/historical.php 68 http://www.opensource.org/licenses/ibmpl.php 80 http://www.opensource.org/licenses/mit-license.php 88 http://www.zlib.net/zlib_license.html
|
| /minix3/external/public-domain/tz/dist/ |
| H A D | africa | 29 # http://www.jstor.org/stable/1774359 126 # http://dre.pt/pdf1sdip/1911/05/12500/23132313.pdf 211 # http://www.almasryalyoum.com/en/node/407168 213 # http://www.worldtimezone.com/dst_news/dst_news_egypt04.html 220 # http://news.gom.com.eg/gazette/pdf/2006/09/18/01.pdf 226 # http://www.nentjes.info/Bill/bill5.htm 227 # http://www.timeanddate.com/worldclock/city.html?n=53 229 # http://www.sis.gov.eg/En/EgyptOnline/Miscellaneous/000002/0207000000000000001580.htm 260 # > http://support.microsoft.com/kb/958729/ 265 # [2] http://www.timeanddate.com/worldclock/clockchange.html?n=53 [all …]
|
| H A D | southamerica | 25 # http://www.jstor.org/stable/1774359 133 # http://ar.clarin.com/diario/2001-06-06/e-01701.htm 136 # http://www.boletin.jus.gov.ar/BON/Primera/1999/09-Septiembre/21/PDF/BO21-09-99LEG.PDF 142 # http://ar.clarin.com/diario/2001-06-12/s-03501.htm 147 # http://www.clarin.com.ar/diario/2001-06-22/s-03601.htm 155 # http://www.lanacion.com.ar/opinion/nota.asp?nota_id=973037 indicate 165 # http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996 175 # http://www.worldtimezone.com/dst_news/dst_news_argentina03.html 176 # http://www.impulsobaires.com.ar/nota.php?id=57832 (in spanish) 181 # http://www.infoleg.gov.ar/infolegInternet/anexos/60000-64999/60036/norma.htm [all …]
|
| /minix3/minix/lib/liblwip/dist/ |
| H A D | README | 67 http://git.savannah.gnu.org/cgit/lwip.git 68 http://git.savannah.gnu.org/cgit/lwip/lwip-contrib.git 71 http://savannah.nongnu.org/projects/lwip/ 81 http://www.nongnu.org/lwip/ 84 http://lwip.wikia.com/wiki/LwIP_Wiki 87 http://savannah.nongnu.org/mail/?group=lwip 89 http://lists.nongnu.org/archive/html/lwip-users/ 90 http://lists.nongnu.org/archive/html/lwip-devel/ 93 http://dunkels.com/adam/
|
| /minix3/external/bsd/tcpdump/dist/tests/ |
| H A D | print-A.out | 59 <P>See the <A href="http://www.abuse.net/">Network Abuse 64 <P>The initial installation of <A href="http://www.debian.org/">Debian's 113 The <A HREF="http://www.apache.org/">Apache Project</A> home site.</LI> 116 The <A HREF="http://www.apache-ssl.org/">Apache-SSL</A> home site.</LI> 119 The <A HREF="http://perl.apache.org/">mod perl</A> home site.</LI> 122 The <A HREF="http://www.apacheweek.com/">ApacheWeek</A> newsletter.</LI> 125 The <A HREF="http://www.debian.org/doc/">Debian Project 129 <P>You can also consult the list of <A HREF="http://www.boutell.com/faq/">World 134 <A HREF="http://netcraft.com/">Netcraft</A> provides an interesting free 137 <A HREF="http://uptime.netcraft.com/">interface</A>. [all …]
|
| H A D | print-AA.out | 59 <P>See the <A href="http://www.abuse.net/">Network Abuse 64 <P>The initial installation of <A href="http://www.debian.org/">Debian's 113 The <A HREF="http://www.apache.org/">Apache Project</A> home site.</LI> 116 The <A HREF="http://www.apache-ssl.org/">Apache-SSL</A> home site.</LI> 119 The <A HREF="http://perl.apache.org/">mod perl</A> home site.</LI> 122 The <A HREF="http://www.apacheweek.com/">ApacheWeek</A> newsletter.</LI> 125 The <A HREF="http://www.debian.org/doc/">Debian Project 129 <P>You can also consult the list of <A HREF="http://www.boutell.com/faq/">World 134 <A HREF="http://netcraft.com/">Netcraft</A> provides an interesting free 137 <A HREF="http://uptime.netcraft.com/">interface</A>. [all …]
|
| /minix3/crypto/external/bsd/openssl/dist/ |
| H A D | ACKNOWLEDGMENTS | 15 Qualys http://www.qualys.com/ 19 OpenGear: http://www.opengear.com/ 23 PSW Group: http://www.psw.net/ 24 Acano Ltd. http://acano.com/
|
| /minix3/external/bsd/file/dist/ |
| H A D | missing | 104 perl_URL=http://www.perl.org/ 105 flex_URL=http://flex.sourceforge.net/ 106 gnu_software_URL=http://www.gnu.org/software
|
| /minix3/external/bsd/dhcp/dist/ |
| H A D | missing | 104 perl_URL=http://www.perl.org/ 105 flex_URL=http://flex.sourceforge.net/ 106 gnu_software_URL=http://www.gnu.org/software
|