Searched refs:__o (Results 1 – 12 of 12) sorted by relevance
/external/bison/lib/ |
D | obstack.h | 271 ({ 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/ |
D | atomic | 1153 atomic_is_lock_free(const volatile atomic<_Tp>* __o) _NOEXCEPT 1155 return __o->is_lock_free(); 1161 atomic_is_lock_free(const atomic<_Tp>* __o) _NOEXCEPT 1163 return __o->is_lock_free(); 1171 atomic_init(volatile atomic<_Tp>* __o, _Tp __d) _NOEXCEPT 1173 __c11_atomic_init(&__o->__a_, __d); 1179 atomic_init(atomic<_Tp>* __o, _Tp __d) _NOEXCEPT 1181 __c11_atomic_init(&__o->__a_, __d); 1189 atomic_store(volatile atomic<_Tp>* __o, _Tp __d) _NOEXCEPT 1191 __o->store(__d); [all …]
|
D | scoped_allocator | 246 __scoped_allocator_storage(_OuterA2&& __o, 248 : outer_allocator_type(_VSTD::forward<_OuterA2>(__o)), 340 __scoped_allocator_storage(const outer_allocator_type& __o, 574 scoped_allocator_adaptor(_OuterA2&& __o, 576 : base(_VSTD::forward<_OuterA2>(__o), __i) {}
|
D | ostream | 337 _Op __o(*this); 339 for (; __i != __eof; ++__i, ++__o, ++__c) 341 *__o = *__i; 342 if (__o.failed()) 897 _Op __o(*this); 898 *__o = __c; 899 if (__o.failed())
|
D | locale | 1411 char_type __o[2*(__nbuf-1) - 1]; 1414 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc()); 1415 // [__o, __oe) contains thousands_sep'd wide number 1417 return __pad_and_output(__s, __o, __op, __oe, __iob, __fl); 1437 char_type __o[2*(__nbuf-1) - 1]; 1440 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc()); 1441 // [__o, __oe) contains thousands_sep'd wide number 1443 return __pad_and_output(__s, __o, __op, __oe, __iob, __fl); 1463 char_type __o[2*(__nbuf-1) - 1]; 1466 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc()); [all …]
|
/external/fio/ |
D | parse.c | 1131 struct fio_option *__o; in find_child() local 1133 for (__o = options + 1; __o->name; __o++) in find_child() 1134 if (__o->parent && !strcmp(__o->parent, o->name)) in find_child() 1135 return __o; in find_child() 1164 struct fio_option *__o; in print_option() local 1175 while ((__o = find_child(o, parent)) != NULL) { in print_option() 1176 __print_option(__o, o, level); in print_option() 1177 o = __o; in print_option()
|
D | cconv.c | 566 int fio_test_cconv(struct thread_options *__o) in fio_test_cconv() argument 574 convert_thread_options_to_net(&top1, __o); in fio_test_cconv()
|
D | options.c | 4872 struct fio_option *__o; in add_option() local 4875 __o = fio_options; in add_option() 4876 while (__o->name) { in add_option() 4878 __o++; in add_option()
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | coalesce-esp.ll | 13 define void @_ZSt17__gslice_to_indexjRKSt8valarrayIjES2_RS0_(i32 %__o, %"struct.std::valarray<unsig…
|
/external/llvm/test/CodeGen/X86/ |
D | coalesce-esp.ll | 13 define void @_ZSt17__gslice_to_indexjRKSt8valarrayIjES2_RS0_(i32 %__o, %"struct.std::valarray<unsig…
|
/external/llvm/unittests/IR/ |
D | ConstantsTest.cpp | 183 raw_string_ostream __o(__s); \ 185 __I->print(__o); \ 187 __o.flush(); \
|
/external/libcxx/include/experimental/ |
D | filesystem | 1877 __dir_element_proxy(__dir_element_proxy&& __o) : __elem_(_VSTD::move(__o.__elem_)) {} 1916 directory_iterator& operator=(directory_iterator&& __o) _NOEXCEPT { 1918 if (this != &__o) { 1919 __imp_ = _VSTD::move(__o.__imp_); 2030 operator=(recursive_directory_iterator&& __o) noexcept { 2032 if (this != &__o) { 2033 __imp_ = _VSTD::move(__o.__imp_); 2034 __rec_ = __o.__rec_;
|