Home
last modified time | relevance | path

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

/external/bison/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 …]
/external/libcxx/include/
Datomic1079 atomic_is_lock_free(const volatile atomic<_Tp>* __o) _NOEXCEPT
1081 return __o->is_lock_free();
1087 atomic_is_lock_free(const atomic<_Tp>* __o) _NOEXCEPT
1089 return __o->is_lock_free();
1097 atomic_init(volatile atomic<_Tp>* __o, _Tp __d) _NOEXCEPT
1099 __c11_atomic_init(&__o->__a_, __d);
1105 atomic_init(atomic<_Tp>* __o, _Tp __d) _NOEXCEPT
1107 __c11_atomic_init(&__o->__a_, __d);
1115 atomic_store(volatile atomic<_Tp>* __o, _Tp __d) _NOEXCEPT
1117 __o->store(__d);
[all …]
Dscoped_allocator244 __scoped_allocator_storage(_OuterA2&& __o,
246 : outer_allocator_type(_VSTD::forward<_OuterA2>(__o)),
338 __scoped_allocator_storage(const outer_allocator_type& __o,
519 scoped_allocator_adaptor(_OuterA2&& __o,
521 : base(_VSTD::forward<_OuterA2>(__o), __i) {}
Dostream365 _Op __o(*this);
367 for (; __i != __eof; ++__i, ++__o, ++__c)
369 *__o = *__i;
370 if (__o.failed())
925 _Op __o(*this);
926 *__o = __c;
927 if (__o.failed())
Dlocale1569 char_type __o[2*(__nbuf-1) - 1];
1572 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc());
1573 // [__o, __oe) contains thousands_sep'd wide number
1575 return __pad_and_output(__s, __o, __op, __oe, __iob, __fl);
1599 char_type __o[2*(__nbuf-1) - 1];
1602 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc());
1603 // [__o, __oe) contains thousands_sep'd wide number
1605 return __pad_and_output(__s, __o, __op, __oe, __iob, __fl);
1629 char_type __o[2*(__nbuf-1) - 1];
1632 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc());
[all …]
/external/fio/
Dparse.c1062 struct fio_option *__o; in find_child() local
1064 for (__o = options + 1; __o->name; __o++) in find_child()
1065 if (__o->parent && !strcmp(__o->parent, o->name)) in find_child()
1066 return __o; in find_child()
1095 struct fio_option *__o; in print_option() local
1106 while ((__o = find_child(o, parent)) != NULL) { in print_option()
1107 __print_option(__o, o, level); in print_option()
1108 o = __o; in print_option()
Dcconv.c472 int fio_test_cconv(struct thread_options *__o) in fio_test_cconv() argument
480 convert_thread_options_to_net(&top1, __o); in fio_test_cconv()
Doptions.c4094 struct fio_option *__o; in add_option() local
4097 __o = fio_options; in add_option()
4098 while (__o->name) { in add_option()
4100 __o++; in add_option()
/external/llvm/test/CodeGen/X86/
Dcoalesce-esp.ll13 define void @_ZSt17__gslice_to_indexjRKSt8valarrayIjES2_RS0_(i32 %__o, %"struct.std::valarray<unsig…
/external/llvm/unittests/IR/
DConstantsTest.cpp159 raw_string_ostream __o(__s); \
161 __I->print(__o); \
163 __o.flush(); \