Searched refs:vc1 (Results 1 - 8 of 8) sorted by relevance

/external/valgrind/main/drd/
H A Ddrd_vc.h82 Bool DRD_(vc_lte)(const VectorClock* const vc1,
84 Bool DRD_(vc_ordered)(const VectorClock* const vc1,
98 * @return True if all thread id's that are present in vc1 also exist in
103 Bool DRD_(vc_lte)(const VectorClock* const vc1, const VectorClock* const vc2) argument
108 for (i = 0; i < vc1->size; i++)
110 while (j < vc2->size && vc2->vc[j].threadid < vc1->vc[i].threadid)
112 if (j >= vc2->size || vc2->vc[j].threadid > vc1->vc[i].threadid)
119 tl_assert(j < vc2->size && vc2->vc[j].threadid == vc1->vc[i].threadid);
121 if (vc1->vc[i].count > vc2->vc[j].count)
H A Ddrd_segment.c192 char *vc1, *vc2; local
194 vc1 = DRD_(vc_aprint)(&sg1->vc);
198 "Merging segments with vector clocks %s and %s\n", vc1, vc2);
199 VG_(free)(vc1);
H A Ddrd_vc.c113 * @return True if vector clocks vc1 and vc2 are ordered, and false otherwise.
116 Bool DRD_(vc_ordered)(const VectorClock* const vc1, argument
119 return DRD_(vc_lte)(vc1, vc2) || DRD_(vc_lte)(vc2, vc1);
/external/valgrind/main/drd/tests/
H A Dunit_vc.stderr.exp0 vc1: [ 3: 7, 5: 8 ]
4 vc_lte(vc1, vc2) = 0, vc_lte(vc1, vc3) = 1, vc_lte(vc2, vc3) = 1
H A Dunit_vc.c58 VectorClock vc1; local
68 DRD_(vc_init)(&vc1, vc1elem, sizeof(vc1elem)/sizeof(vc1elem[0]));
74 DRD_(vc_combine)(&vc3, &vc1);
77 fprintf(stderr, "vc1: %s", (str = DRD_(vc_aprint)(&vc1)));
84 fprintf(stderr, "vc_lte(vc1, vc2) = %d, vc_lte(vc1, vc3) = %d,"
86 DRD_(vc_lte)(&vc1, &vc2), DRD_(vc_lte)(&vc1, &vc3),
97 DRD_(vc_reserve)(&vc1,
[all...]
/external/kernel-headers/original/video/
H A Ddsscomp.h311 * 4) cconv and vc1 only needs to be filled for YUV color modes.
313 * 5) vc1.range_y and vc1.range_uv only needs to be filled if
314 * vc1.enable is true.
335 struct dss2_vc1_range_map_info vc1; member in struct:dss2_ovl_cfg
/external/qemu/
H A Dnet-android.c346 static char *assign_name(VLANClientState *vc1, const char *model) argument
356 if (vc != vc1 && strcmp(vc->model, model) == 0)
H A Dnet.c313 static char *assign_name(VLANClientState *vc1, const char *model) argument
323 if (vc != vc1 && strcmp(vc->model, model) == 0)

Completed in 277 milliseconds