Searched refs:Avail (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenCLOptions.h27 unsigned Avail; // Option starts to be available in this OpenCL version member in struct:clang::OpenCLOptions::Info
31 :Supported(S), Enabled(E), Avail(A), Core(C){}
49 return I.Supported && I.Avail <= CLVer;
58 return I.Supported && I.Avail <= CLVer && I.Core != ~0U && CLVer >= I.Core;
67 return I.Supported && I.Avail <= CLVer && (I.Core == ~0U || CLVer < I.Core);
101 OptMap[#Ext].Avail = AvailVer; \
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DExecutionDomainFix.h118 SmallVector<DomainValue *, 16> Avail;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DExecutionDomainFix.cpp26 DomainValue *dv = Avail.empty() ? new (Allocator.Allocate()) DomainValue
27 : Avail.pop_back_val();
47 Avail.push_back(DV);
468 Avail.clear();
H A DMachineCopyPropagation.cpp92 bool Avail; member in struct:__anon3505::CopyTracker::CopyInfo
107 CI->second.Avail = false;
183 if (MustBeAvailable && !CI->second.Avail)
/freebsd-13-stable/contrib/netbsd-tests/bin/df/
H A Dt_df.sh36 Filesystem 1K-blocks Used Avail %Cap Mounted on
94 Filesystem Size Used Avail %Cap Mounted on
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaAvailability.cpp30 if (const auto *Avail = dyn_cast<AvailabilityAttr>(A)) {
36 StringRef ActualPlatform = Avail->getPlatform()->getName();
48 return Avail;
H A DSemaDeclAttr.cpp2409 auto *Avail = ::new (Context) AvailabilityAttr( local
2412 Avail->setImplicit(Implicit);
2413 return Avail;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc161 ULARGE_INTEGER Avail, Total, Free;
162 if (!::GetDiskFreeSpaceExA(Path.str().c_str(), &Avail, &Total, &Free))
169 (static_cast<uint64_t>(Avail.HighPart) << 32) + Avail.LowPart;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc64.cpp430 uint32_t Avail() const { return m_avail; } function in class:__anon2811::ReturnValueExtractor::Register
852 uint32_t n = std::min(reg.Avail(), size);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonVLIWPacketizer.cpp297 bool Avail = ResourceTracker->canReserveResources(*ExtMI); local
298 if (Reserve && Avail)
301 return Avail;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp3978 Record.push_back(V.Avail);
H A DASTReader.cpp3605 Opt.Avail = Record[I++];

Completed in 303 milliseconds