Home
last modified time | relevance | path

Searched full:web (Results 1 – 25 of 489) sorted by relevance

12345678910>>...20

/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dra-colorize.c51 static void put_web_at_end PARAMS ((struct web *, enum node_type));
54 static void enable_move PARAMS ((struct web *));
55 static void decrement_degree PARAMS ((struct web *, int));
57 static void remove_move_1 PARAMS ((struct web *, struct move *));
58 static void remove_move PARAMS ((struct web *, struct move *));
59 static void add_worklist PARAMS ((struct web *));
60 static int ok PARAMS ((struct web *, struct web *));
61 static int conservative PARAMS ((struct web *, struct web *));
63 static void combine PARAMS ((struct web *, struct web *));
65 static void freeze_moves PARAMS ((struct web *));
[all …]
H A Dra-build.c51 built. For each root web part constructed above, an instance of struct
52 web is created. For all subregs of pseudos, which matter for allocation,
53 a subweb of the corresponding super web is built. Finally all the
88 static void init_one_web_common PARAMS ((struct web *, rtx));
89 static void init_one_web PARAMS ((struct web *, rtx));
90 static void reinit_one_web PARAMS ((struct web *, rtx));
91 static struct web * add_subweb PARAMS ((struct web *, rtx));
92 static struct web * add_subweb_2 PARAMS ((struct web *, unsigned int));
94 static void copy_conflict_list PARAMS ((struct web *));
95 static void add_conflict_edge PARAMS ((struct web *, struct web *));
[all …]
H A Dra-rewrite.c46 static unsigned HOST_WIDE_INT spill_prop_savings PARAMS ((struct web *,
48 static void spill_prop_insert PARAMS ((struct web *, sbitmap, sbitmap));
51 static void allocate_spill_web PARAMS ((struct web *));
59 static int spill_same_color_p PARAMS ((struct web *, struct web *));
60 static bool is_partly_live_1 PARAMS ((sbitmap, struct web *));
61 static void update_spill_colors PARAMS ((HARD_REG_SET *, struct web *, int));
62 static int spill_is_free PARAMS ((HARD_REG_SET *, struct web *));
65 unsigned int, struct web **));
67 static void mark_refs_for_checking PARAMS ((struct web *, bitmap));
93 struct web *s = alias (m->source_web);
[all …]
H A Dra.h29 struct web *web; member
34 #define DLIST_WEB(l) ((l)->value.web)
50 the bitmap. This is used while building web-parts with conflicts. */
62 In the process of building the interference graph web parts are
65 uses) and implicitely complete webs (by connecting web parts in common
69 /* The def or use for this web part. */
75 This all is only valid for root web parts (uplink==NULL).
76 That's the information we need to merge, if web parts are unioned. */
86 /* Web structure used to store info about connected live ranges.
90 struct web struct
[all …]
H A Dra-debug.c699 ra_debug_msg (DUMP_IGRAPH, "move: insn %d: Web %d <-- Web %d\n",
706 struct web *web = ID2WEB (i); local
708 ra_debug_msg (DUMP_WEBS, " %4d : regno %3d", i, web->regno);
709 if (SUBWEB_P (web))
711 ra_debug_msg (DUMP_WEBS, " sub %d", SUBREG_BYTE (web->orig_x));
712 ra_debug_msg (DUMP_WEBS, " par %d", find_web_for_subweb (web)->id);
715 web->add_hardregs, web->span_deaths);
716 ra_debug_msg (DUMP_WEBS, HOST_WIDE_INT_PRINT_DEC, web->spill_cost);
717 ra_debug_msg (DUMP_WEBS, ") (%s)", reg_class_names[web->regclass]);
718 if (web->spill_temp == 1)
[all …]
H A Dra.c120 struct web **id2web;
121 struct web *hardreg2web[FIRST_PSEUDO_REGISTER];
122 struct web **def2web;
123 struct web **use2web;
133 /* The different lists on which a web can be (based on the type). */
297 /* Search WEB for a subweb, which represents REG. REG needs to
299 represented by WEB. Returns the matching subweb or NULL. */
301 struct web *
302 find_subweb (web, reg) in find_subweb() argument
303 struct web *web; in find_subweb()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/perlfaq/lib/
H A Dperlfaq9.pod3 perlfaq9 - Web, Email and Networking
11 This section deals with questions related to running web sites,
14 =head2 Should I use a web framework?
16 Yes. If you are building a web site with any level of interactivity
26 =head2 Which web framework should I use?
54 with a focus on HTML5 and real-time web technologies such as WebSockets.
56 =item L<Web::Simple>
59 as a toolkit for building micro web apps, custom frameworks or for tieing
60 together existing Plack-compatible web applications with one central dispatcher.
70 L<PSGI> is the Perl Web Serve
[all...]
H A Dperlfaq2.pod90 database interfaces to keyboard/screen control and running large web sites.
94 The master web site for CPAN is L<http://www.cpan.org/>,
134 which maintains the web site L<http://www.perl.org/> as a general
137 of mailing lists, web sites, and other services. There are also many
155 and web sites. See the L<Perl Mongers web site|http://www.pm.org/> for more
259 Submit bugs to RT either through its web interface,
/openbsd-src/gnu/llvm/llvm/docs/
H A DPhabricator.rst10 If you prefer to use a web user interface for code reviews, you can now submit
76 .. _phabricator-request-review-web:
78 Requesting a review via the web interface
92 email, but having the full file in the web interface will help the
147 .. _using-the-web-interface:
149 Using the web interface
153 using `arc` or the web interface.
161 * You should now see a "Stack" tab in the "Revision Contents" section of the web
175 This applies to new and existing reviews, uploaded with `arc` or the web interface.
177 * Upload the first review and note its patch number, either with the web interface
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dweb.c1 /* Web construction code for GNU compiler.
41 purpose of web unifying, inserting the compensation code later to
86 Return true if FIRST and SECOND points to the same web entry structure and
194 /* Find the corresponding web and see if it has been visited. */ in entry_register()
199 /* We are seeing this web for the first time, do the assignment. */ in entry_register()
210 "New web forced to keep reg=%i (user variable)\n", in entry_register()
220 fprintf (dump_file, "Web oldreg=%i newreg=%i\n", REGNO (reg), in entry_register()
269 /* Produce the web. */ in web_main()
310 "web", /* name */
/openbsd-src/gnu/usr.bin/perl/cpan/Locale-Maketext-Simple/t/po_without_i_default/
H A Dfr.po17 #: lib/Opsview/Web/Controller/Root.pm:492
22 #: lib/Opsview/Web/Controller/Root.pm:492
27 #: lib/Opsview/Web/Controller/Root.pm:492
H A Den.po17 #: lib/Opsview/Web/Controller/Root.pm:492
22 #: lib/Opsview/Web/Controller/Root.pm:492
27 #: lib/Opsview/Web/Controller/Root.pm:492
/openbsd-src/gnu/usr.bin/perl/cpan/Locale-Maketext-Simple/t/po_with_i_default/
H A Dfr.po17 #: lib/Opsview/Web/Controller/Root.pm:492
22 #: lib/Opsview/Web/Controller/Root.pm:492
27 #: lib/Opsview/Web/Controller/Root.pm:492
H A Di_default.po17 #: lib/Opsview/Web/Controller/Root.pm:492
22 #: lib/Opsview/Web/Controller/Root.pm:492
27 #: lib/Opsview/Web/Controller/Root.pm:492
H A Den.po17 #: lib/Opsview/Web/Controller/Root.pm:492
22 #: lib/Opsview/Web/Controller/Root.pm:492
27 #: lib/Opsview/Web/Controller/Root.pm:492
/openbsd-src/gnu/usr.bin/perl/dist/Net-Ping/t/
H A D200_ping_tcp.t53 # Change to use the more common web port.
59 isnt($p->ping("localhost"), 0, 'Test localhost on the web port');
63 isnt($p->ping("localhost"), 0, "localhost on the web port unexpectedly worked on $^O");
65 ok(1, "SKIP localhost on the web port on $^O");
/openbsd-src/usr.bin/mandoc/
H A Dman.cgi.8159 Configure your web server to execute CGI programs located in
195 data directory relative to the web server
315 The web server may pass the following CGI variables to
346 Default web server
353 program inside the web server
363 This is part of the web server configuration and not specific to
/openbsd-src/gnu/usr.bin/texinfo/util/
H A Dgendocs_template40 (%%HTML_MONO_SIZE%%K characters)</a> - entirely on one web page.</li>
41 <li><a href="html_node/index.html">HTML</a> - with one web page per
45 one web page.</li>
48 with one web page per node.</li>
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/t/
H A Dmerge.t20 bugtracker => { web => 'https://rt.cpan.org/Dist/Display.html?Foo-Bar' },
77 bugtracker => { web => 'https://rt.cpan.org/Dist/Display.html?Foo-Bar' },
115 bugtracker => { web => 'https://rt.cpan.org/Dist/Display.html?Foo-Bar' },
152 … eval { $merger->merge(\%base, { resources => { bugtracker => { web => 'http://foo.com' } } } ) },
156 like $@, qr/^Duplication of element resources\.bugtracker\.web /, 'Exception looks right';
/openbsd-src/regress/usr.bin/mandoc/mdoc/Lk/
H A Dlink.in9 Here are some web sites of BSD operating systems:
14 Here are some web sites of BSD operating systems:
H A Dlink.out_markdown9 Here are some web sites of BSD operating systems:
16 Here are some web sites of BSD operating systems:
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-world/
H A DHTML-WebDAO.tml9 abstract: Perl extension for create complex web application
14 abstract => 'Perl extension for create complex web application',
/openbsd-src/gnu/usr.bin/perl/dist/if/
H A DMakefile.PL20 web => 'https://github.com/perl/perl5',
23 web => 'https://github.com/Perl/perl5/issues',
/openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/man/
H A Dlink-to-url9 The newest version of this document is also available on the World Wide Web at
21 The newest version of this document is also available on the World Wide Web at
/openbsd-src/gnu/usr.bin/perl/dist/FindBin/
H A DMakefile.PL27 'bugtracker' => { 'web' => 'https://github.com/perl/perl5/issues' },
31 'web' => 'https://github.com/perl/perl5',

12345678910>>...20