Searched refs:victim (Results 1 - 15 of 15) sorted by relevance

/openbsd-current/gnu/usr.bin/perl/t/porting/
H A Dutils.t82 foreach my $victim (@victims) {
84 skip ("$victim uses $excuses{$victim}, so can't test with just core modules")
85 if $excuses{$victim};
87 my $got = runperl(switches => ['-c'], progfile => $victim, stderr => 1, nolib => 1);
91 skip("$victim requires 64 bit integers and this is a 32 bit Perl", 1);
94 is($got, "$victim syntax OK\n", "$victim compiles")
95 or diag("when executing perl with '-c $victim'");
/openbsd-current/gnu/usr.bin/perl/ext/B/t/
H A Dwalkoptree.t33 my $victim = sub {
44 B::walkoptree(B::svref_2object($victim)->ROOT, "pie");
46 is ($seen{$_}, 1, "Our victim had a $_ OP");
58 B::walkoptree(B::svref_2object($victim)->ROOT, "pie");
60 is ($seen{$_}, 1, "Our victim had a $_ OP");
86 B::walkoptree(B::svref_2object($victim)->ROOT, "fiddle");
/openbsd-current/lib/libc/rpc/
H A Dsvc_udp.c307 u_long uc_nextvictim; /* points to next victim in fifo list */
361 cache_ptr victim; local
372 victim = uc->uc_fifo[uc->uc_nextvictim];
373 if (victim != NULL) {
374 loc = CACHE_LOC(xprt, victim->cache_xid);
376 *vicp != NULL && *vicp != victim;
382 *vicp = victim->cache_next; /* remote from cache */
383 newbuf = victim->cache_reply;
385 victim = malloc(sizeof(struct cache_node));
386 if (victim
[all...]
/openbsd-current/sys/dev/pci/drm/include/linux/
H A Drbtree.h136 rb_replace_node(struct rb_node *victim, struct rb_node *new, argument
141 p = rb_parent(victim);
143 if (p->rb_left == victim)
149 if (victim->rb_left)
150 rb_set_parent(victim->rb_left, new);
151 if (victim->rb_right)
152 rb_set_parent(victim->rb_right, new);
153 *new = *victim;
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dbless.t165 bless \$victim, "Food";
168 isnt ref(\$victim), '__ANON__',
170 bless \$victim
177 bless \$victim;
H A Dgv.t124 my $victim = sprintf "%d", $_;
127 is($victim, 0);
130 $victim = sprintf "%u", $_;
133 is($victim, 0);
136 $victim = sprintf "%e", $_;
139 like($victim, qr/^0\.0+E\+?00/i, "Expect floating point zero");
142 $victim = sprintf "%s", $_;
144 is($victim, '' . $_);
/openbsd-current/games/hunt/huntd/
H A Ddriver.c503 * Apply damage to the victim from an attacker.
504 * If the victim dies as a result, give points to 'credit',
507 checkdam(PLAYER *victim, PLAYER *attacker, IDENT *credit, int damage, argument
513 /* Don't do anything if the victim is already in the throes of death */
514 if (victim->p_death[0] != '\0')
517 /* Weaken slime attacks by 0.5 * number of boots the victim has on: */
519 switch (victim->p_nboots) {
531 /* The victim sustains some damage: */
532 victim->p_damage += damage;
534 /* Check if the victim survive
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/f/
H A Dequiv.h67 void ffeequiv_kill (ffeequiv victim);
H A Dequiv.c83 ffeequiv_destroy_ (ffeequiv victim)
89 for (list = victim->list; list != NULL; list = ffebld_trail (list))
103 ffeequiv_kill (victim);
949 ffeequiv_kill (ffeequiv victim)
951 victim->next->previous = victim->previous;
952 victim->previous->next = victim->next;
959 /* Assert that nobody our victim points to still points to it. */
961 assert ((victim
82 ffeequiv_destroy_(ffeequiv victim) argument
948 ffeequiv_kill(ffeequiv victim) argument
977 malloc_kill_ks (ffe_pool_program_unit (), victim, sizeof (*victim)); local
[all...]
H A Ddata.c1463 ffedataImpdo_ victim = ffedata_stack_;
1465 assert (victim != NULL);
1469 malloc_kill_ks (ffe_pool_program_unit (), victim, sizeof (*victim));
1462 ffedataImpdo_ victim = ffedata_stack_; local
1468 malloc_kill_ks (ffe_pool_program_unit (), victim, sizeof (*victim)); local
/openbsd-current/gnu/usr.bin/perl/t/uni/
H A Dgv.t139 my $victim = sprintf "%d", $_;
141 is($victim, 0);
144 $victim = sprintf "%u", $_;
146 is($victim, 0);
149 $victim = sprintf "%e", $_;
151 like($victim, qr/^0\.0+E\+?00/i, "Expect floating point zero");
154 $victim = sprintf "%s", $_;
156 is($victim, '' . $_);
/openbsd-current/gnu/llvm/clang/lib/Serialization/
H A DModuleManager.cpp284 for (ModuleIterator victim = First; victim != Last; ++victim)
285 Modules.erase(victim->File);
/openbsd-current/gnu/usr.bin/perl/
H A Dhv.c2801 HEK **victim = namep + (count < 0 ? -count : count); local
2802 while (victim-- > namep + 1)
2804 (HEK_UTF8(*victim) || (flags & SVf_UTF8))
2805 ? hek_eq_pvn_flags(aTHX_ *victim, name, (I32)len, flags)
2806 : (HEK_LEN(*victim) == (I32)len && memEQ(HEK_KEY(*victim), name, len))
2808 unshare_hek_or_pvn(*victim, 0, 0, 0);
2822 *victim = *(namep + (count < 0 ? -count : count) - 1);
/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/
H A DAPItest.xs211 HE *victim;
217 victim = (HE*)safemalloc(sizeof(HE));
228 victim = (HE*) PL_body_roots[HE_ARENA_ROOT_IX];
229 PL_body_roots[HE_ARENA_ROOT_IX] = HeNEXT(victim);
236 victim->hent_hek = Perl_share_hek(aTHX_ "", 0, 0);
240 HeVAL(victim) = test_scalar;
246 f(aTHX_ test_hash, victim);
/openbsd-current/gnu/usr.bin/perl/Porting/
H A Dbisect-runner.pl1306 my $victim = $setgrp ? -$pid : $pid;
1308 kill 'TERM', $victim;
1310 while (kill 0, $victim) {
1315 if (kill 'KILL', $victim) {
1316 print STDERR "$0: Had to kill 'KILL', $victim\n"
1318 print STDERR "$0: kill 'KILL', $victim failed: $!\n";

Completed in 778 milliseconds