Home
last modified time | relevance | path

Searched refs:__obj (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/include/__stop_token/
H A Dintrusive_shared_ptr.h110 _LIBCPP_HIDE_FROM_ABI static void __increment_ref_count(_Tp& __obj) { in __increment_ref_count()
111 __get_atomic_ref_count(__obj).fetch_add(1, std::memory_order_relaxed); in __increment_ref_count()
114 _LIBCPP_HIDE_FROM_ABI static void __decrement_ref_count(_Tp& __obj) { in __decrement_ref_count()
115 if (__get_atomic_ref_count(__obj).fetch_sub(1, std::memory_order_acq_rel) == 1) { in __decrement_ref_count()
116 delete &__obj; in __decrement_ref_count() local
120 _LIBCPP_HIDE_FROM_ABI static decltype(auto) __get_atomic_ref_count(_Tp& __obj) { in decltype()
121 using __ret_type = decltype(__intrusive_shared_ptr_traits<_Tp>::__get_atomic_ref_count(__obj)); in decltype()
124 return __intrusive_shared_ptr_traits<_Tp>::__get_atomic_ref_count(__obj); in decltype()
/freebsd-14.2/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_texture_intrinsics.h467 __obj, __x, __y, __comp);
470 __obj, __x, __y, __comp);
473 __obj, __x, __y, __comp);
476 __obj, __x, __y, __comp);
489 __obj, __x, __y, __comp);
492 __obj, __x, __y, __comp);
495 __obj, __x, __y, __comp);
498 __obj, __x, __y, __comp);
511 __obj, __x, __y, __ir, __comp);
676 cudaTextureObject_t __obj;
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/include/__utility/
H A Dexchange.h29 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _T1 exchange(_T1& __obj, _T2&& __new_val… in exchange() argument
31 _T1 __old_value = std::move(__obj); in exchange()
32 __obj = std::forward<_T2>(__new_value); in exchange()
/freebsd-14.2/share/mk/
H A Dbsd.dep.mk263 .for __obj in ${DEPENDOBJS:O:u}
267 .if ${__obj:M*/*}
269 _meta_obj= ${.OBJDIR:C,/,_,g}_${__obj:C,/,_,g}.meta
271 _meta_obj= ${__obj:C,/,_,g}.meta
274 _meta_obj= ${__obj}.meta
276 _dep_obj= ${DEPENDFILE}.${__obj:${DEPEND_FILTER}}
290 .if !target(${__obj})
291 ${__obj}: ${OBJS_DEPEND_GUESS}
293 ${__obj}: ${OBJS_DEPEND_GUESS.${__obj}}
H A Dbsd.clang-analyze.mk80 .for __obj in ${CLANG_ANALYZE_OBJS}
81 ${__obj}: ${OBJS_DEPEND_GUESS}
82 ${__obj}: ${OBJS_DEPEND_GUESS.${__obj}}
/freebsd-14.2/sys/conf/
H A Dkern.post.mk323 .for __obj in ${DEPENDOBJS:O:u}
325 _depfile= ${.OBJDIR}/${__obj}.meta
327 _depfile= ${.OBJDIR}/.depend.${__obj}
330 .if ${SYSTEM_OBJS:M${__obj}}
331 ${__obj}: ${OBJS_DEPEND_GUESS}
333 ${__obj}: ${OBJS_DEPEND_GUESS.${__obj}}
340 .if ${SYSTEM_OBJS:M${__obj}}
341 ${__obj}: ${OBJS_DEPEND_GUESS:N*.h}
343 ${__obj}: ${OBJS_DEPEND_GUESS.${__obj}}
/freebsd-14.2/contrib/llvm-project/libcxx/include/__format/
H A Dbuffer.h67 _LIBCPP_HIDE_FROM_ABI explicit __output_buffer(_CharT* __ptr, size_t __capacity, _Tp* __obj) in __output_buffer() argument
71 __obj_(__obj) {}