| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| Mutex.h | 30 unsigned acquired = 0; member in class:llvm::sys::SmartMutex 41 ++acquired; 54 assert(acquired && "Lock not acquired before release!"); 55 --acquired;
|
| /src/sys/external/bsd/drm2/dist/drm/ |
| drm_agpsupport.c | 62 * Verifies the AGP device has been initialized and acquired and fills in the 69 if (!dev->agp || !dev->agp->acquired) 118 * Verifies the AGP device hasn't been acquired before and calls 125 if (dev->agp->acquired) 130 dev->agp->acquired = 1; 144 * Verifies the AGP device hasn't been acquired before and calls 159 * Verifies the AGP device has been acquired and calls \c agp_backend_release. 163 if (!dev->agp || !dev->agp->acquired) 166 dev->agp->acquired = 0; 180 * \param dev DRM device that has previously acquired AGP [all...] |
| /src/external/bsd/zstd/dist/contrib/pzstd/utils/test/ |
| BufferTest.cpp | 45 Buffer acquired(buf, MutableByteRange(buf.get(), buf.get() + 10)); 47 Buffer moved(std::move(acquired));
|
| /src/sys/external/bsd/drm/dist/bsd-core/ |
| drm_agpsupport.c | 116 if (!dev->agp || !dev->agp->acquired) 159 if (!dev->agp || dev->agp->acquired) 166 dev->agp->acquired = 1; 179 if (!dev->agp || !dev->agp->acquired) 182 dev->agp->acquired = 0; 189 if (!dev->agp || !dev->agp->acquired) 216 if (!dev->agp || !dev->agp->acquired) 284 if (!dev->agp || !dev->agp->acquired) 322 if (!dev->agp || !dev->agp->acquired) 361 if (!dev->agp || !dev->agp->acquired) [all...] |
| drm_drv.c | 556 if (dev->agp->acquired) 559 dev->agp->acquired = 0;
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/pci/ |
| nouveau_nvkm_subdev_pci_agp.c | 51 if (pci->agp.acquired) { 53 pci->agp.acquired = false; 98 pci->agp.acquired = true;
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/ |
| nouveau_nvkm_engine_disp_outp.c | 97 OUTP_TRACE(outp, "release %02x &= %02x %p", outp->acquired, ~user, ior); 99 outp->acquired &= ~user; 100 if (!outp->acquired) { 115 outp->acquired |= user; 126 OUTP_TRACE(outp, "acquire %02x |= %02x %p", outp->acquired, user, ior); 128 outp->acquired |= user;
|
| outp.h | 26 u8 acquired:2; member in struct:nvkm_outp
|
| /src/external/bsd/dhcpcd/dist/src/ |
| ipv6nd.h | 47 struct timespec acquired; member in struct:routeinfo 61 struct timespec acquired; member in struct:ra
|
| common.c | 220 lifetime_left(uint32_t lifetime, const struct timespec *acquired, struct timespec *now) 235 elapsed = (uint32_t)eloop_timespec_diff(now, acquired, NULL);
|
| ipv6nd.c | 1106 clock_gettime(CLOCK_MONOTONIC, &rap->acquired); 1239 ia->created = ia->acquired = rap->acquired; 1282 &rap->acquired, &ia->acquired, 1307 ia->acquired = rap->acquired; 1330 &ia->acquired) == NULL) 1408 rinfo->acquired = rap->acquired; [all...] |
| ipv6.c | 753 /* Adjust plftime and vltime based on acquired time */ 762 } else if (timespecisset(&ia->acquired)) { 764 &ia->acquired, now); 766 &ia->acquired, now); 1251 ia->acquired = ia->created; 1986 ipv6_addaddr(ia1, &ia1->acquired); 2003 ia->created = ia->acquired = now ? *now : ia0->acquired; 2042 (uint32_t)(ia->acquired.tv_sec - 2043 ap->acquired.tv_sec [all...] |
| dhcp6.h | 205 struct timespec acquired; member in struct:dhcp6_state
|
| dhcp6.c | 2253 uint8_t *d, size_t l, const struct timespec *acquired) 2301 a->created = *acquired; 2309 a->acquired = *acquired; 2327 uint8_t *d, size_t l, const struct timespec *acquired) 2385 a->created = *acquired; 2398 a->acquired = *acquired; 2455 const char *sfrom, const struct timespec *acquired) 2562 acquired) == 0 [all...] |
| ipv6.h | 171 struct timespec acquired; member in struct:ipv6_addr
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/ |
| pci.h | 32 bool acquired; member in struct:nvkm_pci::__anon5208
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_clock.cpp | 73 // the remaining bits hold "acquired" flag (the actual value is thread's 75 // if acquired == thr->reused_, then the respective thread has already 76 // acquired this clock (except possibly for dirty elements). 78 // need to acquire regardless of "acquired" flag value; 139 bool acquired = false; 146 acquired = true; 151 // Check if we've already acquired src after the last release operation on src 160 acquired = true; 165 // Remember that this thread has acquired this clock. 170 if (acquired) { 193 bool acquired = false; local 247 bool acquired = IsAlreadyAcquired(dst); local [all...] |
| /src/external/bsd/dhcpcd/dist/hooks/ |
| 20-resolv.conf | 121 eval acquired=\$nd${i}_acquired 122 [ -z "$acquired" ] && break 125 offset=$(($now - $acquired))
|
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| tsan_clock.cc | 66 // the remaining bits hold "acquired" flag (the actual value is thread's 69 // acquired this clock (except possibly for dirty elements). 71 // need to acquire regardless of "acquired" flag value; 142 bool acquired = false; local 149 acquired = true; 154 // Check if we've already acquired src after the last release operation on src 164 acquired = true; 169 // Remember that this thread has acquired this clock. 174 if (acquired) { 197 // Check if we had not acquired anything from other thread 212 bool acquired = IsAlreadyAcquired(dst); local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/ |
| resource.h | 178 bool acquired);
|
| /src/sys/external/bsd/drm2/dist/include/drm/ |
| drm_agpsupport.h | 62 int acquired; member in struct:drm_agp_head
|
| /src/external/bsd/nsd/dist/ |
| xfrd.h | 167 * And the time the soa was acquired (start time for timeouts). 238 time_t acquired; /* time xfr was acquired */ member in struct:xfrd_xfr 433 /* handle incoming soa information (NSD is running it, time acquired=guess). 434 Pass soa=NULL,acquired=now if NSD has nothing loaded for the zone 437 time_t acquired);
|
| xfrd.c | 430 if (xfr->acquired == 0) 707 time_t acquired = 0; local 826 that were transfered, i.e. acquired != 0. soainfo_ok is more 832 if(!xfr->acquired) { 839 assert(xfr->acquired <= before); 846 /* updates are applied in-order, acquired time of 848 if(!acquired) { 849 acquired = xfr->acquired; 913 xfrd_handle_incoming_soa(zone, soa_ptr, acquired); [all...] |
| /src/sys/external/bsd/drm2/dist/drm/radeon/ |
| radeon_agp.c | 290 if (rdev->ddev->agp && rdev->ddev->agp->acquired) {
|
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/core/ |
| amdgpu_dc_resource.c | 1204 /* Re-use pipe already acquired for this stream if available*/ 1611 bool acquired) 1617 res_ctx->is_stream_enc_acquired[i] = acquired; 1626 bool acquired) 1631 res_ctx->is_audio_acquired[i] = acquired;
|