Home
last modified time | relevance | path

Searched refs:shared (Results 1 – 25 of 1206) sorted by relevance

12345678910>>...49

/openbsd/src/gnu/usr.bin/perl/dist/threads-shared/t/
Dobject2.t24 use threads::shared;
53 my $ID :shared = -1;
59 my $self = &threads::shared::share({});
74 my $self = &threads::shared::share([]);
91 threads::shared::share($self);
251 # Testing with shared array
252 my @shared_ary :shared;
256 ok($created[$ID], 'Created hash object in shared array');
258 ok($destroyed[$ID], 'Deleted hash object in shared array');
261 ok($created[$ID], 'Created hash object in shared array');
[all …]
Ddualvar.t20 use threads::shared;
70 my $siv :shared = shared_clone($iv);
71 my $snv :shared = shared_clone($nv);
72 my $suv :shared = shared_clone($uv);
81 my @ary :shared = ($iv, $nv, $uv);
91 my @ary :shared;
102 my @ary :shared;
113 print("# Shared array initialization - shared scalars\n");
115 my @ary :shared = ($siv, $snv, $suv);
123 print("# Shared array list assignment - shared scalars\n");
[all …]
Dutf8.t42 use threads::shared;
52 my %a :shared;
57 is(exists($a{$plain}), 1, 'Found plain key in shared hash');
58 is(exists($a{$utf8}), 1, 'Found UTF-8 key in shared hash');
59 is(exists($a{$code}), 1, 'Found code ref key in shared hash');
63 is($key, $plain, 'Plain key in shared hash');
65 is($key, $utf8, 'UTF-8 key in shared hash');
67 is($key, "$code", 'Code ref key in shared hash');
78 is(exists($$a{$plain}), 1, 'Found plain key in shared hash ref');
79 is(exists($$a{$utf8}), 1, 'Found UTF-8 key in shared hash ref');
[all …]
Dshared_attr.t37 use threads::shared;
47 my $foo : shared = "foo";
51 my @foo : shared = ("foo","bar");
55 my %foo : shared = ( foo => "bar" );
65 my $shared :shared = &share({});
66 $$shared{'foo'} = 'bar';
69 my $str1 = "$shared";
70 my $str2 = "$shared";
72 $str1 = $$shared{'foo'};
73 $str2 = $$shared{'foo'};
Dclone.t36 use threads::shared;
61 my $foo :shared = shared_clone($x);
75 my $foo :shared;
78 ok($test++, threads::shared::_id($foo) == threads::shared::_id($$foo), 'Circular ref');
81 … ok($test++, threads::shared::_id($foo) == threads::shared::_id($$foo), 'Circular ref in thread');
90 ok($test++, threads::shared::_id($$foo) == threads::shared::_id($$$$$foo),
117 my $hsh :shared = shared_clone({'foo' => [qw/foo bar baz/]});
154 my $copy :shared;
160 …ok($test++, threads::shared::_id($copy) == threads::shared::_id($copy->{'self'}), 'Circular ref in…
168 …ok($test++, threads::shared::_id($copy) == threads::shared::_id($copy->{'self'}), 'Circular ref in…
[all …]
Dsv_refs.t34 use threads::shared;
43 ok(2,my $temp1 = $@ =~/^Invalid\b.*shared scalar/, "Wrong error message");
74 # Circular references with 3 shared scalars
75 my $x : shared;
76 my $y : shared;
77 my $z : shared;
86 my @q :shared = ($x);
Dav_refs.t34 use threads::shared;
63 ok(5,$av->[1]->[0] eq 'hi', 'Shared in shared');
66 ok(6,$av->[1]->[0] eq 'hihi', 'Replaced shared in shared');
67 ok(7, pop(@{$av->[1]}) eq "foo", 'Pop shared array');
90 my $x :shared;
/openbsd/src/usr.bin/file/magdir/
Dbsdi9 >32 byte 0x6a (uses shared libs)
13 >32 byte 0x6a (uses shared libs)
17 >32 byte 0x6a (uses shared libs)
21 >32 byte 0x6a (uses shared libs)
23 # same as in SunOS 4.x, except for static shared libraries
26 >>20 belong <4096 shared library
31 >36 belong 0xb4100001 (uses shared libs)
37 >36 belong 0xb4100001 (uses shared libs)
43 >36 belong 0xb4100001 (uses shared libs)
Dmach5 # Unfortunately the first, cafebabe, is shared with
13 >12 lelong 3 fixed virtual memory shared library
16 >12 lelong 6 dynamically linked shared library
19 >12 lelong 9 dynamically linked shared library stub
50 >12 belong 3 fixed virtual memory shared library
53 >12 belong 6 dynamically linked shared library
56 >12 belong 9 dynamically linked shared library stub
/openbsd/src/gnu/usr.bin/perl/dist/Thread-Queue/t/
D02_refs.t13 use threads::shared;
31 my @ary2 :shared = (99, 21, 86);
67 my $cir1s : shared;
73 my $cir3 :shared = &share({});
141 skip("Needs threads::shared >= 1.19", 5)
142 if ($threads::shared::VERSION < 1.19);
144 is(threads::shared::_id($$c1),
145 threads::shared::_id($c1),
148 is(threads::shared::_id($$c1s),
149 threads::shared::_id($c1s),
[all …]
/openbsd/src/gnu/usr.bin/perl/t/op/
Dstate.t178 state $a :shared;
179 state $b :shared = 3;
180 state @c :shared;
181 state @d :shared = qw(a b c);
182 state %e :shared;
183 state %f :shared = qw(a b c d);
524 (state @a :shared) = 1;
526 (state %a :shared) = ();
531 state (@a) :shared = 1;
532 (state (@a) :shared) = 1;
[all …]
/openbsd/src/gnu/lib/libreadline/
DREADME40 The special make target `everything' will build the static and shared
54 There is skeletal support for building shared versions of the
56 a Makefile in the `shlib' subdirectory, and typing `make shared'
57 will cause shared versions of the Readline and History libraries
60 If `configure' is given the `--enable-shared' option, it will attempt
61 to build the shared libraries by default on supported platforms.
64 not shared library creation is supported and to generate the values
66 try to build shared libraries on an unsupported platform, `make'
87 SHOBJ_LD The link editor to be used to create the shared library from
91 SHOBJ_LDFLAGS Flags to pass to SHOBJ_LD to enable shared object creation.
[all …]
DINSTALL18 and history libraries. If supported, the shared readline and history
21 cause the static and shared libraries (if supported) and the example
26 supported, the shared readline and history libraries.
180 `--enable-shared'
181 Build the shared libraries by default on supported platforms. The
190 There is support for building shared versions of the readline and
192 the `shlib' subdirectory, and typing `make shared' will cause
193 shared versions of the readline and history libraries to be built
196 If `configure' is given the `--enable-shared' option, it will attempt
197 to build the shared libraries by default on supported platforms.
[all …]
Dconfigure.in37 AC_ARG_ENABLE(shared, AC_HELP_STRING([--enable-shared], [build shared libraries [[default=YES]]]), … optenable
130 # shared library configuration section
136 AC_MSG_CHECKING(configuration for building shared libraries)
153 # `unsupported', turn off any default shared library building
158 # shared library versioning
171 SHARED_TARGET=shared
172 SHARED_INSTALL_TARGET=install-shared
/openbsd/src/gnu/lib/libstdc++/
Dltcf-c.sh67 *** to be unable to reliably create shared libraries on AIX.
68 *** Therefore, libtool is disabling shared libraries support. If you
69 *** really care for shared libraries, you may want to modify your PATH
204 *** create shared libraries on Solaris systems. Therefore, libtool
205 *** is disabling shared libraries support. We urge you to upgrade GNU
413 archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
429 …hpux9*) archive_cmds='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o…
430 …*) archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libo…
450 …archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$v…
452 …archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" &&…
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter/Console/
DParallelSession.pm13 my %shared;
23 my $context = $shared{$formatter} ||= $self->_create_shared_context;
92 my $context = $shared{$formatter};
129 my $context = $shared{$formatter};
157 my $context = $shared{$formatter};
175 my $context = $shared{$formatter};
197 delete $shared{$formatter};
/openbsd/src/regress/lib/libpthread/
DMakefile37 rm -f /tmp/thread-{shared,static,debug}
39 REGRESS_LOG=/tmp/thread-shared make
45 @(shared=$$(grep FAIL /tmp/thread-shared) || true; \
46 if [ "$$shared" ]; then \
47 echo "** SHARED lib failures:"; echo "$$shared"; echo; \
/openbsd/src/gnu/usr.bin/binutils/
Dltcf-c.sh67 *** to be unable to reliably create shared libraries on AIX.
68 *** Therefore, libtool is disabling shared libraries support. If you
69 *** really care for shared libraries, you may want to modify your PATH
204 *** create shared libraries on Solaris systems. Therefore, libtool
205 *** is disabling shared libraries support. We urge you to upgrade GNU
413 archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
429 …hpux9*) archive_cmds='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o…
430 …*) archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libo…
450 …archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$v…
452 …archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" &&…
[all …]
Dltcf-gcj.sh70 *** to be unable to reliably create shared libraries on AIX.
71 *** Therefore, libtool is disabling shared libraries support. If you
72 *** really care for shared libraries, you may want to modify your PATH
197 *** create shared libraries on Solaris systems. Therefore, libtool
198 *** is disabling shared libraries support. We urge you to upgrade GNU
406 archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
427 …archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$v…
429 …archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" &&…
440 archive_cmds='$LD -shared -nodefaultlibs -o $lib $libobjs $deplibs $linker_flags' # ELF
465 …archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${…
[all …]
/openbsd/src/gnu/usr.bin/binutils-2.17/
Dltcf-c.sh67 *** to be unable to reliably create shared libraries on AIX.
68 *** Therefore, libtool is disabling shared libraries support. If you
69 *** really care for shared libraries, you may want to modify your PATH
204 *** create shared libraries on Solaris systems. Therefore, libtool
205 *** is disabling shared libraries support. We urge you to upgrade GNU
417 archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
433 …hpux9*) archive_cmds='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o…
434 …*) archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libo…
454 …archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$v…
456 …archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" &&…
[all …]
Dltcf-gcj.sh70 *** to be unable to reliably create shared libraries on AIX.
71 *** Therefore, libtool is disabling shared libraries support. If you
72 *** really care for shared libraries, you may want to modify your PATH
197 *** create shared libraries on Solaris systems. Therefore, libtool
198 *** is disabling shared libraries support. We urge you to upgrade GNU
406 archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
427 …archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$v…
429 …archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" &&…
440 archive_cmds='$LD -shared -nodefaultlibs -o $lib $libobjs $deplibs $linker_flags' # ELF
465 …archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${…
[all …]
/openbsd/src/gnu/llvm/libcxx/cmake/Modules/
DHandleLibCXXABI.cmake7 # - libcxx-abi-shared: A target representing the selected shared ABI library.
11 # - libcxx-abi-shared-objects: An object library representing a set of object files
13 # into a shared library.
77 # This function creates an imported shared (interface) library named <target>
91 import_shared_library(libcxx-abi-shared stdc++)
92 target_link_libraries(libcxx-abi-shared INTERFACE libcxx-abi-headers)
104 import_shared_library(libcxx-abi-shared supc++)
105 target_link_libraries(libcxx-abi-shared INTERFACE libcxx-abi-headers)
117 add_library(libcxx-abi-shared ALIAS cxxabi_shared)
125 add_library(libcxx-abi-shared-objects ALIAS cxxabi_shared_objects)
[all …]
/openbsd/src/gnu/usr.bin/perl/dist/threads-shared/lib/threads/
Dshared.pm1 package threads::shared;
16 $threads::shared::threads_shared = 1;
19 $threads::shared::clone_warn = undef;
70 sub threads::shared::tie::SPLICE
163 if (! defined($threads::shared::clone_warn)) {
165 } elsif ($threads::shared::clone_warn) {
/openbsd/src/gnu/llvm/llvm/docs/CommandGuide/
Dllvm-ifs.rst1 llvm-ifs - shared object stubbing tool
15 stubs (.ifs files) for shared objects and linkable shared object stubs
16 (.so files) from either ELF shared objects or text-based stubs. The text-based
17 stubs is useful for monitoring ABI changes of the shared object. The linkable
18 shared object stubs can be used to avoid unnecessary relinks when the ABI of
19 shared libraries does not change.
25 Here is an example of the text representation (IFS) of a shared object produced
47 * ``SoName`` (optional): Name of the shared object file that is being stubbed.
50 this shared object. It can be either in explicit format or in implicit LLVM
54 * ``NeededLibs``: The list of the external shared objects that this library depends on.
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
DEPCGenericMemoryAccess.h44 using namespace shared; in writeUInt8sAsync() local
51 using namespace shared; in writeUInt16sAsync() local
58 using namespace shared; in writeUInt32sAsync() local
65 using namespace shared; in writeUInt64sAsync() local
72 using namespace shared; in writeBuffersAsync() local

12345678910>>...49