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

  /external/jemalloc_new/include/jemalloc/internal/
witness.h 11 * Witnesses with rank WITNESS_RANK_OMIT are completely ignored by the witness
84 * Witness rank, where 0 is lowest and UINT_MAX is highest. Witnesses
90 * If two witnesses are of equal rank and they have the samp comp
92 * between witnesses of equal rank.
108 witness_list_t witnesses; member in struct:witness_tsd_s
112 #define WITNESS_TSD_INITIALIZER { ql_head_initializer(witnesses), false }
166 witness_list_t *witnesses; local
171 witnesses = &witness_tsd->witnesses;
172 ql_foreach(w, witnesses, link)
207 witness_list_t *witnesses; local
235 witness_list_t *witnesses; local
276 witness_list_t *witnesses; local
319 witness_list_t *witnesses; local
    [all...]
  /external/jemalloc_new/src/
witness.c 18 witness_lock_error_impl(const witness_list_t *witnesses,
23 ql_foreach(w, witnesses, link) {
50 witness_depth_error_impl(const witness_list_t *witnesses,
56 ql_foreach(w, witnesses, link) {
94 witness_list_t *witnesses; local
96 witnesses = &witness_tsd->witnesses;
97 ql_new(witnesses);
  /external/jemalloc/include/jemalloc/internal/
witness.h 10 * Lock ranks. Witnesses with rank WITNESS_RANK_OMIT are completely ignored by
53 * Witness rank, where 0 is lowest and UINT_MAX is highest. Witnesses
59 * If two witnesses are of equal rank and they have the samp comp
61 * between witnesses of equal rank.
79 void witness_lock_error(const witness_list_t *witnesses,
98 void witness_lockless_error(const witness_list_t *witnesses);
124 witness_list_t *witnesses; local
127 witnesses = tsd_witnessesp_get(tsd);
128 ql_foreach(w, witnesses, link) {
159 witness_list_t *witnesses; local
182 witness_list_t *witnesses; local
202 witness_list_t *witnesses; local
242 witness_list_t *witnesses; local
    [all...]
tsd.h 604 O(witnesses, witness_list_t) \
620 ql_head_initializer(witnesses), \
  /external/jemalloc/src/
witness.c 19 witness_lock_error(const witness_list_t *witnesses, const witness_t *witness)
24 ql_foreach(w, witnesses, link) {
78 witness_lockless_error(const witness_list_t *witnesses)
83 ql_foreach(w, witnesses, link) {
130 witness_list_t *witnesses; local
132 witnesses = tsd_witnessesp_get(tsd);
133 ql_new(witnesses);
  /external/jemalloc/test/unit/
witness.c 14 witness_lock_error_intercept(const witness_list_t *witnesses,
36 witness_lockless_error_intercept(const witness_list_t *witnesses)
46 assert_u_eq(a->rank, b->rank, "Witnesses should have equal rank");
55 assert_u_eq(a->rank, b->rank, "Witnesses should have equal rank");
  /external/jemalloc_new/test/unit/
witness.c 14 witness_lock_error_intercept(const witness_list_t *witnesses,
30 witness_depth_error_intercept(const witness_list_t *witnesses,
37 assert_u_eq(a->rank, b->rank, "Witnesses should have equal rank");
48 assert_u_eq(a->rank, b->rank, "Witnesses should have equal rank");

Completed in 492 milliseconds