HomeSort by relevance Sort by last modified time
    Searched refs:CV_XADD (Results 1 - 18 of 18) sorted by null

  /external/opencv3/modules/core/src/
stl.cpp 65 if(data && 1 == CV_XADD(data-1, -1))
parallel_pthreads.cpp 330 unsigned int m_current_pos = CV_XADD(&m_parent->m_task_position, 1);
341 m_current_pos = CV_XADD(&m_parent->m_task_position, 1);
472 unsigned int comp = CV_XADD(&m_num_of_completed_tasks, 1);
command_line_parser.cpp 242 if (CV_XADD(&impl->refcount, -1) == 1)
249 CV_XADD(&impl->refcount, 1);
256 if(CV_XADD(&impl->refcount, -1) == 1)
259 CV_XADD(&impl->refcount, 1);
cuda_host_mem.cpp 289 if (refcount && CV_XADD(refcount, -1) == 1)
system.cpp 898 if( CV_XADD(&impl->refcount, -1) == 1 )
906 CV_XADD(&impl->refcount, 1);
911 CV_XADD(&m.impl->refcount, 1);
912 if( CV_XADD(&impl->refcount, -1) == 1 )
    [all...]
cuda_gpu_mat.cpp 137 CV_XADD(refcount, 1);
155 CV_XADD(refcount, 1);
umatrix.cpp 365 CV_XADD(&(u->urefcount), 1);
586 CV_XADD(&hdr.u->refcount, 1);
ocl.cpp     [all...]
dxt.cpp     [all...]
matrix.cpp 497 CV_XADD(&u->refcount, 1);
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
cvdef.h 193 # define CV_XADD(addr, delta) (int)_InterlockedExchangeAdd(const_cast<void*>(reinterpret_cast<volatile void*>(addr)), delta)
197 # define CV_XADD(addr, delta) __c11_atomic_fetch_add((_Atomic(int)*)(addr), delta, __ATOMIC_ACQ_REL)
199 # define CV_XADD(addr, delta) __atomic_fetch_add((_Atomic(int)*)(addr), delta, 4)
204 # define CV_XADD(addr, delta) (int)__atomic_fetch_add((unsigned*)(addr), (unsigned)(delta), __ATOMIC_ACQ_REL)
206 # define CV_XADD(addr, delta) (int)__sync_fetch_and_add((unsigned*)(addr), (unsigned)(delta))
211 # define CV_XADD(addr, delta) (int)_InterlockedExchangeAdd((long volatile*)addr, delta)
213 CV_INLINE CV_XADD(int* addr, int delta) { int tmp = *addr; *addr += delta; return tmp; }
ptr.inl.hpp 67 CV_XADD(&refCount, 1);
72 if (CV_XADD(&refCount, -1) == 1) deleteSelf();
cuda.inl.hpp 105 CV_XADD(refcount, 1);
395 CV_XADD(refcount, 1);
cvstd.hpp 592 CV_XADD(((int*)cstr_)-1, 1);
604 CV_XADD(((int*)str.cstr_)-1, 1);
669 if (str.cstr_) CV_XADD(((int*)str.cstr_)-1, 1);
mat.inl.hpp 381 CV_XADD(&u->refcount, 1);
565 CV_XADD(&m.u->refcount, 1);
661 CV_XADD(&u->refcount, 1);
666 if( u && CV_XADD(&u->refcount, -1) == 1 )
    [all...]
  /external/opencv3/modules/viz/src/
viz3d.cpp 53 CV_XADD(&impl_->ref_counter, 1);
63 CV_XADD(&impl_->ref_counter, 1);
89 if (impl_ && CV_XADD(&impl_->ref_counter, -1) == 1)
  /external/opencv3/modules/core/src/cuda/
gpu_mat.cu 160 if (refcount && CV_XADD(refcount, -1) == 1)
  /external/opencv3/modules/imgproc/src/
histogram.cpp     [all...]

Completed in 839 milliseconds