| /freebsd-12-stable/contrib/gcclibs/include/ |
| D | obstack.h | 310 ({ struct obstack *__o = (OBSTACK); \ 311 (unsigned) (__o->next_free - __o->object_base); }) 315 ({ struct obstack *__o = (OBSTACK); \ 316 (unsigned) (__o->chunk_limit - __o->next_free); }) 320 ({ struct obstack *__o = (OBSTACK); \ 322 if (__o->chunk_limit - __o->next_free < __len) \ 323 _obstack_newchunk (__o, __len); \ 328 ({ struct obstack *__o = (OBSTACK); \ 329 (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); }) 333 ({ struct obstack *__o = (OBSTACK); \ [all …]
|
| D | objalloc.h | 89 ({ struct objalloc *__o = (o); \ 94 (__len != 0 && __len <= __o->current_space \ 95 ? (__o->current_ptr += __len, \ 96 __o->current_space -= __len, \ 97 (void *) (__o->current_ptr - __len)) \ 98 : _objalloc_alloc (__o, __len)); })
|
| /freebsd-12-stable/contrib/binutils/include/ |
| D | obstack.h | 310 ({ struct obstack *__o = (OBSTACK); \ 311 (unsigned) (__o->next_free - __o->object_base); }) 315 ({ struct obstack *__o = (OBSTACK); \ 316 (unsigned) (__o->chunk_limit - __o->next_free); }) 320 ({ struct obstack *__o = (OBSTACK); \ 322 if (__o->chunk_limit - __o->next_free < __len) \ 323 _obstack_newchunk (__o, __len); \ 328 ({ struct obstack *__o = (OBSTACK); \ 329 (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); }) 333 ({ struct obstack *__o = (OBSTACK); \ [all …]
|
| D | objalloc.h | 89 ({ struct objalloc *__o = (o); \ 94 (__len <= __o->current_space \ 95 ? (__o->current_ptr += __len, \ 96 __o->current_space -= __len, \ 97 (void *) (__o->current_ptr - __len)) \ 98 : _objalloc_alloc (__o, __len)); })
|
| /freebsd-12-stable/contrib/gdb/include/ |
| D | obstack.h | 367 ({ struct obstack *__o = (OBSTACK); \ 368 (unsigned) (__o->next_free - __o->object_base); }) 372 ({ struct obstack *__o = (OBSTACK); \ 373 (unsigned) (__o->chunk_limit - __o->next_free); }) 377 ({ struct obstack *__o = (OBSTACK); \ 379 if (__o->chunk_limit - __o->next_free < __len) \ 380 _obstack_newchunk (__o, __len); \ 385 ({ struct obstack *__o = (OBSTACK); \ 386 (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); }) 390 ({ struct obstack *__o = (OBSTACK); \ [all …]
|
| D | objalloc.h | 89 ({ struct objalloc *__o = (o); \ 94 (__len <= __o->current_space \ 95 ? (__o->current_ptr += __len, \ 96 __o->current_space -= __len, \ 97 (PTR) (__o->current_ptr - __len)) \ 98 : _objalloc_alloc (__o, __len)); })
|
| /freebsd-12-stable/gnu/usr.bin/grep/ |
| D | obstack.h | 361 ({ struct obstack *__o = (OBSTACK); \ 362 (unsigned) (__o->next_free - __o->object_base); }) 366 ({ struct obstack *__o = (OBSTACK); \ 367 (unsigned) (__o->chunk_limit - __o->next_free); }) 371 ({ struct obstack *__o = (OBSTACK); \ 373 if (__o->chunk_limit - __o->next_free < __len) \ 374 _obstack_newchunk (__o, __len); \ 379 ({ struct obstack *__o = (OBSTACK); \ 380 (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); }) 384 ({ struct obstack *__o = (OBSTACK); \ [all …]
|
| /freebsd-12-stable/contrib/llvm-project/libcxx/include/ |
| D | atomic | 1898 atomic_is_lock_free(const volatile atomic<_Tp>* __o) _NOEXCEPT 1900 return __o->is_lock_free(); 1906 atomic_is_lock_free(const atomic<_Tp>* __o) _NOEXCEPT 1908 return __o->is_lock_free(); 1916 atomic_init(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type __d) _NOEXCEPT 1918 __cxx_atomic_init(&__o->__a_, __d); 1924 atomic_init(atomic<_Tp>* __o, typename atomic<_Tp>::value_type __d) _NOEXCEPT 1926 __cxx_atomic_init(&__o->__a_, __d); 1934 atomic_store(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type __d) _NOEXCEPT 1936 __o->store(__d); [all …]
|
| D | scoped_allocator | 247 __scoped_allocator_storage(_OuterA2&& __o, 249 : outer_allocator_type(_VSTD::forward<_OuterA2>(__o)), 341 __scoped_allocator_storage(const outer_allocator_type& __o, 575 scoped_allocator_adaptor(_OuterA2&& __o, 577 : base(_VSTD::forward<_OuterA2>(__o), __i) {}
|
| D | ostream | 328 _Op __o(*this); 330 for (; __i != __eof; ++__i, ++__o, ++__c) 332 *__o = *__i; 333 if (__o.failed()) 888 _Op __o(*this); 889 *__o = __c; 890 if (__o.failed())
|
| /freebsd-12-stable/contrib/libstdc++/src/ |
| D | valarray-inst.cc | 68 __gslice_to_index(size_t __o, const valarray<size_t>& __l, in __gslice_to_index() argument 90 size_t __a = __o; in __gslice_to_index() 110 gslice::_Indexer::_Indexer(size_t __o, const valarray<size_t>& __l, in _Indexer() argument 112 : _M_count(1), _M_start(__o), _M_size(__l), _M_stride(__s), in _Indexer() 114 { __gslice_to_index(__o, __l, __s, _M_index); } in _Indexer()
|
| /freebsd-12-stable/contrib/libstdc++/include/bits/ |
| D | valarray_array.h | 150 _Tp* __restrict__ __o) 153 new(__o++) _Tp(*__b++); 162 _Tp* __restrict__ __o) 163 { std::memcpy(__o, __b, (__e - __b)*sizeof(_Tp)); } 170 _Tp* __restrict__ __o) 172 _Array_copy_ctor<_Tp, __is_pod<_Tp>::__value>::_S_do_it(__b, __e, __o); 179 size_t __s, _Tp* __restrict__ __o) 184 *__o++ = *__a; 190 new(__o++) _Tp(*__a); 200 _Tp* __restrict__ __o, size_t __n) [all …]
|
| D | gslice.h | 142 gslice::gslice(size_t __o, const valarray<size_t>& __l, in gslice() argument 144 : _M_index(new gslice::_Indexer(__o, __l, __s)) {} in gslice()
|
| D | slice_array.h | 92 slice::slice(size_t __o, size_t __d, size_t __s) in slice() argument 93 : _M_off(__o), _M_sz(__d), _M_st(__s) {} in slice()
|
| D | sstream.tcc | 231 _M_sync(char_type* __base, __size_type __i, __size_type __o) in _M_sync() argument 251 this->pbump(__o); in _M_sync()
|
| /freebsd-12-stable/contrib/libstdc++/include/ext/ |
| D | array_allocator.h | 115 array_allocator(const array_allocator& __o) throw() in throw() 116 : _M_array(__o._M_array), _M_used(__o._M_used) { } in throw()
|
| D | ropeimpl.h | 988 _Rope_fill(basic_ostream<_CharT, _Traits>& __o, size_t __n) in _Rope_fill() argument 990 char __f = __o.fill(); in _Rope_fill() 994 __o.put(__f); in _Rope_fill() 1013 operator<<(basic_ostream<_CharT, _Traits>& __o, 1016 size_t __w = __o.width(); 1017 bool __left = bool(__o.flags() & std::ios::left); 1020 _Rope_insert_char_consumer<_CharT, _Traits> __c(__o); 1029 __o.width(__w / __rope_len); 1033 _Rope_fill(__o, __pad_len); 1036 _Rope_fill(__o, __pad_len); [all …]
|
| /freebsd-12-stable/contrib/libarchive/libarchive/test/ |
| D | test_archive_write_set_filter_option.c | 29 #define should(__a, __code, __m, __o, __v) \ argument 30 assertEqualInt(__code, archive_write_set_filter_option(__a, __m, __o, __v))
|
| D | test_archive_read_set_filter_option.c | 29 #define should(__a, __code, __m, __o, __v) \ argument 30 assertEqualInt(__code, archive_read_set_filter_option(__a, __m, __o, __v))
|
| D | test_archive_read_set_format_option.c | 29 #define should(__a, __code, __m, __o, __v) \ argument 30 assertEqualInt(__code, archive_read_set_format_option(__a, __m, __o, __v))
|
| D | test_archive_write_set_format_option.c | 29 #define should(__a, __code, __m, __o, __v) \ argument 30 assertEqualInt(__code, archive_write_set_format_option(__a, __m, __o, __v))
|
| D | test_archive_read_set_option.c | 29 #define should(__a, __code, __m, __o, __v) \ argument 30 assertEqualInt(__code, archive_read_set_option(__a, __m, __o, __v))
|
| D | test_archive_write_set_option.c | 29 #define should(__a, __code, __m, __o, __v) \ argument 30 assertEqualInt(__code, archive_write_set_option(__a, __m, __o, __v))
|
| /freebsd-12-stable/contrib/llvm-project/libcxx/include/__iterator/ |
| D | concepts.h | 59 requires(_Out&& __o, _Tp&& __t) { in requires() argument 60 … *__o = _VSTD::forward<_Tp>(__t); // not required to be equality-preserving in requires() 61 … *_VSTD::forward<_Out>(__o) = _VSTD::forward<_Tp>(__t); // not required to be equality-preserving in requires() 62 …const_cast<const iter_reference_t<_Out>&&>(*__o) = _VSTD::forward<_Tp>(__t); … in requires() 63 …const_cast<const iter_reference_t<_Out>&&>(*_VSTD::forward<_Out>(__o)) = _VSTD::forward<_Tp>(__t);… in requires()
|
| /freebsd-12-stable/sys/sys/ |
| D | stdatomic.h | 309 __typeof__(object) __o = (object); \ 313 __sync_lock_test_and_set(&(__o)->__val, __d); \
|