Searched refs:__o (Results 1 – 7 of 7) sorted by relevance
/external/bison/lib/ |
D | obstack.h | 267 ({ struct obstack const *__o = (OBSTACK); \ 268 (unsigned) (__o->next_free - __o->object_base); }) 272 ({ struct obstack const *__o = (OBSTACK); \ 273 (unsigned) (__o->chunk_limit - __o->next_free); }) 277 ({ struct obstack *__o = (OBSTACK); \ 279 if (__o->chunk_limit - __o->next_free < __len) \ 280 _obstack_newchunk (__o, __len); \ 285 ({ struct obstack const *__o = (OBSTACK); \ 286 (__o->chunk->prev == 0 \ 287 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \ [all …]
|
/external/stlport/stlport/stl/ |
D | _ostreambuf_iterator.h | 59 inline ostreambuf_iterator(ostream_type& __o) _STLP_NOTHROW; 79 …f_iterator<_CharT, _Traits>::ostreambuf_iterator(basic_ostream<_CharT, _Traits>& __o) _STLP_NOTHROW in ostreambuf_iterator() argument 80 : _M_buf(_STLP_PRIV __get_ostreambuf(__o)), _M_ok(_M_buf != 0) {} in ostreambuf_iterator()
|
D | _rope.c | 845 inline void _Rope_fill(basic_ostream<_CharT, _Traits>& __o, streamsize __n) { in _Rope_fill() argument 846 char __f = __o.fill(); in _Rope_fill() 847 for (streamsize __i = 0; __i < __n; ++__i) __o.put(__f); in _Rope_fill() 851 basic_ostream<_CharT, _Traits>& _S_io_get(basic_ostream<_CharT, _Traits>& __o, in _S_io_get() argument 853 streamsize __w = __o.width(); in _S_io_get() 854 const bool __left = (__o.flags() & ios::left) != 0; in _S_io_get() 856 _Rope_insert_char_consumer<_CharT, _Traits> __c(__o); in _S_io_get() 863 _Rope_fill(__o, __pad_len); in _S_io_get() 867 _Rope_fill(__o, __pad_len); in _S_io_get() 869 return __o; in _S_io_get() [all …]
|
D | _pair.h | 68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {} in pair()
|
D | _rope.h | 2293 basic_ostream<_CharT, _Traits>& operator<< (basic_ostream<_CharT, _Traits>& __o,
|
/external/stlport/stlport/stl/debug/ |
D | _debug.h | 321 void _Set_owner(const __owned_list* __o) { _M_owner= __CONST_CAST(__owned_list*,__o); } in _Set_owner() argument 341 __owned_list(void* __o) { in __owned_list() argument 343 _M_node._M_owner = __REINTERPRET_CAST(__owned_list*,__o); in __owned_list()
|
D | _debug.c | 461 __stl_debug_engine<_Dummy>::_Stamp_all(__owned_list* __l, __owned_list* __o) { in _Stamp_all() argument 467 __pos->_M_owner=__o; in _Stamp_all()
|