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

/external/valgrind/main/drd/
H A Ddrd_vc.h81 Bool DRD_(vc_lte)(const VectorClock* const vc1,
83 Bool DRD_(vc_ordered)(const VectorClock* const vc1,
97 * @return True if all thread id's that are present in vc1 also exist in
102 Bool DRD_(vc_lte)(const VectorClock* const vc1, const VectorClock* const vc2) argument
107 for (i = 0; i < vc1->size; i++)
109 while (j < vc2->size && vc2->vc[j].threadid < vc1->vc[i].threadid)
111 if (j >= vc2->size || vc2->vc[j].threadid > vc1->vc[i].threadid)
118 tl_assert(j < vc2->size && vc2->vc[j].threadid == vc1->vc[i].threadid);
120 if (vc1->vc[i].count > vc2->vc[j].count)
H A Ddrd_segment.c209 HChar *vc1, *vc2; local
211 vc1 = DRD_(vc_aprint)(&sg1->vc);
215 "Merging segments with vector clocks %s and %s\n", vc1, vc2);
216 VG_(free)(vc1);
H A Ddrd_vc.c112 * @return True if vector clocks vc1 and vc2 are ordered, and false otherwise.
115 Bool DRD_(vc_ordered)(const VectorClock* const vc1, argument
118 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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
H A Ddecode.c436 struct pipe_vc1_picture_desc vc1; member in union:__anon14197
507 ret = vlVdpDecoderRenderVC1(&desc.vc1, (VdpPictureInfoVC1 *)picture_info);
/external/mesa3d/src/gallium/state_trackers/vdpau/
H A Ddecode.c436 struct pipe_vc1_picture_desc vc1; member in union:__anon27608
507 ret = vlVdpDecoderRenderVC1(&desc.vc1, (VdpPictureInfoVC1 *)picture_info);
/external/qemu/net/
H A Dnet-android.c321 static char *assign_name(VLANClientState *vc1, const char *model) argument
331 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 141 milliseconds