Home
last modified time | relevance | path

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

/external/bison/lib/
Dobstack.h267 ({ 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.h59 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.c845 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.h68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {} in pair()
D_rope.h2293 basic_ostream<_CharT, _Traits>& operator<< (basic_ostream<_CharT, _Traits>& __o,
/external/stlport/stlport/stl/debug/
D_debug.h321 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.c461 __stl_debug_engine<_Dummy>::_Stamp_all(__owned_list* __l, __owned_list* __o) { in _Stamp_all() argument
467 __pos->_M_owner=__o; in _Stamp_all()