/openbsd/gnu/usr.bin/perl/dist/threads-shared/lib/threads/ |
H A D | shared.pm | 94 my ($item, $cloned) = @_; 105 if (exists($cloned->{$addr})) { 107 return $cloned->{$addr}; 119 $cloned->{$addr} = $copy; 121 push(@$copy, map { $make_shared->($_, $cloned) } @$item); 129 $cloned->{$addr} = $copy; 132 $copy->{$key} = $make_shared->($item->{$key}, $cloned); 141 $cloned->{$addr} = $copy; 150 $cloned->{$addr} = $copy; 156 $cloned->{$addr} = $copy; [all …]
|
/openbsd/gnu/usr.bin/perl/dist/threads-shared/t/ |
H A D | clone.t | 62 ok($test++, $foo eq 'test', 'cloned string'); 65 ok($test++, $$foo eq 'test', 'cloned scalar ref'); 68 ok($test++, $$foo eq 'test', 'cloned scalar ref in thread'); 129 ok($test++, $$bork == 99, 'cloned scalar ref object'); 134 ok($test++, $$bork == 99, 'cloned scalar ref object in thread'); 161 ok($test++, is_shared($copy->{'ary'}->[2]), 'Shared element in cloned obj'); 166 ok($test++, ref($copy) eq 'Foo', 'Obj cloned by thread'); 169 ok($test++, $copy->{'ary'}->[3]->{'bar'}->[0] eq 'baz', 'Deeply cloned'); 180 ok($test++, ! defined($copy), 'Nothing cloned'); 187 ok($test++, ! defined($copy), 'Nothing cloned'); [all …]
|
/openbsd/gnu/usr.bin/perl/dist/Storable/t/ |
H A D | dclone.t | 65 my $cloned = dclone(dclone($hash)); 66 is($$cloned{''}[0], \$$cloned{a}); 68 $$cloned{a} = "blah"; 69 is($$cloned{''}[0], \$$cloned{a});
|
H A D | canonical.t | 135 my $cloned = dclone(dclone($hash)); 136 is($$cloned{''}[0], \$$cloned{a}); 138 $$cloned{a} = "blah"; 139 is($$cloned{''}[0], \$$cloned{a});
|
/openbsd/gnu/usr.bin/perl/cpan/CPAN-Meta-Requirements/t/ |
H A D | finalize.t | 73 my $cloned = $req->clone; 75 $cloned->add_minimum('Foo::Bar', 12); 78 $cloned->as_string_hash, 83 "we can alter a cloned V:R (finalization does not survive cloning)",
|
/openbsd/gnu/usr.bin/perl/cpan/CPAN-Meta/t/ |
H A D | prereqs-finalize.t | 48 ok($prereqs->is_finalized, 'cloned obj is not finalized'); 72 isa_ok($clone, 'CPAN::Meta::Prereqs', 'cloned prereqs obj'); 74 ok(! $clone->is_finalized, 'cloned obj is not finalized');
|
H A D | meta-obj.t | 94 isnt( $meta->resources, $meta->{resources}, "->resource (map values are deep cloned)");
|
/openbsd/regress/sys/netinet/bindconnect/ |
H A D | README | 7 -d delroute threads deleting cloned routes, default 0 28 of cloned routes during source address selection. To stress test
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | linux-nat.h | 34 int cloned; member
|
H A D | linux-nat.c | 814 lp->cloned = 1; in lin_lwp_attach_lwp() 868 lp->cloned = 1; in linux_nat_attach() 1102 new_lp->cloned = 1; in linux_nat_handle_extended() 1821 options = lp->cloned ? __WCLONE : 0; in linux_nat_wait() 1912 lp->cloned = 1; in linux_nat_wait() 2201 if (lp->cloned) in kill_wait_callback()
|
/openbsd/gnu/usr.bin/perl/dist/threads/t/ |
H A D | problems.t | 75 # started (interpreter cloned). 5.8.1 and 5.8.2 contained a bug that would 109 # Nothing is checking that total keys gets cloned correctly.
|
H A D | thread.t | 264 my $cloned = ""; # XXX due to recursion, doesn't get initialized 265 $cloned .= "$_" =~ /ARRAY/ ? '1' : '0' for @objs; 266 is($cloned, ($depth ? '00010001111' : '11111111111'),
|
/openbsd/gnu/usr.bin/perl/ |
H A D | pad.c | 1920 static CV *S_cv_clone(pTHX_ CV *proto, CV *cv, CV *outside, HV *cloned); 1923 S_cv_clone_pad(pTHX_ CV *proto, CV *cv, CV *outside, HV *cloned, in S_cv_clone_pad() argument 2071 if (trouble || cloned) { in S_cv_clone_pad() 2084 if (!cloned) in S_cv_clone_pad() 2085 cloned = (HV *)newSV_type_mortal(SVt_PVHV); in S_cv_clone_pad() 2098 : (CV **)hv_fetch(cloned, (char *)&protokey, in S_cv_clone_pad() 2103 *cvp, cloned); in S_cv_clone_pad() 2104 (void)hv_store(cloned, (char *)&ppad[ix], in S_cv_clone_pad() 2123 CvOUTSIDE(ppad[ix]), cloned); in S_cv_clone_pad() 2213 S_cv_clone(pTHX_ CV *proto, CV *cv, CV *outside, HV *cloned) in S_cv_clone() argument [all …]
|
/openbsd/regress/lib/libcrypto/x509/bettertls/ |
H A D | README | 4 cloned at commit 8950fdf2a46eaa357aa8d338c871f2cbc00e86e5 in July 2020.
|
/openbsd/gnu/usr.bin/perl/cpan/Pod-Simple/t/ |
H A D | JustPod01.t | 185 and may be cloned from L<git://github.com/doherty/utf8-all.git>
|
/openbsd/gnu/llvm/llvm/lib/Support/Unix/ |
H A D | Program.inc | 323 // object destructors cloned from the parent process aren't 325 // cloned from the parent aren't redundantly written out.
|
/openbsd/gnu/usr.bin/perl/pod/ |
H A D | perlmod.pod | 602 thread is cloned all Perl data is cloned, however non-Perl data cannot 603 be cloned automatically. Perl after 5.8.0 has support for the C<CLONE> 621 be cloned; or rather, they will be copied as unblessed, undef values.
|
H A D | perl5203delta.pod | 184 Extending an array cloned from a parent thread could result in "Modification of
|
H A D | perlfork.pod | 33 running interpreter and all its state, and run the cloned interpreter in
|
/openbsd/gnu/llvm/llvm/docs/ |
H A D | InstrRefDebugInfo.md | 190 instruction number of any cloned instruction, to avoid duplicate numbers
|
H A D | AssignmentTracking.md | 167 the `ValueExpression`, and give the split stores (and cloned intrinsics) new
|
/openbsd/gnu/llvm/llvm/docs/Proposals/ |
H A D | VectorizationPlan.rst | 145 instructions; e.g., cloned once, replicated multiple times or widened
|
/openbsd/gnu/usr.bin/binutils/gdb/gdbserver/ |
H A D | ChangeLog | 366 Update. Use WNOHANG. Wait for cloned processes also. Update process
|
/openbsd/gnu/llvm/llvm/docs/CommandGuide/ |
H A D | lit.rst | 511 test configuration is cloned :program:`lit` checks for a *lit.local.cfg* file
|
/openbsd/share/snmp/ |
H A D | SNMP-USER-BASED-SM-MIB.txt | 503 cloned from its clone-from user. These parameters are:
|