Searched defs:victim (Results 1 - 12 of 12) sorted by relevance

/external/blktrace/
H A Drbtree.c368 void rb_replace_node(struct rb_node *victim, struct rb_node *new, argument
371 struct rb_node *parent = rb_parent(victim);
375 if (victim == parent->rb_left)
382 if (victim->rb_left)
383 rb_set_parent(victim->rb_left, new);
384 if (victim->rb_right)
385 rb_set_parent(victim->rb_right, new);
387 /* Copy the pointers/colour from the victim to the replacement */
388 *new = *victim;
/external/e2fsprogs/lib/ext2fs/
H A Drbtree.c430 void ext2fs_rb_replace_node(struct rb_node *victim, struct rb_node *new, argument
433 struct rb_node *parent = ext2fs_rb_parent(victim);
437 if (victim == parent->rb_left)
444 if (victim->rb_left)
445 ext2fs_rb_set_parent(victim->rb_left, new);
446 if (victim->rb_right)
447 ext2fs_rb_set_parent(victim->rb_right, new);
449 /* Copy the pointers/colour from the victim to the replacement */
450 *new = *victim;
/external/libunwind/src/x86/
H A DGinit.c94 int i, victim; local
123 victim = lga_victim;
125 if (!last_good_addr[victim]) {
126 last_good_addr[victim++] = addr;
129 victim = (victim + 1) % NLGA;
132 /* All slots full. Evict the victim. */
133 last_good_addr[victim] = addr;
134 victim = (victim
[all...]
/external/libunwind/src/x86_64/
H A DGinit.c118 int i, victim; local
140 victim = lga_victim;
142 if (!last_good_addr[victim]) {
143 last_good_addr[victim++] = addr;
146 victim = (victim + 1) % NLGA;
149 /* All slots full. Evict the victim. */
150 last_good_addr[victim] = addr;
151 victim = (victim
[all...]
/external/linux-tools-perf/perf-3.12.0/lib/
H A Drbtree.c505 void rb_replace_node(struct rb_node *victim, struct rb_node *new, argument
508 struct rb_node *parent = rb_parent(victim);
511 __rb_change_child(victim, new, parent, root);
512 if (victim->rb_left)
513 rb_set_parent(victim->rb_left, new);
514 if (victim->rb_right)
515 rb_set_parent(victim->rb_right, new);
517 /* Copy the pointers/colour from the victim to the replacement */
518 *new = *victim;
/external/replicaisland/src/com/replica/replicaisland/
H A DHitReactionComponent.java101 public void hitVictim(GameObject parent, GameObject victim, int hitType, argument
114 mLauncherComponent.prepareToLaunch(victim, parent);
129 victim.getPosition().x : parent.getPosition().x;
131 victim.getPosition().y : parent.getPosition().y;
/external/dnsmasq/src/
H A Ddhcp.c577 struct ping_result *r, *victim = NULL; local
594 victim = r; /* old record */
604 /* at this point victim may hold an expired record */
605 if (!victim)
607 if ((victim = whine_malloc(sizeof(struct ping_result))))
609 victim->next = daemon->ping_results;
610 daemon->ping_results = victim;
616 if (victim)
618 victim->addr = addr;
619 victim
[all...]
/external/chromium_org/third_party/libevent/
H A Devdns.c1777 struct server_reply_item *victim, *next, **list; local
1787 victim = *list;
1788 while (victim) {
1789 next = victim->next;
1790 free(victim->name);
1791 if (victim->data)
1792 free(victim->data);
1793 free(victim);
1794 victim = next;
/external/valgrind/main/memcheck/
H A Dmc_main.c2468 OCacheLine *victim, *inL2; local
2501 victim = &ocacheL1->set[setno].line[line];
2502 c = classify_OCacheLine(victim);
2513 ocacheL2_del_tag( victim->tag );
2519 inL2 = ocacheL2_find_tag( victim->tag );
2521 *inL2 = *victim;
2523 ocacheL2_add_line( victim );
2532 tl_assert(tag != victim->tag); /* stay sane */
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 443 milliseconds