Home
last modified time | relevance | path

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

/src/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()
/src/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_texture_intrinsics.h209 __device__ __rt __run<__dt>(cudaTextureObject_t __obj, __L(__args)) { \
211 asm(__asm_op : __L(__asm_outs) : "l"(__obj), __L(__asm_args)); \
249 __device__ static T __run(cudaTextureObject_t __obj, __L(__args)); \
259 __device__ static T __run(cudaTextureObject_t __obj, __L(__args)); \
271 __device__ static float4 __run(cudaTextureObject_t __obj, __L(__args)); \
462 __device__ static __T __run(cudaTextureObject_t __obj, float __x, float __y,
467 __obj, __x, __y, __comp);
470 __obj, __x, __y, __comp);
473 __obj, __x, __y, __comp);
476 __obj, __x, __y, __comp);
[all …]
/src/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}}
/src/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()
/src/contrib/llvm-project/libcxx/include/__atomic/
H A Datomic_ref.h225 _LIBCPP_HIDE_FROM_ABI __atomic_ref_base(_Tp& __obj) : __ptr_(std::addressof(__obj)) {}
244 _LIBCPP_HIDE_FROM_ABI explicit atomic_ref(_Tp& __obj) : __base(__obj) {
246 reinterpret_cast<uintptr_t>(std::addressof(__obj)) % __base::required_alignment == 0,
264 _LIBCPP_HIDE_FROM_ABI explicit atomic_ref(_Tp& __obj) : __base(__obj) {
266 reinterpret_cast<uintptr_t>(std::addressof(__obj)) % __base::required_alignment == 0,
310 _LIBCPP_HIDE_FROM_ABI explicit atomic_ref(_Tp& __obj) : __base(__obj) {
312 reinterpret_cast<uintptr_t>(std::addressof(__obj)) % __base::required_alignment == 0,
/src/sys/conf/
H A Dkern.post.mk336 .for __obj in ${DEPENDOBJS:O:u}
338 _depfile= ${.OBJDIR}/${__obj}.meta
340 _depfile= ${.OBJDIR}/.depend.${__obj}
343 .if ${SYSTEM_OBJS:M${__obj}}
344 ${__obj}: ${OBJS_DEPEND_GUESS}
346 ${__obj}: ${OBJS_DEPEND_GUESS.${__obj}}
353 .if ${SYSTEM_OBJS:M${__obj}}
354 ${__obj}: ${OBJS_DEPEND_GUESS:N*.h}
356 ${__obj}: ${OBJS_DEPEND_GUESS.${__obj}}
/src/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) {}