Searched refs:cv (Results 1 - 25 of 55) sorted by relevance

123

/external/valgrind/main/none/tests/arm/
H A Dv6intThumb.c222 #define NOCARRY { int cv = 0; {
223 #define TESTCARRY { int cv = 0; for (cv = 0; cv < 4; cv++) {
240 TESTINST2("movs r0, r1", 1, r0, r1, cv);
241 TESTINST2("movs r0, r1", 0, r0, r1, cv);
242 TESTINST2("movs r0, r1", 0x80000000, r0, r1, cv);
243 TESTINST2("movs r0, #0", 0, r0, r1, cv);
244 TESTINST2("movs r0, #1", 0, r0, r1, cv);
[all...]
/external/llvm/include/llvm/Support/
H A DValgrind.h28 const volatile void *cv);
30 const volatile void *cv);
52 #define TsanHappensBefore(cv) \
53 AnnotateHappensBefore(__FILE__, __LINE__, cv)
56 #define TsanHappensAfter(cv) \
57 AnnotateHappensAfter(__FILE__, __LINE__, cv)
67 #define TsanHappensBefore(cv)
68 #define TsanHappensAfter(cv)
/external/opencv/
H A DAndroid.mk57 $(LOCAL_PATH)/cv/include
62 cv/src/cvaccum.cpp \
63 cv/src/cvadapthresh.cpp \
64 cv/src/cvapprox.cpp \
65 cv/src/cvcalccontrasthistogram.cpp \
66 cv/src/cvcalcimagehomography.cpp \
67 cv/src/cvcalibinit.cpp \
68 cv/src/cvcalibration.cpp \
69 cv/src/cvcamshift.cpp \
70 cv/sr
[all...]
H A DApplication.mk3 APP_MODULES := cxcore cv cvaux cvml cvhighgui opencv
H A Dlibopencv.mk6 $(OPENCV)/cv/include \
/external/valgrind/main/drd/tests/
H A Dannotate_hb_err.c13 pthread_cond_t cv; local
17 pthread_cond_init(&cv, NULL);
26 U_ANNOTATE_HAPPENS_BEFORE(&cv);
H A Dunified_annotations.h31 AnnotateCondVarSignal(const char *file, int line, const volatile void *cv) argument
37 AnnotateCondVarWait(const char *file, int line, const volatile void *cv, argument
/external/valgrind/unittest/
H A Dlibstdc++_tests.cc61 pthread_cond_t cv; member in namespace:LibStdCPlusPlus_basic_string_Test
69 pthread_cond_signal(&cv);
89 pthread_cond_init(&cv, 0);
97 pthread_cond_wait(&cv, &mu);
125 pthread_cond_t cv; member in namespace:LibStdCPlusPlus_shared_ptr_Test
133 pthread_cond_signal(&cv);
152 pthread_cond_init(&cv, 0);
160 pthread_cond_wait(&cv, &mu);
/external/openssl/crypto/conf/
H A Dcnf_save.c62 static void print_conf(CONF_VALUE *cv);
81 static void print_conf(CONF_VALUE *cv) argument
92 if (cv->name != NULL) return;
94 printf("[ %s ]\n",cv->section);
95 s=(STACK *)cv->value;
/external/llvm/lib/Support/
H A DValgrind.cpp61 const volatile void *cv) {}
63 const volatile void *cv) {}
60 AnnotateHappensBefore(const char *file, int line, const volatile void *cv) argument
62 AnnotateHappensAfter(const char *file, int line, const volatile void *cv) argument
/external/linux-tools-perf/scripts/perl/Perf-Trace-Util/
H A DContext.c53 PERL_UNUSED_VAR(cv); /* -W */
76 PERL_UNUSED_VAR(cv); /* -W */
99 PERL_UNUSED_VAR(cv); /* -W */
124 PERL_UNUSED_VAR(cv); /* -W */
/external/valgrind/main/helgrind/tests/
H A Dtc23_bogus_condwait.c11 pthread_cond_t cv; pthread_rwlock_t rwl; variable
20 pthread_cond_signal( &cv );
24 pthread_cond_signal( &cv );
28 pthread_cond_signal( &cv );
32 pthread_cond_signal( &cv );
56 r= pthread_cond_init(&cv, NULL); assert(!r);
69 r= pthread_cond_wait(&cv, (pthread_mutex_t*)(4 + (char*)&mx[0]) );
72 r= pthread_cond_wait(&cv, &mx[0]);
75 r= pthread_cond_wait(&cv, (pthread_mutex_t*)&rwl );
78 r= pthread_cond_wait(&cv,
[all...]
H A Dtc20_verifywrap.c45 pthread_cond_t cv; local
146 r= pthread_cond_init( &cv, NULL ); assert(!r);
147 r= pthread_cond_wait( &cv, &mx4 ); assert(r);
152 r= pthread_cond_signal( &cv ); assert(!r);
158 r= pthread_cond_broadcast( &cv ); assert(!r);
165 r= pthread_cond_timedwait( &cv, &mx4, &abstime ); assert(r);
/external/skia/gm/
H A Dshapes.cpp103 SkCanvas* cv = pict->beginRecording(1000, 1000); local
104 cv->scale(SK_ScalarHalf, SK_ScalarHalf);
105 gs->draw(cv);
106 cv->translate(SkIntToScalar(680), SkIntToScalar(480));
107 cv->scale(-SK_Scalar1, SK_Scalar1);
108 gs->draw(cv);
/external/skia/samplecode/
H A DSampleShapes.cpp139 SkCanvas* cv = pict->beginRecording(1000, 1000); local
140 cv->scale(SK_ScalarHalf, SK_ScalarHalf);
141 gs->draw(cv);
142 cv->translate(SkIntToScalar(680), SkIntToScalar(480));
143 cv->scale(-SK_Scalar1, SK_Scalar1);
144 gs->draw(cv);
/external/chromium/base/third_party/dynamic_annotations/
H A Ddynamic_annotations.h127 /* Report that wait on the condition variable at address "cv" has succeeded
129 #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) \
130 DYNAMIC_ANNOTATIONS_NAME(AnnotateCondVarWait)(__FILE__, __LINE__, cv, lock)
132 /* Report that wait on the condition variable at "cv" has succeeded. Variant
134 #define ANNOTATE_CONDVAR_WAIT(cv) \
135 DYNAMIC_ANNOTATIONS_NAME(AnnotateCondVarWait)(__FILE__, __LINE__, cv, NULL)
138 "cv". */
139 #define ANNOTATE_CONDVAR_SIGNAL(cv) \
140 DYNAMIC_ANNOTATIONS_NAME(AnnotateCondVarSignal)(__FILE__, __LINE__, cv)
143 "cv"
[all...]
H A Ddynamic_annotations.c72 const char *file, int line, const volatile void *cv,
75 const char *file, int line, const volatile void *cv){}
77 const char *file, int line, const volatile void *cv){}
71 AnnotateCondVarWait( const char *file, int line, const volatile void *cv, const volatile void *lock) argument
74 AnnotateCondVarSignal( const char *file, int line, const volatile void *cv) argument
76 AnnotateCondVarSignalAll( const char *file, int line, const volatile void *cv) argument
/external/valgrind/dynamic_annotations/
H A Ddynamic_annotations.h124 /* Report that wait on the condition variable at address "cv" has succeeded
126 #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) \
127 DYNAMIC_ANNOTATIONS_NAME(AnnotateCondVarWait)(__FILE__, __LINE__, cv, lock)
129 /* Report that wait on the condition variable at "cv" has succeeded. Variant
131 #define ANNOTATE_CONDVAR_WAIT(cv) \
132 DYNAMIC_ANNOTATIONS_NAME(AnnotateCondVarWait)(__FILE__, __LINE__, cv, NULL)
135 "cv". */
136 #define ANNOTATE_CONDVAR_SIGNAL(cv) \
137 DYNAMIC_ANNOTATIONS_NAME(AnnotateCondVarSignal)(__FILE__, __LINE__, cv)
140 "cv"
[all...]
H A Ddynamic_annotations.c79 const char *file, int line, const volatile void *cv,
82 const char *file, int line, const volatile void *cv) {DYNAMIC_ANNOTATIONS_IMPL}
84 const char *file, int line, const volatile void *cv) {DYNAMIC_ANNOTATIONS_IMPL}
78 AnnotateCondVarWait( const char *file, int line, const volatile void *cv, const volatile void *lock) argument
81 AnnotateCondVarSignal( const char *file, int line, const volatile void *cv) argument
83 AnnotateCondVarSignalAll( const char *file, int line, const volatile void *cv) argument
/external/valgrind/main/drd/
H A Ddrd.h127 * Tell DRD that waiting on the condition variable at address cv has succeeded
134 #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, mtx) do { } while(0)
137 * Tell DRD that the condition variable at address cv is about to be signaled.
139 #define ANNOTATE_CONDVAR_SIGNAL(cv) do { } while(0)
142 * Tell DRD that the condition variable at address cv is about to be signaled.
144 #define ANNOTATE_CONDVAR_SIGNAL_ALL(cv) do { } while(0)
147 * Tell DRD that waiting on condition variable at address cv succeeded and that
149 * to happen after the matching ANNOTATE_CONDVAR_SIGNAL(cv). Since this is the
153 #define ANNOTATE_CONDVAR_WAIT(cv) do { } while(0)
/external/harfbuzz/src/
H A Dharfbuzz-gdef.c383 static HB_Error Load_CaretValue( HB_CaretValue* cv, argument
396 cv->CaretValueFormat = GET_UShort();
400 switch ( cv->CaretValueFormat )
406 cv->cvf.cvf1.Coordinate = GET_Short();
416 cv->cvf.cvf2.CaretValuePoint = GET_UShort();
426 cv->cvf.cvf3.Coordinate = GET_Short();
434 ( error = _HB_OPEN_Load_Device( &cv->cvf.cvf3.Device,
446 cv->cvf.cvf4.IdCaretValue = GET_UShort();
462 static void Free_CaretValue( HB_CaretValue* cv) argument
464 if ( cv
479 HB_CaretValue* cv; local
529 HB_CaretValue* cv; local
[all...]
/external/chromium/base/synchronization/
H A Dwaitable_event_posix.cc141 base::ConditionVariable* cv() { function in class:base::SyncWaiter
204 sw.cv()->TimedWait(max_wait);
206 sw.cv()->Wait();
267 sw.cv()->Wait();
H A Dcondition_variable_unittest.cc158 ConditionVariable cv(&lock);
161 cv.TimedWait(kTenMs); // Wait for 10 ms.
162 cv.TimedWait(kTenMs); // Wait for 10 ms.
166 cv.TimedWait(kTenMs); // Wait for 10 ms.
167 cv.TimedWait(kTenMs); // Wait for 10 ms.
168 cv.TimedWait(kTenMs); // Wait for 10 ms.
170 } // Call for cv destruction.
174 ConditionVariable cv(&lock);
182 cv.TimedWait(WAIT_TIME + FUDGE_TIME);
/external/clang/test/SemaCXX/
H A Ddcl_init_aggr.cpp37 char cv[4] = { 'a', 's', 'd', 'f', 0 }; // expected-error{{excess elements in array initializer}} variable
/external/valgrind/main/helgrind/
H A Dhelgrind.h416 #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) \
421 #define ANNOTATE_CONDVAR_WAIT(cv) \
426 #define ANNOTATE_CONDVAR_SIGNAL(cv) \
431 #define ANNOTATE_CONDVAR_SIGNAL_ALL(cv) \

Completed in 460 milliseconds

123