Home
last modified time | relevance | path

Searched refs:is_shared (Results 1 – 12 of 12) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/dist/threads-shared/t/
H A Dsv_refs.t71 ok(11, is_shared($foo), "Check for sharing");
95 ok(20, is_shared($x) == is_shared($w), '_id($x) == _id($w)');
96 ok(21, is_shared($w) == is_shared($$$$w), '_id($w) == _id($$$$w)');
H A Dav_refs.t87 ok(12, is_shared($sv), "Check for sharing");
88 ok(13, is_shared(@av), "Check for sharing");
91 ok(14, is_shared($x), "Check for sharing");
H A Dclone.t118 ok($test++, is_shared($hsh), 'Shared hash ref');
119 ok($test++, is_shared($hsh->{'foo'}), 'Shared hash ref elem');
161 ok($test++, is_shared($copy->{'ary'}->[2]), 'Shared element in cloned obj');
H A Dhv_refs.t106 ok(19, is_shared($foo), "Check for sharing");
107 ok(20, is_shared(%foo), "Check for sharing");
H A Dno_share.t58 ok(6, ! is_shared($test), "Check for sharing");
H A Dsv_simple.t60 ok(11, is_shared($test), "Check for sharing");
H A Dhv_simple.t74 ok(16, is_shared(%hash), "Check for sharing");
H A Dav_simple.t131 ok(44, is_shared(@foo), "Check for sharing");
/openbsd-src/gnu/usr.bin/perl/dist/threads-shared/lib/threads/
H A Dshared.pm26 *is_shared = \&_id;
35 sub is_shared (\[$@%]) { undef }
49 my @EXPORT = qw(share is_shared cond_wait cond_timedwait
100 return $item if (! ref($item) || is_shared($item) || ! $threads::threads);
255 C<shared_clone>, C<is_shared>, C<cond_wait>, C<cond_timedwait>, C<cond_signal>
336 =item is_shared VARIABLE
338 C<is_shared> checks if the specified variable is shared or not. If shared,
342 if (is_shared($var)) {
348 When used on an element of an array or hash, C<is_shared> checks if the
353 if (is_shared(
[all...]
/openbsd-src/gnu/gcc/gcc/
H A Dcollect2.c2393 int is_shared = 0; in scan_prog_file() local
2425 is_shared = HEADER (ldptr).f_flags & F_SHROBJ; in scan_prog_file()
2453 if (! is_shared) in scan_prog_file()
2462 if (! is_shared) in scan_prog_file()
2473 if (is_shared) in scan_prog_file()
2480 if (is_shared) in scan_prog_file()
2487 if (! is_shared) in scan_prog_file()
2502 if (shared_obj && !is_shared in scan_prog_file()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dcollect2.c2755 int is_shared = 0; local
2787 is_shared = HEADER (ldptr).f_flags & F_SHROBJ;
2815 if (! is_shared)
2824 if (! is_shared)
2835 if (is_shared)
2842 if (is_shared)
2849 if (! is_shared)
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperl589delta.pod1066 added new C<is_shared> method.