Searched refs:__o (Results 1 - 7 of 7) sorted by relevance

/haiku/src/system/libroot/posix/glibc/extensions/
H A Dobstack.h375 ({ struct obstack *__o = (OBSTACK); \
376 (unsigned) (__o->next_free - __o->object_base); })
380 ({ struct obstack *__o = (OBSTACK); \
381 (unsigned) (__o->chunk_limit - __o->next_free); })
385 ({ struct obstack *__o = (OBSTACK); \
387 if (__o->chunk_limit - __o->next_free < __len) \
388 _obstack_newchunk (__o, __le
[all...]
/haiku/headers/cpp/std/
H A Dslice.h55 inline slice::slice (size_t __o, size_t __d, size_t __s) argument
56 : _M_off (__o), _M_sz (__d), _M_st (__s) {}
H A Dgslice.h83 gslice::gslice(size_t __o, const valarray<size_t>& __l, argument
85 : _M_index(new _Indexer(__o, __l, __s)) {}
H A Dbastring.h268 { size_type __o = p - ibegin (); local
270 return ibegin () + __o; }
272 { size_type __o = p - ibegin (); local
274 return ibegin () + __o; }
286 { size_type __o = p - begin(); local
287 replace (__o, 1, (size_type)0, (charT)0); selfish ();
288 return ibegin() + __o; }
290 { size_type __o = f - ibegin(); local
291 replace (__o, l-f, (size_type)0, (charT)0);selfish ();
292 return ibegin() + __o; }
[all...]
/haiku/src/libs/stdc++/legacy/
H A Dvalarray.cc21 void __gslice_to_index(size_t __o, const valarray<size_t>& __l, argument
29 __valarray_fill(&__i[0], __z, __o);
43 _Indexer::_Indexer(size_t __o, const valarray<size_t>& __l, argument
45 : _M_count(1), _M_start(__o), _M_size(__l), _M_stride(__s),
47 { __gslice_to_index(__o, __l, __s, _M_index); }
/haiku/headers/cpp/
H A Dropeimpl.h891 inline void _Rope_fill(ostream& __o, size_t __n) argument
893 char __f = __o.fill();
896 for (__i = 0; __i < __n; __i++) __o.put(__f);
906 ostream& operator<< (ostream& __o, const rope<_CharT, _Alloc>& __r) argument
908 size_t __w = __o.width();
909 bool __left = bool(__o.flags() & ios::left);
912 _Rope_insert_char_consumer<_CharT> __c(__o);
920 if (!__is_simple) __o.width(__w/__rope_len);
923 _Rope_fill(__o, __pad_len);
927 _Rope_fill(__o, __pad_le
[all...]
H A Dstl_rope.h2476 ostream& operator<< (ostream& __o, const rope<_CharT,_Alloc>& __r);

Completed in 61 milliseconds