Home
last modified time | relevance | path

Searched refs:runtime (Results 1 – 25 of 125) sorted by relevance

12345

/dragonfly/sys/dev/drm/i915/
H A Dintel_guc_log.c193 relay_flush(guc->log.runtime.relay_chan);
198 if (!guc->log.runtime.relay_chan)
260 if (WARN_ON(!guc->log.runtime.buf_addr))
357 return guc->log.runtime.buf_addr != NULL;
386 guc->log.runtime.buf_addr = vaddr;
429 if (!guc->log.runtime.flush_wq) {
438 relay_close(guc->log.runtime.relay_chan);
441 guc->log.runtime.buf_addr = NULL;
455 relay_close(guc->log.runtime.relay_chan);
457 guc->log.runtime.buf_addr = NULL;
[all …]
H A Dintel_guc_log.h44 } runtime; member
/dragonfly/contrib/gcc-4.7/gcc/objcp/
H A DMake-lang.in57 objcp/objc-gnu-runtime-abi-01.o \
58 objcp/objc-next-runtime-abi-01.o \
59 objcp/objc-next-runtime-abi-02.o \
92 objcp/objc-runtime-shared-support.o : objc/objc-runtime-shared-support.c \
103 objcp/objc-gnu-runtime-abi-01.o: objc/objc-gnu-runtime-abi-01.c \
109 objc/objc-runtime-hooks.h \
115 objcp/objc-next-runtime-abi-01.o: objc/objc-next-runtime-abi-01.c \
122 objc/objc-runtime-hooks.h \
128 objcp/objc-next-runtime-abi-02.o: objc/objc-next-runtime-abi-02.c \
135 objc/objc-runtime-hooks.h \
[all …]
H A Dconfig-lang.in49 …objc-runtime-shared-support.c \$(srcdir)/objc/objc-gnu-runtime-abi-01.c \$(srcdir)/objc/objc-next-
/dragonfly/gnu/lib/gcc47/libobjc/
H A DMakefile59 SRCS+= unwind.h runtime-info.h gthr-default.h
67 runtime-info.h:
68 echo "" > tmp-runtime.m
70 ${CC} -print-objc-runtime-info -S tmp-runtime.m >> ${.TARGET}
71 rm -f tmp-runtime.m tmp-runtime.s
81 runtime.h \
85 CLEANFILES+= unwind.h runtime-info.h gthr-default.h
/dragonfly/usr.bin/at/
H A Dparsetime.c569 runtime = nowtime; in parsetime()
570 runtime.tm_sec = 0; in parsetime()
571 runtime.tm_isdst = 0; in parsetime()
587 plus(&runtime); in parsetime()
591 tod(&runtime); in parsetime()
592 month(&runtime); in parsetime()
610 runtime.tm_mday++; in parsetime()
611 runtime.tm_wday++; in parsetime()
613 runtime.tm_hour = hr; in parsetime()
614 runtime.tm_min = 0; in parsetime()
[all …]
/dragonfly/contrib/gcc-4.7/libobjc/
H A DREADME6 specific features differ from other implementations. The runtime has
7 been completely rewritten in gcc 2.4. The earlier runtime had several
18 The runtime is modeled after the NeXT Objective C runtime. That is,
20 names, however, have changed. All runtime API functions have names
23 The runtime api functions are not documented as of now.
45 implementation when the class is loaded into the runtime. This method
48 the runtime. The runtime invocation of this method is thread safe.
55 methods of that particular class. For the GNU runtime, this method is
60 to remain portable with the NeXT runtime. The runtime invocation of
86 <krab@iesd.auc.dk> (runtime) would like to thank a some people for
[all …]
H A Daccessors.m69 runtime. The Foundation library will need to provide
118 is also what the Apple/NeXT runtime does. */
203 Apple/NeXT runtime. */
222 Apple/NeXT runtime. */
238 /* This is the function that the Apple/NeXT runtime has instead of
241 objc_copyStruct on the NeXT runtime thinking it was a public API);
242 the compiler never generates calls to it with the GNU runtime.
H A Dlinking.m1 /* Force linking of classes required by Objective C runtime.
30 runtime system to run correctly. */
/dragonfly/contrib/gcc-4.7/gcc/doc/
H A Dobjc.texi17 * GNU Objective-C runtime API::
30 @node GNU Objective-C runtime API
60 Objective-C runtime:
71 @file{objc/runtime.h}: this header declares most of the public runtime
80 @file{objc/runtime.h}.
110 the GNU Objective-C runtime API.
219 runtime.
710 at runtime by the GNU Objective-C runtime library to point to the class
715 runtime library will find them at runtime).
1146 runtime.
[all …]
H A Dcompat.texi15 The set of runtime conventions followed by all of the tools that deal
17 linkers, and language runtime support.
60 affects code generation and runtime support for:
72 interfaces for runtime arithmetic support
78 affects code generation and runtime support for:
119 runtime support. The runtime support is included in a C++ ABI, but there
123 that conform to the same ABI for C++ compiler and runtime support.
154 and other runtime support libraries, and to suppress the use of GCC's
H A Dstandards.texi228 GCC by default uses the GNU Objective-C runtime library, which is part
229 of GCC and is not the same as the Apple/NeXT Objective-C runtime
231 documented in this manual. The options @option{-fgnu-runtime} and
232 @option{-fnext-runtime} allow you to switch between producing output
233 that works with the GNU Objective-C runtime library and output that
234 works with the Apple/NeXT Objective-C runtime library.
H A Dsourcebuild.texi33 runtime library.
67 The Ada runtime library.
79 The GCC runtime library.
82 The Fortran runtime library.
89 The GNU OpenMP runtime library.
98 The Java runtime library.
105 The Objective-C and Objective-C++ runtime library.
108 The Stack protector runtime library.
111 The C++ runtime library.
337 documentation for runtime libraries somewhere.
[all …]
/dragonfly/gnu/usr.bin/cc47/cc1obj/
H A DMakefile12 objc-gnu-runtime-abi-01.c \
15 objc-next-runtime-abi-01.c \
16 objc-next-runtime-abi-02.c \
17 objc-runtime-shared-support.c
/dragonfly/contrib/gcc-4.7/gcc/objc/
H A Dconfig-lang.in39 …objc-runtime-shared-support.c \$(srcdir)/objc/objc-gnu-runtime-abi-01.c \$(srcdir)/objc/objc-next-
H A Dobjc-act.c268 objc_runtime_hooks runtime; variable
387 ok = objc_next_runtime_abi_02_init (&runtime); in objc_init()
389 ok = objc_next_runtime_abi_01_init (&runtime); in objc_init()
391 ok = objc_gnu_runtime_abi_01_init (&runtime); in objc_init()
465 (*runtime.generate_metadata) (); in objc_write_global_declarations()
2971 (*runtime.initialize) (); in synth_module_prologue()
3166 else if (!(*runtime.setup_const_string_class_decl)()) in objc_build_string_object()
3317 return (*runtime.get_class_reference) (ident); in objc_get_class_reference()
4266 (*runtime.finish_catch) (&cur_try_context, c); in objc_finish_catch_clause()
4291 stmt = (*runtime.finish_try_stmt) (&cur_try_context); in objc_finish_try_stmt()
[all …]
H A Dobjc-runtime-hooks.h103 extern objc_runtime_hooks runtime;
/dragonfly/gnu/usr.bin/cc47/
H A DMakefile.langs122 $(srcdir)/objc/objc-runtime-shared-support.c \
123 $(srcdir)/objc/objc-gnu-runtime-abi-01.c \
124 $(srcdir)/objc/objc-next-runtime-abi-01.c \
125 $(srcdir)/objc/objc-next-runtime-abi-02.c \
163 $(srcdir)/objc/objc-runtime-shared-support.c \
164 $(srcdir)/objc/objc-gnu-runtime-abi-01.c \
165 $(srcdir)/objc/objc-next-runtime-abi-01.c \
166 $(srcdir)/objc/objc-next-runtime-abi-02.c \
/dragonfly/contrib/gcc-4.7/libobjc/objc-private/
H A DREADME1 This directory contains headers that are private to the runtime and
2 that are only included while the runtime is being compiled. They are
/dragonfly/gnu/usr.bin/cc80/support-libs/liblto_plugin/
H A Db-header-vars89runtime-shared-support.h gt-objc-objc-gnu-runtime-abi-01.h gt-objc-objc-next-runtime-abi-01.h gt-o…
/dragonfly/usr.sbin/pfctl/
H A Dpfctl_parser.c477 time_t runtime; in print_status() local
482 runtime = time(NULL) - s->since; in print_status()
486 unsigned int sec, min, hrs, day = runtime; in print_status()
555 if (runtime > 0) in print_status()
557 (double)s->fcounters[i] / (double)runtime); in print_status()
568 if (runtime > 0) in print_status()
570 (double)s->scounters[i] / (double)runtime); in print_status()
579 if (runtime > 0) in print_status()
581 (double)s->counters[i] / (double)runtime); in print_status()
590 if (runtime > 0) in print_status()
[all …]
/dragonfly/contrib/cryptsetup/
H A DABOUT-NLS202 bison-runtime | [] |
229 gettext-runtime | [] [] [] [] [] |
380 bison-runtime | [] [] [] [] [] |
407 gettext-runtime | [] [] [] [] [] [] |
558 bison-runtime | [] [] [] |
585 gettext-runtime | [] [] [] |
736 bison-runtime | [] [] [] [] |
763 gettext-runtime | [] [] [] [] [] [] [] [] |
914 bison-runtime | [] [] [] | 16
941 gettext-runtime | [] [] [] [] [] [] | 28
/dragonfly/contrib/gcc-8.0/gcc/go/
H A Dlang.opt52 fgo-compiling-runtime
54 Apply special rules for compiling runtime package.
/dragonfly/contrib/gcc-4.7/
H A DCOPYING.RUNTIME17 certain GCC header files and runtime libraries with the compiled
20 header files and runtime libraries covered by this Exception.
/dragonfly/contrib/gcc-8.0/
H A DCOPYING.RUNTIME17 certain GCC header files and runtime libraries with the compiled
20 header files and runtime libraries covered by this Exception.

12345