Home
last modified time | relevance | path

Searched +refs:compiled +refs:tops +refs:compiled +refs:top (Results 1 – 25 of 543) sorted by relevance

12345678910>>...22

/dports/lang/racket/racket-8.3/src/expander/compile/
H A Dmulti-top.rkt2 (require "compiled-in-memory.rkt"
3 "multi-top-data.rkt"
7 (provide compiled-tops->compiled-top
8 compiled-top->compiled-tops)
10 ;; Encode a sequence of compiled top-level forms by creating a linklet
21 (define (compiled-tops->compiled-top all-cims
63 ;; Decode a sequence of compiled top-level forms by unpacking the
65 (define (compiled-top->compiled-tops ld)
69 #:when top)
70 top))
[all …]
H A Dcompiled-in-memory.rkt3 ;; A `compiled-in-memory` structure holds the result of compilation.
4 ;; It's produced by `compile-top` or `compile-module` and consumed by
5 ;; `eval-compiled-in-memory`. The marshaled form is just the linklet
9 (provide (struct-out compiled-in-memory))
11 (struct compiled-in-memory (linklet-directory ;; includes content of `{pre,post}-compiled-tops`; ma…
29 ;; Shortcuts for associated code (submodules or sequence of top levels)
30 pre-compiled-in-memorys
31 post-compiled-in-memorys
32 ;; Namespace scopes from top-level compilation, so syntax objects
35 ;; To track whether a form in a top-level sequence can be discarded:
[all …]
H A Dmain.rkt3 "top.rkt"
4 "multi-top.rkt"
23 ;; compiled using one protocol.
25 ;; In the case of top-level forms, a sequence of forms that affect
27 ;; via `per-top-level` in "../eval/main.rkt". The separarately
38 ;; top-level forms that are compiled together, so that they share.
43 ;; top-level protocol, the resulting set of linklets includes on
51 ;; deserialization is a little different for modules than top-level
67 compile-top
68 compiled-tops->compiled-top
[all …]
/dports/lang/racket-minimal/racket-8.3/src/expander/compile/
H A Dmulti-top.rkt2 (require "compiled-in-memory.rkt"
3 "multi-top-data.rkt"
7 (provide compiled-tops->compiled-top
8 compiled-top->compiled-tops)
10 ;; Encode a sequence of compiled top-level forms by creating a linklet
21 (define (compiled-tops->compiled-top all-cims
63 ;; Decode a sequence of compiled top-level forms by unpacking the
65 (define (compiled-top->compiled-tops ld)
69 #:when top)
70 top))
[all …]
H A Dcompiled-in-memory.rkt3 ;; A `compiled-in-memory` structure holds the result of compilation.
4 ;; It's produced by `compile-top` or `compile-module` and consumed by
5 ;; `eval-compiled-in-memory`. The marshaled form is just the linklet
9 (provide (struct-out compiled-in-memory))
11 (struct compiled-in-memory (linklet-directory ;; includes content of `{pre,post}-compiled-tops`; ma…
29 ;; Shortcuts for associated code (submodules or sequence of top levels)
30 pre-compiled-in-memorys
31 post-compiled-in-memorys
32 ;; Namespace scopes from top-level compilation, so syntax objects
35 ;; To track whether a form in a top-level sequence can be discarded:
[all …]
H A Dmain.rkt3 "top.rkt"
4 "multi-top.rkt"
23 ;; compiled using one protocol.
25 ;; In the case of top-level forms, a sequence of forms that affect
27 ;; via `per-top-level` in "../eval/main.rkt". The separarately
38 ;; top-level forms that are compiled together, so that they share.
43 ;; top-level protocol, the resulting set of linklets includes on
51 ;; deserialization is a little different for modules than top-level
67 compile-top
68 compiled-tops->compiled-top
[all …]
/dports/lang/racket-minimal/racket-8.3/src/expander/eval/
H A Dtop.rkt24 ;; Run a representation of top-level code as produced by `compile-top`;
25 ;; see "compile/main.rkt", "compile/top.rkt", and "compile/multi-top.rkt"
27 (provide eval-top
30 compiled-multiple-top?)
35 (define (compiled-multiple-top? c)
42 (define (eval-top c ns [eval-compiled eval-top] [as-tail? #t])
43 (if (compiled-multiple-top? c)
44 (eval-multiple-tops c ns eval-compiled as-tail?)
47 (define (eval-multiple-tops c ns eval-compiled as-tail?)
66 (compiled-top->compiled-tops c)
[all …]
H A Dmulti-top.rkt4 "../compile/compiled-in-memory.rkt"
9 "../compile/multi-top.rkt"
13 (provide create-compiled-in-memorys-using-shared-data)
15 (define (create-compiled-in-memorys-using-shared-data tops data-linklet ns)
37 (define (construct-compiled-in-memory ld
48 (compiled-top->compiled-tops ld)))
52 (define (map-construct-compiled-in-memory l vec-pos)
57 (construct-compiled-in-memory sub-ld
61 (compiled-in-memory ld
78 (map construct-compiled-in-memory
[all …]
H A Dmain.rkt14 "../compile/compiled-in-memory.rkt"
16 "top.rkt"
45 [(or (compiled-in-memory? s)
48 (eval-compiled s ns)]
62 [(compiled-module-expression? c)
65 (eval-top c ns eval-compiled as-tail?)]))
76 ;; file, which would wrap `#%top-interaction` around the compiled
93 (not (compiled-multiple-top? (car cs))))
95 (compiled-tops->compiled-top cs
115 (compiled-tops->compiled-top
[all …]
/dports/lang/racket/racket-8.3/src/expander/eval/
H A Dtop.rkt24 ;; Run a representation of top-level code as produced by `compile-top`;
25 ;; see "compile/main.rkt", "compile/top.rkt", and "compile/multi-top.rkt"
27 (provide eval-top
30 compiled-multiple-top?)
35 (define (compiled-multiple-top? c)
42 (define (eval-top c ns [eval-compiled eval-top] [as-tail? #t])
43 (if (compiled-multiple-top? c)
44 (eval-multiple-tops c ns eval-compiled as-tail?)
47 (define (eval-multiple-tops c ns eval-compiled as-tail?)
66 (compiled-top->compiled-tops c)
[all …]
H A Dmulti-top.rkt4 "../compile/compiled-in-memory.rkt"
9 "../compile/multi-top.rkt"
13 (provide create-compiled-in-memorys-using-shared-data)
15 (define (create-compiled-in-memorys-using-shared-data tops data-linklet ns)
37 (define (construct-compiled-in-memory ld
48 (compiled-top->compiled-tops ld)))
52 (define (map-construct-compiled-in-memory l vec-pos)
57 (construct-compiled-in-memory sub-ld
61 (compiled-in-memory ld
78 (map construct-compiled-in-memory
[all …]
H A Dmain.rkt14 "../compile/compiled-in-memory.rkt"
16 "top.rkt"
45 [(or (compiled-in-memory? s)
48 (eval-compiled s ns)]
62 [(compiled-module-expression? c)
65 (eval-top c ns eval-compiled as-tail?)]))
76 ;; file, which would wrap `#%top-interaction` around the compiled
93 (not (compiled-multiple-top? (car cs))))
95 (compiled-tops->compiled-top cs
115 (compiled-tops->compiled-top
[all …]
/dports/math/R/R-4.1.2/src/library/compiler/noweb/
H A Dcompiler.nw44 compiled code objects.
183 \subsection{The compiler top level}
473 %% **** Is it really necessary for bcEval to save/restore stack tops?
1549 to the top level frame.
2112 top <- topenv(cntxt$env$env)
2113 if (! isNamespace(top) ||
2116 frame <- top
4478 call compiled by [[cmpSetterCall]] will remove the top two elements
5796 top <- topenv(env)
5808 while (! identical(env, top)) {
[all …]
/dports/math/libRmath/R-4.1.1/src/library/compiler/noweb/
H A Dcompiler.nw44 compiled code objects.
183 \subsection{The compiler top level}
473 %% **** Is it really necessary for bcEval to save/restore stack tops?
1549 to the top level frame.
2112 top <- topenv(cntxt$env$env)
2113 if (! isNamespace(top) ||
2116 frame <- top
4478 call compiled by [[cmpSetterCall]] will remove the top two elements
5796 top <- topenv(env)
5808 while (! identical(env, top)) {
[all …]
/dports/lang/racket-minimal/racket-8.3/src/bc/src/
H A Dstartup.inc35080 "(compiled-tops->compiled-top.1)"
35083 " 'compiled-tops->compiled-top"
35170 "(compiled-top->compiled-tops)"
43051 "(compiled-top->compiled-tops ld_0))))"
43380 "(compiled-multiple-top?)"
43397 "(if(compiled-multiple-top? c_0)"
43406 "(eval-multiple-tops)"
43434 "(compiled-top->compiled-tops c_0)"
43438 "(let-values()(eval-compiled-parts_0(compiled-top->compiled-tops c_0))))))))))"
51477 "(compiled-tops->compiled-top.1"
[all …]
/dports/lang/racket/racket-8.3/src/bc/src/
H A Dstartup.inc35080 "(compiled-tops->compiled-top.1)"
35083 " 'compiled-tops->compiled-top"
35170 "(compiled-top->compiled-tops)"
43051 "(compiled-top->compiled-tops ld_0))))"
43380 "(compiled-multiple-top?)"
43397 "(if(compiled-multiple-top? c_0)"
43406 "(eval-multiple-tops)"
43434 "(compiled-top->compiled-tops c_0)"
43438 "(let-values()(eval-compiled-parts_0(compiled-top->compiled-tops c_0))))))))))"
51477 "(compiled-tops->compiled-top.1"
[all …]
/dports/games/wordplay/wordplay-7.22_1/
H A Dreadme33 "tops" or "pots" or "sotp". "sotp" is not a word and is not of interest
50 The PC versions contain a pre-compiled executable since most people do not
56 Under UNIX, the program should be compiled with an ANSI C compiler. Never
86 you have compiled the program. Under other
578 top of the program that the user can increase to suit his needs. Going
694 it compiled under Turbo C ON THE FIRST TRY!!! It ran fine, unless I tried
/dports/graphics/graphviz/graphviz-2.44.1/doc/
H A DDot.ref286 Distortion factor for shape=polygon. Positive values cause top part to
302 not set, GDFONTPATH is checked. If not set, libgd uses its compiled-in
337 particular, it may appear on top of other edges.
349 "t", place label at the top; if the attribute is "b", place label at
351 labels go on the top.
450 By default, graphs are laid out from top to bottom.
454 and the tops of nodes in the next. If the value contains "equally", the
530 Skew factor for shape=polygon. Positive values skew top of polygon to
563 Additional label near top of nodes of shape M*.
623 order. Thus, for "BL", the major order is from bottom to top, and the
[all …]
/dports/sysutils/py-salt/salt-3004.1/doc/ref/configuration/
H A Dminion.rst155 SLS targets defined using the :ref:`Master Tops <master-tops-system>` system
158 :ref:`Master Tops <master-tops-system>` states first.
1997 Default: ``top.sls``
2005 state_top: top.sls
2013 *only* the top file from that environment is considered during a
2023 while all other top files are ignored. The only way to set
2057 the ``base`` environment's top file, any sections in top files that do not
2067 environment's) top file will be ignored. If an environment does not have a top
2171 Top file to execute if ``startup_states`` is set to ``top``.
2343 environments is to isolate via the top file.
[all …]
/dports/science/jstrack/jstrack/tracker/storms/old/2017/
H A Dharvey.dis1898 rainfall totals compiled by the Weather Prediction Center can be
1938 cloud tops during the past several hours, although radar data shows
1980 rainfall totals compiled by the Weather Prediction Center can be
2061 rainfall totals compiled by the Weather Prediction Center can be
2136 rainfall totals compiled by the Weather Prediction Center can be
2203 rainfall totals compiled by the Weather Prediction Center can be
2809 compiled by the Weather Prediction Center can be found at:
2886 compiled by the Weather Prediction Center can be found at:
2968 compiled by the Weather Prediction Center can be found at:
3362 warnings and information during the past week, on top of preparing
[all …]
/dports/lang/slib/slib-3b6/
H A DChangeLog48 top level.
609 (slib:load-compiled): Handle SRFI requires.
1204 * scheme48.init: (slib:load-compiled): Loads a native SRFI module.
1732 * top-refs.scm (top-refs:include):
1852 * bigloo.init (slib:load): Source or compiled.
2272 * schmooz.scm (schmooz-tops): Replaced #\tab with slib:tab.
4604 * schmooz.scm (schmooz-tops): Removed gratuitous newlines in texi
4635 * schmooz.scm (schmooz-tops): Now reads (and ignores) #! comments.
6339 * Template.scm *.init (slib:load-source slib:load-compiled
6340 slib:load): support for loading compiled modules added.
[all …]
/dports/x11/mrxvt-devel/mrxvt-0.5.4/
H A DChangeLog.old312 7. Rewrote tabbar drawing routines. Tabs now have rounded tops. Also
369 6. Removed compiled in keyboard shortcuts (e.g. Ctrl-+ font resizing).
1259 selection and going past top/bottom of window, with
1338 added --scrollBar_align (top|bottom|...) for alignment of scrollbar
1481 swap is compiled in and a change screen request is made
1942 fixed positioning of text in the top menubar.
2087 you have compiled with USE_XGETDEFAULT.
2180 When compiled with XPM support, the last two values are
2490 the top of the screen, and the top saved lines will be dropped. The
2697 compiled with FAKE_RESOURCES. Now, the following files are
[all …]
/dports/games/kgoldrunner/kgoldrunner-21.12.3/po/sr/
H A Dkgoldrunner.po583 "top."
975 "the holes on top of the 7."
3432 "with the pole near the top."
3933 "top."
4838 "the sky and emerge at the top left."
5059 "the top of the burner."
5526 "get to the top pole.\n"
5734 "top of the next chamber.\n"
6360 "them around over the tops of ladders, until they drop their gold."
6396 "Before you kill any enemies, you must collect all the gold in the tops of "
[all …]
/dports/games/kgoldrunner/kgoldrunner-21.12.3/po/en_GB/
H A Dkgoldrunner.po579 "top."
591 "top."
5277 "top."
5283 "top."
6374 "the top of the burner."
7647 "them around over the tops of ladders, until they drop their gold."
7655 "them around over the tops of ladders, until they drop their gold."
7683 "Before you kill any enemies, you must collect all the gold in the tops of "
7691 "Before you kill any enemies, you must collect all the gold in the tops of "
9126 "were present when it was compiled and built."
[all …]
/dports/games/kgoldrunner/kgoldrunner-21.12.3/po/pa/
H A Dkgoldrunner.po391 "top."
657 "the holes on top of the 7."
3337 "with the pole near the top."
3695 "top."
4444 "the sky and emerge at the top left."
4605 "the top of the burner."
4908 "get to the top pole.\n"
5031 "top of the next chamber.\n"
5456 "them around over the tops of ladders, until they drop their gold."
5481 "Before you kill any enemies, you must collect all the gold in the tops of "
[all …]

12345678910>>...22