Home
last modified time | relevance | path

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

/haiku/headers/cpp/
H A Dpthread_alloc52 typedef _Pthread_alloc_obj __obj;
63 memset((void *)__free_list, 0, _S_NFREELISTS * sizeof(__obj *));
78 typedef _Pthread_alloc_obj __obj;
125 __obj * volatile * __my_free_list;
126 __obj * __RESTRICT __result;
150 __obj *__q = (__obj *)__p;
151 __obj * volatile * __my_free_list;
252 __obj * volatile * __my_free_list =
255 ((__obj *)_S_start_free) -> __free_list_link = *__my_free_list;
256 *__my_free_list = (__obj *)_S_start_free;
[all …]
H A Dstl_hashtable.h354 pair<iterator, bool> insert_unique(const value_type& __obj)
357 return insert_unique_noresize(__obj);
360 iterator insert_equal(const value_type& __obj)
363 return insert_equal_noresize(__obj);
366 pair<iterator, bool> insert_unique_noresize(const value_type& __obj);
367 iterator insert_equal_noresize(const value_type& __obj);
456 reference find_or_insert(const value_type& __obj);
524 size_type _M_bkt_num(const value_type& __obj) const
526 return _M_bkt_num_key(_M_get_key(__obj));
534 size_type _M_bkt_num(const value_type& __obj, size_t __n) const
[all …]
H A Dstl_hash_map.h160 pair<iterator,bool> insert(const value_type& __obj) in insert() argument
161 { return _M_ht.insert_unique(__obj); } in insert()
173 pair<iterator,bool> insert_noresize(const value_type& __obj) in insert_noresize() argument
174 { return _M_ht.insert_unique_noresize(__obj); } in insert_noresize()
344 iterator insert(const value_type& __obj) in insert() argument
345 { return _M_ht.insert_equal(__obj); } in insert()
357 iterator insert_noresize(const value_type& __obj) in insert_noresize() argument
358 { return _M_ht.insert_equal_noresize(__obj); } in insert_noresize()
H A Dstl_hash_set.h156 pair<iterator, bool> insert(const value_type& __obj) in insert() argument
158 pair<typename _Ht::iterator, bool> __p = _M_ht.insert_unique(__obj); in insert()
172 pair<iterator, bool> insert_noresize(const value_type& __obj) in insert_noresize() argument
175 _M_ht.insert_unique_noresize(__obj); in insert_noresize()
335 iterator insert(const value_type& __obj) in insert() argument
336 { return _M_ht.insert_equal(__obj); } in insert()
348 iterator insert_noresize(const value_type& __obj) in insert_noresize() argument
349 { return _M_ht.insert_equal_noresize(__obj); } in insert_noresize()
/haiku/src/system/libroot/posix/glibc/extensions/
H A Dobstack.h495 void *__obj = (OBJ); \
496 if (__obj > (void *)__o->chunk && __obj < (void *)__o->chunk_limit) \
497 __o->next_free = __o->object_base = (char *)__obj; \
498 else (obstack_free) (__o, __obj); })