Searched refs:cv (Results 151 - 175 of 270) sorted by relevance

1234567891011

/external/libxcam/plugins/smart/dvs/
H A Dxcam_plugin_dvs.cpp49 DvsBuffer (XCamVideoBuffer* buf, cv::UMat& frame)
82 cv::ocl::attachContext (platform_name, platform_id, cl_context_id, device_id);
133 cv::UMat frame;
134 cv::ocl::convertFromBuffer(cl_mem_id, buffer->info.strides[0], buffer->info.height, buffer->info.width, CV_8U, frame);
/external/libxcam/tests/
H A Dtest-video-stabilization.cpp216 cv::VideoWriter writer;
218 cv::Size dst_size = cv::Size (output_width, output_height);
260 cv::Mat out_mat;
H A Dtest-soft-image.cpp81 const static cv::Scalar color = cv::Scalar (0, 0, 255);
82 const static int fontFace = cv::FONT_HERSHEY_COMPLEX;
129 cv::VideoWriter _writer;
219 cv::Size frame_size = cv::Size (_width, _height);
231 cv::Mat mat;
236 cv::putText (mat, frame_str, cv::Point(20, 50), fontFace, 2.0, color, 2, 8, false);
238 cv
[all...]
/external/valgrind/drd/
H A Ddrd.h164 * Tell DRD that waiting on the condition variable at address cv has succeeded
171 #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, mtx) do { } while(0)
174 * Tell DRD that the condition variable at address cv is about to be signaled.
176 #define ANNOTATE_CONDVAR_SIGNAL(cv) do { } while(0)
179 * Tell DRD that the condition variable at address cv is about to be signaled.
181 #define ANNOTATE_CONDVAR_SIGNAL_ALL(cv) do { } while(0)
184 * Tell DRD that waiting on condition variable at address cv succeeded and that
186 * to happen after the matching ANNOTATE_CONDVAR_SIGNAL(cv). Since this is the
190 #define ANNOTATE_CONDVAR_WAIT(cv) do { } while(0)
/external/valgrind/helgrind/
H A Dhelgrind.h508 #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) \
513 #define ANNOTATE_CONDVAR_WAIT(cv) \
518 #define ANNOTATE_CONDVAR_SIGNAL(cv) \
523 #define ANNOTATE_CONDVAR_SIGNAL_ALL(cv) \
/external/libchrome/base/synchronization/
H A Dcondition_variable_unittest.cc164 ConditionVariable cv(&lock);
167 cv.TimedWait(kTenMs); // Wait for 10 ms.
168 cv.TimedWait(kTenMs); // Wait for 10 ms.
172 cv.TimedWait(kTenMs); // Wait for 10 ms.
173 cv.TimedWait(kTenMs); // Wait for 10 ms.
174 cv.TimedWait(kTenMs); // Wait for 10 ms.
176 } // Call for cv destruction.
180 ConditionVariable cv(&lock);
188 cv.TimedWait(WAIT_TIME + FUDGE_TIME);
223 ConditionVariable cv(
[all...]
H A Dwaitable_event_posix.cc145 base::ConditionVariable* cv() { function in class:base::SyncWaiter
223 sw.cv()->TimedWait(max_wait);
225 sw.cv()->Wait();
288 sw.cv()->Wait();
/external/python/cpython2/Lib/idlelib/
H A Drpc.py449 cv = self.cvars.get(seq, None)
452 if cv is not None:
453 cv.acquire()
455 cv.notify()
456 cv.release()
464 cv = self.cvars[key]
465 cv.acquire()
467 cv.notify()
468 cv.release()
/external/python/cpython3/Lib/idlelib/
H A Drpc.py457 cv = self.cvars.get(seq, None)
460 if cv is not None:
461 cv.acquire()
463 cv.notify()
464 cv.release()
472 cv = self.cvars[key]
473 cv.acquire()
475 cv.notify()
476 cv.release()
/external/python/cpython2/Lib/plat-irix6/
H A DFILE.py523 def cv_signal(cv): return sv_signal(cv)
525 def cv_broadcast(cv): return sv_broadcast(cv)
527 def cv_destroy(cv): return sv_destroy(cv)
/external/annotation-tools/asmx/test/conform/org/objectweb/asm/commons/
H A DGASMifierTest.java79 GASMifierClassVisitor cv = new GASMifierClassVisitor(new PrintWriter(sw));
80 cr.accept(cv, false);
H A DAdviceAdapterTest2.java113 public AdviceClassAdapter(ClassVisitor cv) { argument
114 super(cv);
136 MethodVisitor mv = cv.visitMethod(access,
/external/clang/test/SemaCXX/
H A Ddcl_init_aggr.cpp54 char cv[4] = { 'a', 's', 'd', 'f', 0 }; // expected-error{{excess elements in array initializer}} variable
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Devent.hpp94 mutable std::condition_variable cv; member in class:clover::event
/external/clang/test/OpenMP/
H A Datomic_read_codegen.c10 char cv, cx; variable
88 cv = cx;
165 cv = bx;
H A Datomic_write_codegen.c10 char cv, cx; variable
88 cx = cv;
182 bx = cv;
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DJava7Compatibility.java49 ClassVisitor cv, ClassReaderFactory factory, ClassReaderFactory bootclasspathReader) {
50 super(Opcodes.ASM6, cv);
138 Java7Compatibility.this.cv.visit(
48 Java7Compatibility( ClassVisitor cv, ClassReaderFactory factory, ClassReaderFactory bootclasspathReader) argument
H A DTryWithResourcesRewriter.java165 new CloseResourceMethodSpecializer(cv, resourceInternalName, isInterface));
198 MethodVisitor visitor = super.cv.visitMethod(access, name, desc, signature, exceptions);
393 ClassVisitor cv, String targetResourceInternalName, boolean isResourceAnInterface) {
395 cv,
392 CloseResourceMethodSpecializer( ClassVisitor cv, String targetResourceInternalName, boolean isResourceAnInterface) argument
/external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
H A DEventCount.h175 std::condition_variable cv; member in class:Eigen::EventCount::Waiter
208 w->cv.wait(lock);
223 if (state == Waiter::kWaiting) w->cv.notify_one();
/external/webrtc/webrtc/base/
H A Darray_view_unittest.cc112 const std::vector<int> cv; local
113 Call<const int>(cv);
114 // Call<int>(cv); // Compile error, because can't drop const.
115 ArrayView<const int> z = cv;
118 // ArrayView<int> w = cv; // Compile error, because can't drop const.
/external/mesa3d/src/gallium/drivers/swr/
H A Dswr_shader.cpp281 unsigned cv = 0; local
283 cv = 1 + locate_linkage(TGSI_SEMANTIC_CLIPVERTEX, 0,
289 cv = i;
294 LLVMValueRef cx = LLVMBuildLoad(gallivm->builder, outputs[cv][0], "");
295 LLVMValueRef cy = LLVMBuildLoad(gallivm->builder, outputs[cv][1], "");
296 LLVMValueRef cz = LLVMBuildLoad(gallivm->builder, outputs[cv][2], "");
297 LLVMValueRef cw = LLVMBuildLoad(gallivm->builder, outputs[cv][3], "");
303 unsigned cv = 1 + locate_linkage(TGSI_SEMANTIC_CLIPDIST, val < 4 ? 0 : 1, local
306 LLVMValueRef dist = LLVMBuildLoad(gallivm->builder, outputs[cv][val], "");
309 LLVMValueRef dist = LLVMBuildLoad(gallivm->builder, outputs[cv][va
[all...]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
H A DSQLiteOpenHelperTest.java144 ContentValues cv = new ContentValues();
145 cv.put("testVal", i);
146 db.insert(table, null, cv);
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
H A DModifiedSystemClassRuntime.java162 createDataField(cv, accessFieldName);
/external/libvncserver/test/
H A Dtjunittest.c123 #define checkval(v, cv) { \
124 if(v<cv-1 || v>cv+1) { \
126 #v, row, col, cv, v); \
/external/python/cpython2/Objects/
H A Dcomplexobject.c322 Py_complex cv; local
333 cv.real = -1.;
334 cv.imag = 0.;
343 return cv;
345 cv = ((PyComplexObject *)newop)->cval;
347 return cv;
350 return cv;
356 cv.real = PyFloat_AsDouble(op);
357 return cv;

Completed in 1678 milliseconds

1234567891011