Home
last modified time | relevance | path

Searched refs:vc1 (Results 1 – 8 of 8) 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/clang/test/CodeGen/
DNontemporal.cpp15 char __attribute__((vector_size(8))) vc1, vc2; variable
33 __builtin_nontemporal_store(vc1, &vc2); // CHECK: store <8 x i8>{{.*}}align 8, !nontemporal in test_all_sizes()
47 vc2 = __builtin_nontemporal_load(&vc1); // CHECK: load <8 x i8>{{.*}}align 8, !nontemporal in test_all_sizes()
/external/opencv3/3rdparty/include/ffmpeg_/libavcodec/
Dvdpau.h59 VdpPictureInfoVC1 vc1; member
/external/opencv3/modules/viz/src/
Dclouds.cpp170 Color vc1 = vtkcolor(c1), vc2 = vtkcolor(c2); in WPaintedCloud() local
173 color_transfer->AddRGBPoint(0.0, vc1[0], vc1[1], vc1[2]); in WPaintedCloud()
/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()