Searched refs:tpos (Results 1 – 2 of 2) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_suppressions.cc | 46 char *tpos = (char*)internal_strchr(templ, '*'); in TemplateMatch() local 48 if (tpos == 0 || (tpos1 && tpos1 < tpos)) in TemplateMatch() 49 tpos = tpos1; in TemplateMatch() 50 if (tpos != 0) in TemplateMatch() 51 tpos[0] = 0; in TemplateMatch() 55 templ = tpos; in TemplateMatch() 56 if (tpos) in TemplateMatch() 57 tpos[0] = tpos == tpos1 ? '$' : '*'; in TemplateMatch()
|
/external/iptables/libiptc/ |
D | linux_list.h | 663 #define hlist_for_each_entry(tpos, pos, head, member) \ argument 666 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \ 675 #define hlist_for_each_entry_continue(tpos, pos, member) \ argument 678 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \ 687 #define hlist_for_each_entry_from(tpos, pos, member) \ argument 689 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \ 700 #define hlist_for_each_entry_safe(tpos, pos, n, head, member) \ argument 703 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \ 717 #define hlist_for_each_entry_rcu(tpos, pos, head, member) \ argument 720 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
|