Home
last modified time | relevance | path

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

/openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dpthread_allocimpl.h90 typedef _Pthread_alloc_obj __obj; typedef
101 memset((void *)__free_list, 0, (size_t) _S_NFREELISTS * sizeof(__obj *)); in _Pthread_alloc_per_thread_state()
116 typedef _Pthread_alloc_obj __obj; typedef
164 __obj * volatile * __my_free_list; in allocate()
165 __obj * __RESTRICT __result; in allocate()
189 __obj *__q = (__obj *)__p; in deallocate()
190 __obj * volatile * __my_free_list; in deallocate()
300 __obj * volatile * __my_free_list = in _S_chunk_alloc()
303 ((__obj *)_S_start_free) -> __free_list_link = *__my_free_list; in _S_chunk_alloc()
304 *__my_free_list = (__obj *)_S_start_free; in _S_chunk_alloc()
[all …]
H A Dstream_iterator.h62 istream_iterator(const istream_iterator& __obj) in istream_iterator() argument
63 : _M_stream(__obj._M_stream), _M_value(__obj._M_value), in istream_iterator()
64 _M_ok(__obj._M_ok) in istream_iterator()
135 ostream_iterator(const ostream_iterator& __obj) in ostream_iterator() argument
136 : _M_stream(__obj._M_stream), _M_string(__obj._M_string) { } in ostream_iterator()
/openbsd-src/gnu/llvm/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 …]
/openbsd-src/gnu/gcc/libstdc++-v3/include/bits/
H A Dstream_iterator.h70 istream_iterator(const istream_iterator& __obj) in _GLIBCXX_BEGIN_NAMESPACE()
71 : _M_stream(__obj._M_stream), _M_value(__obj._M_value), in _GLIBCXX_BEGIN_NAMESPACE()
72 _M_ok(__obj._M_ok) in _GLIBCXX_BEGIN_NAMESPACE()
185 ostream_iterator(const ostream_iterator& __obj) in ostream_iterator() argument
186 : _M_stream(__obj._M_stream), _M_string(__obj._M_string) { } in ostream_iterator()
/openbsd-src/gnu/llvm/libcxx/include/__utility/
H A Dexchange.h27 _T1 exchange(_T1& __obj, _T2&& __new_value) in exchange() argument
30 _T1 __old_value = _VSTD::move(__obj); in exchange()
31 __obj = _VSTD::forward<_T2>(__new_value); in exchange()
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/locale/ieee_1003.1-2001/
H A Dcodecvt_specializations.h95 __enc_traits(const __enc_traits& __obj): _M_in_desc(0), _M_out_desc(0) in __enc_traits() argument
97 strncpy(_M_int_enc, __obj._M_int_enc, _S_max_size); in __enc_traits()
98 strncpy(_M_ext_enc, __obj._M_ext_enc, _S_max_size); in __enc_traits()
99 _M_ext_bom = __obj._M_ext_bom; in __enc_traits()
100 _M_int_bom = __obj._M_int_bom; in __enc_traits()
105 operator=(const __enc_traits& __obj)
107 strncpy(_M_int_enc, __obj._M_int_enc, _S_max_size);
108 strncpy(_M_ext_enc, __obj._M_ext_enc, _S_max_size);
111 _M_ext_bom = __obj._M_ext_bom;
112 _M_int_bom = __obj._M_int_bom;
/openbsd-src/gnu/gcc/libstdc++-v3/include/ext/
H A Dcodecvt_specializations.h114 encoding_state(const encoding_state& __obj) : _M_in_desc(0), _M_out_desc(0) in _GLIBCXX_BEGIN_NAMESPACE()
115 { construct(__obj); } in _GLIBCXX_BEGIN_NAMESPACE()
119 operator=(const encoding_state& __obj) in _GLIBCXX_BEGIN_NAMESPACE()
121 construct(__obj); in _GLIBCXX_BEGIN_NAMESPACE()
188 construct(const encoding_state& __obj) in _GLIBCXX_BEGIN_NAMESPACE()
191 _M_int_enc = __obj._M_int_enc; in _GLIBCXX_BEGIN_NAMESPACE()
192 _M_ext_enc = __obj._M_ext_enc; in _GLIBCXX_BEGIN_NAMESPACE()
193 _M_ext_bom = __obj._M_ext_bom; in _GLIBCXX_BEGIN_NAMESPACE()
194 _M_int_bom = __obj._M_int_bom; in _GLIBCXX_BEGIN_NAMESPACE()
195 _M_bytes = __obj._M_bytes; in _GLIBCXX_BEGIN_NAMESPACE()
H A Dhashtable.h435 insert_unique(const value_type& __obj)
438 return insert_unique_noresize(__obj);
442 insert_equal(const value_type& __obj)
445 return insert_equal_noresize(__obj);
449 insert_unique_noresize(const value_type& __obj);
452 insert_equal_noresize(const value_type& __obj);
505 find_or_insert(const value_type& __obj);
590 _M_bkt_num(const value_type& __obj) const
591 { return _M_bkt_num_key(_M_get_key(__obj)); }
598 _M_bkt_num(const value_type& __obj, size_t __n) const
[all …]
H A Dhash_set195 insert(const value_type& __obj)
197 pair<typename _Ht::iterator, bool> __p = _M_ht.insert_unique(__obj);
207 insert_noresize(const value_type& __obj)
210 = _M_ht.insert_unique_noresize(__obj);
400 insert(const value_type& __obj)
401 { return _M_ht.insert_equal(__obj); }
409 insert_noresize(const value_type& __obj)
410 { return _M_ht.insert_equal_noresize(__obj); }
H A Dhash_map201 insert(const value_type& __obj)
202 { return _M_ht.insert_unique(__obj); }
210 insert_noresize(const value_type& __obj)
211 { return _M_ht.insert_unique_noresize(__obj); }
423 insert(const value_type& __obj)
424 { return _M_ht.insert_equal(__obj); }
432 insert_noresize(const value_type& __obj)
433 { return _M_ht.insert_equal_noresize(__obj); }
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/ext/
H A Dstl_hashtable.h376 pair<iterator, bool> insert_unique(const value_type& __obj)
379 return insert_unique_noresize(__obj);
382 iterator insert_equal(const value_type& __obj)
385 return insert_equal_noresize(__obj);
388 pair<iterator, bool> insert_unique_noresize(const value_type& __obj);
389 iterator insert_equal_noresize(const value_type& __obj);
439 reference find_or_insert(const value_type& __obj);
507 size_type _M_bkt_num(const value_type& __obj) const
509 return _M_bkt_num_key(_M_get_key(__obj));
517 size_type _M_bkt_num(const value_type& __obj, size_t __n) const
[all …]
H A Dhash_set173 pair<iterator, bool> insert(const value_type& __obj)
175 pair<typename _Ht::iterator, bool> __p = _M_ht.insert_unique(__obj);
181 pair<iterator, bool> insert_noresize(const value_type& __obj)
184 _M_ht.insert_unique_noresize(__obj);
329 iterator insert(const value_type& __obj)
330 { return _M_ht.insert_equal(__obj); }
334 iterator insert_noresize(const value_type& __obj)
335 { return _M_ht.insert_equal_noresize(__obj); }
H A Dhash_map170 pair<iterator,bool> insert(const value_type& __obj)
171 { return _M_ht.insert_unique(__obj); }
175 pair<iterator,bool> insert_noresize(const value_type& __obj)
176 { return _M_ht.insert_unique_noresize(__obj); }
332 iterator insert(const value_type& __obj)
333 { return _M_ht.insert_equal(__obj); }
337 iterator insert_noresize(const value_type& __obj)
338 { return _M_ht.insert_equal_noresize(__obj); }
/openbsd-src/gnu/gcc/libstdc++-v3/include/debug/
H A Dhash_multiset.h133 insert(const value_type& __obj) in insert() argument
134 { return iterator(_Base::insert(__obj), this); } in insert()
146 insert_noresize(const value_type& __obj) in insert_noresize() argument
147 { return iterator(_Base::insert_noresize(__obj), this); } in insert_noresize()
H A Dhash_set.h131 insert(const value_type& __obj) in insert() argument
134 _Base::insert(__obj); in insert()
155 insert_noresize(const value_type& __obj) in insert_noresize() argument
158 _Base::insert_noresize(__obj); in insert_noresize()
H A Dhash_multimap.h139 insert(const value_type& __obj) in insert() argument
140 { return iterator(_Base::insert(__obj), this); } in insert()
151 insert_noresize(const value_type& __obj) in insert_noresize() argument
152 { return iterator(_Base::insert_noresize(__obj), this); } in insert_noresize()
H A Dhash_map.h142 insert(const value_type& __obj) in insert() argument
144 std::pair<typename _Base::iterator, bool> __res = _Base::insert(__obj); in insert()
165 insert_noresize(const value_type& __obj) in insert_noresize() argument
168 _Base::insert_noresize(__obj); in insert_noresize()
/openbsd-src/gnu/gcc/include/
H A Dobstack.h440 void *__obj = (void *) (OBJ); \
441 if (__obj > (void *)__o->chunk && __obj < (void *)__o->chunk_limit) \
442 __o->next_free = __o->object_base = (char *) __obj; \
443 else (obstack_free) (__o, __obj); })
/openbsd-src/gnu/usr.bin/binutils-2.17/include/
H A Dobstack.h440 void *__obj = (void *) (OBJ); \
441 if (__obj > (void *)__o->chunk && __obj < (void *)__o->chunk_limit) \
442 __o->next_free = __o->object_base = (char *) __obj; \
443 else (obstack_free) (__o, __obj); })
/openbsd-src/gnu/lib/libiberty/include/
H A Dobstack.h440 void *__obj = (void *) (OBJ); \
441 if (__obj > (void *)__o->chunk && __obj < (void *)__o->chunk_limit) \
442 __o->next_free = __o->object_base = (char *) __obj; \
443 else (obstack_free) (__o, __obj); })
/openbsd-src/gnu/usr.bin/binutils/include/
H A Dobstack.h497 void *__obj = (OBJ); \
498 if (__obj > (void *)__o->chunk && __obj < (void *)__o->chunk_limit) \
499 __o->next_free = __o->object_base = __obj; \
500 else (obstack_free) (__o, __obj); })
/openbsd-src/gnu/lib/libstdc++/libstdc++/libsupc++/
H A Dcxxabi.h287 const void *__obj,
358 const void *__obj,
407 const void *__obj,
/openbsd-src/gnu/gcc/libstdc++-v3/libsupc++/
H A Dcxxabi.h392 __do_upcast(const __class_type_info* __dst, const void* __obj,
461 __do_upcast(const __class_type_info*__dst, const void*__obj,
506 __do_upcast(const __class_type_info* __dst, const void* __obj,
/openbsd-src/gnu/llvm/libcxx/include/__format/
H A Dbuffer.h60 _LIBCPP_HIDE_FROM_ABI explicit __output_buffer(_CharT* __ptr, size_t __capacity, _Tp* __obj) in __output_buffer() argument
64 __obj_(__obj) {}