Searched refs:acquired (Results 1 - 14 of 14) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMutex.h30 unsigned acquired = 0; member in class:llvm::sys::SmartMutex
41 ++acquired;
54 assert(acquired && "Lock not acquired before release!");
55 --acquired;
/freebsd-11-stable/sys/dev/drm/
H A Ddrm_agpsupport.c77 if (!dev->agp || !dev->agp->acquired)
120 if (!dev->agp || dev->agp->acquired)
127 dev->agp->acquired = 1;
140 if (!dev->agp || !dev->agp->acquired)
143 dev->agp->acquired = 0;
150 if (!dev->agp || !dev->agp->acquired)
177 if (!dev->agp || !dev->agp->acquired)
245 if (!dev->agp || !dev->agp->acquired)
283 if (!dev->agp || !dev->agp->acquired)
322 if (!dev->agp || !dev->agp->acquired)
[all...]
H A Ddrm_drv.c381 if (dev->agp->acquired)
384 dev->agp->acquired = 0;
H A Dmga_dma.c984 if ((dev->agp != NULL) && dev->agp->acquired) {
H A DdrmP.h470 int acquired; member in struct:drm_agp_head
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_agpsupport.c50 * Verifies the AGP device has been initialized and acquired and fills in the
57 if (!dev->agp || !dev->agp->acquired)
96 * Verifies the AGP device hasn't been acquired before and calls
105 if (dev->agp->acquired)
110 dev->agp->acquired = 1;
125 * Verifies the AGP device hasn't been acquired before and calls
140 * Verifies the AGP device has been acquired and calls \c agp_backend_release.
144 if (!dev->agp || !dev->agp->acquired)
147 dev->agp->acquired = 0;
161 * \param dev DRM device that has previously acquired AG
[all...]
H A Ddrm_drv.c218 if (dev->agp->acquired)
221 dev->agp->acquired = 0;
H A DdrmP.h490 int acquired; /**< whether the AGP device has been acquired */ member in struct:drm_agp_head
/freebsd-11-stable/crypto/openssl/engines/
H A De_cswift.c504 int to_return, acquired; local
508 acquired = 0;
514 acquired = 1;
573 if (acquired)
615 int acquired = 0; local
627 acquired = 1;
724 if (acquired)
808 int acquired = 0; local
816 acquired = 1;
886 if (acquired)
910 int acquired = 0; local
1015 int acquired = 0; local
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_clock.cpp65 // the remaining bits hold "acquired" flag (the actual value is thread's
68 // acquired this clock (except possibly for dirty elements).
70 // need to acquire regardless of "acquired" flag value;
141 bool acquired = false; local
148 acquired = true;
153 // Check if we've already acquired src after the last release operation on src
163 acquired = true;
168 // Remember that this thread has acquired this clock.
173 if (acquired) {
196 // Check if we had not acquired anythin
211 bool acquired = IsAlreadyAcquired(dst); local
[all...]
/freebsd-11-stable/sys/dev/ismt/
H A Dismt.c198 int acquired, err; local
204 acquired = atomic_cmpset_ptr(
207 ISMT_DEBUG(dev, "SMB_REQUEST_BUS acquired=%d\n", acquired);
208 if (acquired)
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_agp.c280 if (rdev->ddev->agp && rdev->ddev->agp->acquired) {
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Decore_cxt.c185 * Protocol acquired CID lists
219 struct ecore_cid_acquired_map acquired[MAX_CONN_TYPES]; member in struct:ecore_cxt_mngr
521 return p_hwfn->p_cxt_mngr->acquired[type].start_cid;
1210 OSAL_FREE(p_hwfn->p_dev, p_mngr->acquired[type].cid_map);
1211 p_mngr->acquired[type].cid_map = OSAL_NULL;
1212 p_mngr->acquired[type].max_count = 0;
1213 p_mngr->acquired[type].start_cid = 0;
1261 p_map = &p_mngr->acquired[type];
1366 /* Allocate and initialize the acquired cids bitmaps */
1403 /* Reset acquired cid
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp2699 bool acquired = static_cast<std::recursive_mutex *>(Mutex)->try_lock(); local
2700 assert(acquired && "Concurrent access to ASTUnit!");

Completed in 173 milliseconds