Home
last modified time | relevance | path

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

/ndk/sources/host-tools/sed-4.2.1/lib/
Dobstack.h271 ({ struct obstack const *__o = (OBSTACK); \
272 (unsigned) (__o->next_free - __o->object_base); })
276 ({ struct obstack const *__o = (OBSTACK); \
277 (unsigned) (__o->chunk_limit - __o->next_free); })
281 ({ struct obstack *__o = (OBSTACK); \
283 if (__o->chunk_limit - __o->next_free < __len) \
284 _obstack_newchunk (__o, __len); \
289 ({ struct obstack const *__o = (OBSTACK); \
290 (__o->chunk->prev == 0 \
291 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Datomic1071 atomic_is_lock_free(const volatile atomic<_Tp>* __o) _NOEXCEPT
1073 return __o->is_lock_free();
1079 atomic_is_lock_free(const atomic<_Tp>* __o) _NOEXCEPT
1081 return __o->is_lock_free();
1089 atomic_init(volatile atomic<_Tp>* __o, _Tp __d) _NOEXCEPT
1091 __c11_atomic_init(&__o->__a_, __d);
1097 atomic_init(atomic<_Tp>* __o, _Tp __d) _NOEXCEPT
1099 __c11_atomic_init(&__o->__a_, __d);
1107 atomic_store(volatile atomic<_Tp>* __o, _Tp __d) _NOEXCEPT
1109 __o->store(__d);
[all …]
Dscoped_allocator227 __scoped_allocator_storage(_OuterA2&& __o,
229 : outer_allocator_type(_VSTD::forward<_OuterA2>(__o)),
321 __scoped_allocator_storage(const outer_allocator_type& __o,
497 scoped_allocator_adaptor(_OuterA2&& __o,
499 : base(_VSTD::forward<_OuterA2>(__o), __i) {}
Dostream353 _Op __o(*this);
355 for (; __i != __eof; ++__i, ++__o, ++__c)
357 *__o = *__i;
358 if (__o.failed())
913 _Op __o(*this);
914 *__o = __c;
915 if (__o.failed())
Dlocale1562 char_type __o[2*(__nbuf-1) - 1];
1565 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc());
1566 // [__o, __oe) contains thousands_sep'd wide number
1568 return __pad_and_output(__s, __o, __op, __oe, __iob, __fl);
1592 char_type __o[2*(__nbuf-1) - 1];
1595 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc());
1596 // [__o, __oe) contains thousands_sep'd wide number
1598 return __pad_and_output(__s, __o, __op, __oe, __iob, __fl);
1622 char_type __o[2*(__nbuf-1) - 1];
1625 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc());
[all …]
/ndk/sources/cxx-stl/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.h2295 basic_ostream<_CharT, _Traits>& operator<< (basic_ostream<_CharT, _Traits>& __o,
/ndk/sources/cxx-stl/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()
/ndk/tests/build/b9193874-neon/jni/
Db9193874-neon.c146 union { uint8x8x2_t __i; __builtin_neon_ti __o; } __bu = { __b }; in vst2_u8() member
147 __builtin_neon_vst2v8qi ((__builtin_neon_qi *) __a, __bu.__o); in vst2_u8()
152 union { uint8x8x4_t __i; __builtin_neon_oi __o; } __bu = { __b }; in vst4_u8() member
153 __builtin_neon_vst4v8qi ((__builtin_neon_qi *) __a, __bu.__o); in vst4_u8()