Home
last modified time | relevance | path

Searched refs:vc1 (Results 1 – 5 of 5) sorted by relevance

/external/valgrind/drd/
Ddrd_vc.h81 Bool DRD_(vc_lte)(const VectorClock* const vc1,
83 Bool DRD_(vc_ordered)(const VectorClock* const vc1,
102 Bool DRD_(vc_lte)(const VectorClock* const vc1, const VectorClock* const vc2) in DRD_()
107 for (i = 0; i < vc1->size; i++) in DRD_()
109 while (j < vc2->size && vc2->vc[j].threadid < vc1->vc[i].threadid) in DRD_()
111 if (j >= vc2->size || vc2->vc[j].threadid > vc1->vc[i].threadid) in DRD_()
118 tl_assert(j < vc2->size && vc2->vc[j].threadid == vc1->vc[i].threadid); in DRD_()
120 if (vc1->vc[i].count > vc2->vc[j].count) in DRD_()
Ddrd_segment.c208 HChar *vc1, *vc2; in DRD_() local
210 vc1 = DRD_(vc_aprint)(&sg1->vc); in DRD_()
214 "Merging segments with vector clocks %s and %s\n", vc1, vc2); in DRD_()
215 VG_(free)(vc1); in DRD_()
Ddrd_vc.c118 Bool DRD_(vc_ordered)(const VectorClock* const vc1, in DRD_()
121 return DRD_(vc_lte)(vc1, vc2) || DRD_(vc_lte)(vc2, vc1); in DRD_()
/external/valgrind/drd/tests/
Dunit_vc.c58 VectorClock vc1; in vc_unittest() local
68 DRD_(vc_init)(&vc1, vc1elem, sizeof(vc1elem)/sizeof(vc1elem[0])); in vc_unittest()
74 DRD_(vc_combine)(&vc3, &vc1); in vc_unittest()
77 fprintf(stderr, "vc1: %s", (str = DRD_(vc_aprint)(&vc1))); in vc_unittest()
86 DRD_(vc_lte)(&vc1, &vc2), DRD_(vc_lte)(&vc1, &vc3), in vc_unittest()
97 DRD_(vc_reserve)(&vc1, i); in vc_unittest()
99 DRD_(vc_reserve)(&vc1, i); in vc_unittest()
101 DRD_(vc_cleanup)(&vc1); in vc_unittest()
/external/mesa3d/src/gallium/state_trackers/vdpau/
Ddecode.c436 struct pipe_vc1_picture_desc vc1; in vlVdpDecoderRender() member
507 ret = vlVdpDecoderRenderVC1(&desc.vc1, (VdpPictureInfoVC1 *)picture_info); in vlVdpDecoderRender()