HomeSort by relevance Sort by last modified time
    Searched refs:tpos (Results 1 - 4 of 4) sorted by null

  /external/compiler-rt/lib/tsan/rtl/
tsan_suppressions.cc 67 char *tpos; local
76 tpos = (char*)internal_strchr(templ, '*');
77 if (tpos != 0)
78 tpos[0] = 0;
81 templ = tpos;
82 if (tpos)
83 tpos[0] = '*';
  /external/iptables/libiptc/
linux_list.h 658 * @tpos: the type * to use as a loop counter.
663 #define hlist_for_each_entry(tpos, pos, head, member) \
666 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
671 * @tpos: the type * to use as a loop counter.
675 #define hlist_for_each_entry_continue(tpos, pos, member) \
678 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
683 * @tpos: the type * to use as a loop counter.
687 #define hlist_for_each_entry_from(tpos, pos, member)
    [all...]
  /external/kernel-headers/original/linux/
list.h 821 * @tpos: the type * to use as a loop cursor.
826 #define hlist_for_each_entry(tpos, pos, head, member) \
829 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
834 * @tpos: the type * to use as a loop cursor.
838 #define hlist_for_each_entry_continue(tpos, pos, member) \
841 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
846 * @tpos: the type * to use as a loop cursor.
850 #define hlist_for_each_entry_from(tpos, pos, member)
    [all...]
  /external/linux-tools-perf/util/include/linux/added/
list.h 644 * @tpos: the type * to use as a loop cursor.
649 #define hlist_for_each_entry(tpos, pos, head, member) \
652 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
657 * @tpos: the type * to use as a loop cursor.
661 #define hlist_for_each_entry_continue(tpos, pos, member) \
664 ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
669 * @tpos: the type * to use as a loop cursor.
673 #define hlist_for_each_entry_from(tpos, pos, member)
    [all...]

Completed in 111 milliseconds