Home
last modified time | relevance | path

Searched refs:__from (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__filesystem/
H A Doperations.h39 __copy_file(const path& __from, const path& __to, copy_options __opt, error_code* __ec = nullptr);
43 __copy(const path& __from, const path& __to, copy_options __opt, error_code* __ec = nullptr);
66 _LIBCPP_EXPORTED_FROM_ABI void __rename(const path& __from, const path& __to, error_code* __ec = nu…
74 inline _LIBCPP_HIDE_FROM_ABI bool copy_file(const path& __from, const path& __to) { in copy_file() argument
75 return __copy_file(__from, __to, copy_options::none); in copy_file()
77 inline _LIBCPP_HIDE_FROM_ABI bool copy_file(const path& __from, const path& __to, error_code& __ec)… in copy_file() argument
78 return __copy_file(__from, __to, copy_options::none, &__ec); in copy_file()
80 inline _LIBCPP_HIDE_FROM_ABI bool copy_file(const path& __from, const path& __to, copy_options __op… in copy_file() argument
81 return __copy_file(__from, __to, __opt); in copy_file()
84 copy_file(const path& __from, const path& __to, copy_options __opt, error_code& __ec) { in copy_file() argument
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__bit/
H A Dbit_cast.h25 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI constexpr _ToType __bit_cast(const _FromType& __from) noexc… in __bit_cast() argument
26 return __builtin_bit_cast(_ToType, __from); in __bit_cast()
36 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr _ToType bit_cast(const _FromType& __from) noexcept { in bit_cast() argument
37 return __builtin_bit_cast(_ToType, __from); in bit_cast()
/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Dvoidify.h23 _LIBCPP_ALWAYS_INLINE _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void* __voidify(_Tp& __from) { in __voidify() argument
25 return const_cast<void*>(static_cast<const volatile void*>(std::addressof(__from))); in __voidify()
/freebsd/contrib/llvm-project/libcxx/src/experimental/include/tzdb/
H A Dtypes_private.h75 year __from; member
/freebsd/contrib/llvm-project/libcxx/src/experimental/
H A Dtzdb.cpp542 __rule.__from = chrono::__parse_year(__input); in __parse_rule()
544 __rule.__to = chrono::__parse_to(__input, __rule.__from); in __parse_rule()
H A Dtime_zone.cpp303 return chrono::__from_to_sys_seconds(__stdoff, __rule, __rule.__from); in __from_to_sys_seconds()
438 for (year __y = __it->__from; __y <= __it->__to; ++__y) { in __next_rule()
/freebsd/contrib/llvm-project/libcxx/include/__atomic/
H A Dcxx_atomic_impl.h40 volatile const char* __from = reinterpret_cast<volatile const char*>(std::addressof(__val)); in __cxx_atomic_assign_volatile() local
42 *__to++ = *__from++; in __cxx_atomic_assign_volatile()
/freebsd/contrib/llvm-project/libcxx/include/
H A Ddeque1192 _LIBCPP_HIDE_FROM_ABI void __append_with_size(_InputIterator __from, size_type __n);