| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/ext/ |
| H A D | pointer.h | 74 get() const in _GLIBCXX_VISIBILITY() 115 get() const in _GLIBCXX_VISIBILITY() 137 { return (reinterpret_cast<_UIntPtrType>(this->get()) in _GLIBCXX_VISIBILITY() 138 < reinterpret_cast<_UIntPtrType>(__rarg.get())); } in _GLIBCXX_VISIBILITY() 142 { return (reinterpret_cast<_UIntPtrType>(this->get()) in _GLIBCXX_VISIBILITY() 143 == reinterpret_cast<_UIntPtrType>(__rarg.get())); } in _GLIBCXX_VISIBILITY() 167 get() const in _GLIBCXX_VISIBILITY() 189 { return (reinterpret_cast<_UIntPtrType>(this->get()) in _GLIBCXX_VISIBILITY() 190 < reinterpret_cast<_UIntPtrType>(__rarg.get())); } in _GLIBCXX_VISIBILITY() 194 { return (reinterpret_cast<_UIntPtrType>(this->get()) in _GLIBCXX_VISIBILITY() [all …]
|
| /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/ext/ |
| H A D | pointer.h | 74 get() const in _GLIBCXX_VISIBILITY() 115 get() const in _GLIBCXX_VISIBILITY() 137 { return (reinterpret_cast<_UIntPtrType>(this->get()) in _GLIBCXX_VISIBILITY() 138 < reinterpret_cast<_UIntPtrType>(__rarg.get())); } in _GLIBCXX_VISIBILITY() 142 { return (reinterpret_cast<_UIntPtrType>(this->get()) in _GLIBCXX_VISIBILITY() 143 == reinterpret_cast<_UIntPtrType>(__rarg.get())); } in _GLIBCXX_VISIBILITY() 167 get() const in _GLIBCXX_VISIBILITY() 189 { return (reinterpret_cast<_UIntPtrType>(this->get()) in _GLIBCXX_VISIBILITY() 190 < reinterpret_cast<_UIntPtrType>(__rarg.get())); } in _GLIBCXX_VISIBILITY() 194 { return (reinterpret_cast<_UIntPtrType>(this->get()) in _GLIBCXX_VISIBILITY() [all …]
|
| /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/ |
| H A D | unique_ptr.h | 171 auto& __ptr = std::get<0>(_M_t); in _GLIBCXX_VISIBILITY() 210 _GLIBCXX_DEBUG_ASSERT(get() != pointer()); in _GLIBCXX_VISIBILITY() 211 return *get(); in _GLIBCXX_VISIBILITY() 217 _GLIBCXX_DEBUG_ASSERT(get() != pointer()); in _GLIBCXX_VISIBILITY() 218 return get(); in _GLIBCXX_VISIBILITY() 222 get() const noexcept in _GLIBCXX_VISIBILITY() 223 { return std::get<0>(_M_t); } in _GLIBCXX_VISIBILITY() 227 { return std::get<1>(_M_t); } in _GLIBCXX_VISIBILITY() 231 { return std::get<1>(_M_t); } in _GLIBCXX_VISIBILITY() 234 { return get() == pointer() ? false : true; } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | shared_ptr.h | 69 __os << __p.get(); in _GLIBCXX_VISIBILITY() 330 { return __a.get() == __b.get(); } in _GLIBCXX_VISIBILITY() 346 { return __a.get() != __b.get(); } in _GLIBCXX_VISIBILITY() 364 return std::less<_CT>()(__a.get(), __b.get()); in _GLIBCXX_VISIBILITY() 370 { return std::less<_Tp*>()(__a.get(), nullptr); } in _GLIBCXX_VISIBILITY() 375 { return std::less<_Tp*>()(nullptr, __a.get()); } in _GLIBCXX_VISIBILITY() 402 { return std::less<_Tp*>()(nullptr, __a.get()); } in _GLIBCXX_VISIBILITY() 407 { return std::less<_Tp*>()(__a.get(), nullptr); } in _GLIBCXX_VISIBILITY() 439 { return shared_ptr<_Tp>(__r, static_cast<_Tp*>(__r.get())); } in _GLIBCXX_VISIBILITY() 444 { return shared_ptr<_Tp>(__r, const_cast<_Tp*>(__r.get())); } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | shared_ptr_base.h | 541 : _M_pi(new _Sp_counted_ptr<_Tp*, _Lp>(__r.get())) in _GLIBCXX_VISIBILITY() 625 _Lp>(__r.get(), __r.get_deleter()); in _GLIBCXX_VISIBILITY() 636 _Lp>(__r.get(), std::ref(__r.get_deleter())); in _GLIBCXX_VISIBILITY() 851 : _M_ptr(__r.get()), _M_refcount() in _GLIBCXX_VISIBILITY() 854 _Tp1* __tmp = __r.get(); in _GLIBCXX_VISIBILITY() 863 : _M_ptr(__r.get()), _M_refcount() in _GLIBCXX_VISIBILITY() 867 _Tp1* __tmp = __r.get(); in _GLIBCXX_VISIBILITY() 959 get() const noexcept in _GLIBCXX_VISIBILITY() 1071 { return __a.get() == __b.get(); } in _GLIBCXX_VISIBILITY() 1087 { return __a.get() != __b.get(); } in _GLIBCXX_VISIBILITY() [all …]
|
| /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/src/c++98/ |
| H A D | strstream.cc | 84 strstreambuf::strstreambuf(char* get, streamsize n, char* put) throw () in strstreambuf() argument 87 { _M_setup(get, put, n); } in strstreambuf() 89 strstreambuf::strstreambuf(signed char* get, streamsize n, signed char* put) throw () in strstreambuf() argument 92 { _M_setup(reinterpret_cast<char*>(get), reinterpret_cast<char*>(put), n); } in strstreambuf() 94 strstreambuf::strstreambuf(unsigned char* get, streamsize n, in strstreambuf() argument 98 { _M_setup(reinterpret_cast<char*>(get), reinterpret_cast<char*>(put), n); } in strstreambuf() 100 strstreambuf::strstreambuf(const char* get, streamsize n) throw () in strstreambuf() argument 103 { _M_setup(const_cast<char*>(get), 0, n); } in strstreambuf() 105 strstreambuf::strstreambuf(const signed char* get, streamsize n) throw () in strstreambuf() argument 108 { _M_setup(reinterpret_cast<char*>(const_cast<signed char*>(get)), 0, n); } in strstreambuf() [all …]
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/src/c++98/ |
| H A D | strstream.cc | 83 strstreambuf::strstreambuf(char* get, streamsize n, char* put) throw () in strstreambuf() argument 86 { _M_setup(get, put, n); } in strstreambuf() 88 strstreambuf::strstreambuf(signed char* get, streamsize n, signed char* put) throw () in strstreambuf() argument 91 { _M_setup(reinterpret_cast<char*>(get), reinterpret_cast<char*>(put), n); } in strstreambuf() 93 strstreambuf::strstreambuf(unsigned char* get, streamsize n, in strstreambuf() argument 97 { _M_setup(reinterpret_cast<char*>(get), reinterpret_cast<char*>(put), n); } in strstreambuf() 99 strstreambuf::strstreambuf(const char* get, streamsize n) throw () in strstreambuf() argument 102 { _M_setup(const_cast<char*>(get), 0, n); } in strstreambuf() 104 strstreambuf::strstreambuf(const signed char* get, streamsize n) throw () in strstreambuf() argument 107 { _M_setup(reinterpret_cast<char*>(const_cast<signed char*>(get)), 0, n); } in strstreambuf() [all …]
|
| /dflybsd-src/contrib/gcc-8.0/gcc/ |
| H A D | hash-map-tests.c | 57 ASSERT_EQ (NULL, m.get (ostrich)); in test_map_of_strings_to_int() 69 ASSERT_EQ (2, *m.get (ostrich)); in test_map_of_strings_to_int() 70 ASSERT_EQ (4, *m.get (elephant)); in test_map_of_strings_to_int() 71 ASSERT_EQ (6, *m.get (ant)); in test_map_of_strings_to_int() 72 ASSERT_EQ (8, *m.get (spider)); in test_map_of_strings_to_int() 73 ASSERT_EQ (750, *m.get (millipede)); in test_map_of_strings_to_int() 74 ASSERT_EQ (3, *m.get (eric)); in test_map_of_strings_to_int() 79 ASSERT_EQ (NULL, m.get (eric)); in test_map_of_strings_to_int()
|
| H A D | symbol-summary.h | 117 T* get (cgraph_node *node) in class() 120 return get (node->summary_uid); in class() 132 return m_map.get (node->summary_uid) != NULL; in class() 154 summary->insert (node, summary->get (node)); in class() 164 T **v = summary->m_map.get (summary_uid); in class() 179 T **v = summary->m_map.get (node->summary_uid); in class() 201 T* get (int uid) in class() 343 T* get (cgraph_edge *edge) in class() 345 return get (hashable_uid (edge)); in class() 357 return m_map.get (hashable_uid (edge)) != NULL; in class() [all …]
|
| H A D | ipa-inline-analysis.c | 128 if (ipa_fn_summaries->get (to)->scc_no in simple_edge_hints() 129 && ipa_fn_summaries->get (to)->scc_no in simple_edge_hints() 130 == ipa_fn_summaries->get (callee)->scc_no in simple_edge_hints() 160 struct ipa_call_summary *es = ipa_call_summaries->get (edge); in do_estimate_edge_time() 193 ipa_fn_summaries->get (edge->callee)->min_size = min_size; in do_estimate_edge_time() 296 struct ipa_call_summary *es = ipa_call_summaries->get (edge); in estimate_size_after_inlining() 299 int size = ipa_fn_summaries->get (node)->size + estimate_edge_growth (edge); in estimate_size_after_inlining() 303 return ipa_fn_summaries->get (node)->size; in estimate_size_after_inlining() 352 struct ipa_fn_summary *info = ipa_fn_summaries->get (node); in estimate_growth() 427 max_callers = ipa_fn_summaries->get (node)->size * 4 / edge_growth + 2; in growth_likely_positive()
|
| H A D | ipa-inline.c | 153 ipa_fn_summary *info, *what_info, *outer_info = ipa_fn_summaries->get (to); in caller_growth_limits() 165 info = ipa_fn_summaries->get (to); in caller_growth_limits() 176 what_info = ipa_fn_summaries->get (what); in caller_growth_limits() 372 else if (!ipa_fn_summaries->get (callee)->inlinable) 434 ipa_fn_summary *caller_info = ipa_fn_summaries->get (caller); 435 ipa_fn_summary *callee_info = ipa_fn_summaries->get (callee); 538 >= 20 + ipa_call_summaries->get (e)->call_stmt_time) 688 sreal caller_time = ipa_fn_summaries->get (caller)->time; in compute_uninlined_call_time() 702 sreal caller_time = ipa_fn_summaries->get (caller)->time; in compute_inlined_call_time() 712 time -= (sreal)ipa_call_summaries->get (edge)->call_stmt_time * freq; in compute_inlined_call_time() [all …]
|
| H A D | ipa-fnsummary.c | 244 struct ipa_call_summary *es = ipa_call_summaries->get (e); in redirect_to_unreachable() 269 struct ipa_call_summary *es = ipa_call_summaries->get (e); in edge_set_predicate() 331 struct ipa_fn_summary *info = ipa_fn_summaries->get (node); in evaluate_conditions_for_known_args() 431 struct ipa_fn_summary *info = ipa_fn_summaries->get (callee); in evaluate_properties_for_edge() 448 struct ipa_call_summary *es = ipa_call_summaries->get (e); in evaluate_properties_for_edge() 586 ipa_call_summaries->get (e)->reset (); in reset() 588 ipa_call_summaries->get (e)->reset (); in reset() 628 memcpy (info, ipa_fn_summaries->get (src), sizeof (ipa_fn_summary)); in duplicate() 703 struct ipa_call_summary *es = ipa_call_summaries->get (edge); in duplicate() 722 struct ipa_call_summary *es = ipa_call_summaries->get (edge); in duplicate() [all …]
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/ |
| H A D | unique_ptr.h | 149 pointer& _M_ptr() { return std::get<0>(_M_t); } in _GLIBCXX_VISIBILITY() 150 pointer _M_ptr() const { return std::get<0>(_M_t); } in _GLIBCXX_VISIBILITY() 151 _Dp& _M_deleter() { return std::get<1>(_M_t); } in _GLIBCXX_VISIBILITY() 152 const _Dp& _M_deleter() const { return std::get<1>(_M_t); } in _GLIBCXX_VISIBILITY() 328 __glibcxx_assert(get() != pointer()); in _GLIBCXX_VISIBILITY() 329 return *get(); in _GLIBCXX_VISIBILITY() 336 _GLIBCXX_DEBUG_PEDASSERT(get() != pointer()); in _GLIBCXX_VISIBILITY() 337 return get(); in _GLIBCXX_VISIBILITY() 342 get() const noexcept in _GLIBCXX_VISIBILITY() 357 { return get() == pointer() ? false : true; } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | shared_ptr.h | 69 __os << __p.get(); in _GLIBCXX_VISIBILITY() 384 { return __a.get() == __b.get(); } in _GLIBCXX_VISIBILITY() 399 { return __a.get() != __b.get(); } in _GLIBCXX_VISIBILITY() 418 return less<_Vp>()(__a.get(), __b.get()); in _GLIBCXX_VISIBILITY() 426 return less<_Tp_elt*>()(__a.get(), nullptr); in _GLIBCXX_VISIBILITY() 434 return less<_Tp_elt*>()(nullptr, __a.get()); in _GLIBCXX_VISIBILITY() 498 return _Sp(__r, static_cast<typename _Sp::element_type*>(__r.get())); in _GLIBCXX_VISIBILITY() 506 return _Sp(__r, const_cast<typename _Sp::element_type*>(__r.get())); in _GLIBCXX_VISIBILITY() 514 if (auto* __p = dynamic_cast<typename _Sp::element_type*>(__r.get())) in _GLIBCXX_VISIBILITY() 525 return _Sp(__r, reinterpret_cast<typename _Sp::element_type*>(__r.get())); in _GLIBCXX_VISIBILITY() [all …]
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/experimental/ |
| H A D | memory | 87 : __t(__p.get()) 93 get() const noexcept 101 return *get(); 107 return get(); 112 return get() != nullptr; 118 return get(); 125 __pointer __tmp = get(); 164 return __p1.get() == __p2.get(); 209 >{}(__p1.get(), __p2.get()); 243 noexcept(noexcept(hash<typename add_pointer<_Tp>::type> {}(__t.get()))) [all …]
|
| /dflybsd-src/libexec/rpc.sprayd/ |
| H A D | sprayd.c | 132 static struct timeval clear, get; in spray_service() local 149 (void) gettimeofday(&get, 0); in spray_service() 150 timersub(&get, &clear, &get); in spray_service() 151 scum.clock.sec = get.tv_sec; in spray_service() 152 scum.clock.usec = get.tv_usec; in spray_service()
|
| /dflybsd-src/contrib/gcc-8.0/include/ |
| H A D | unique-ptr.h | 210 element_type *get () const throw () { return m_ptr; } 276 T &operator* () const throw () { return *this->get (); } 277 T *operator-> () const throw () { return this->get (); } 291 T &operator[] (size_t i) const { return this->get ()[i]; } 301 { return x.get() == y.get(); } 308 { return x.get() != y.get(); } 315 { return x.get() < y.get (); }
|
| /dflybsd-src/test/stress/stress2/testcases/lockf/ |
| H A D | lockf.c | 48 get(void) { in get() function 111 while ((get() & 1) == 0) in test() 114 printf("Child %d, sem = %d\n", i, get()), in test() 121 while ((get() & 1) == 1) in test() 124 printf("Parent %d, sem = %d\n", i, get()), in test()
|
| /dflybsd-src/libexec/makekey/ |
| H A D | makekey.c | 44 static void get (char *, int); 52 get(key, sizeof(key) - 1); in main() 53 get(salt, sizeof(salt) - 1); in main() 61 get(char *bp, int len) in get() function
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/experimental/bits/ |
| H A D | shared_ptr.h | 143 { _M_enable_shared_from_this_with(static_cast<_Tp1*>(this->get())); } in _GLIBCXX_VISIBILITY() 154 _M_enable_shared_from_this_with(static_cast<__elem_t*>(this->get())); in _GLIBCXX_VISIBILITY() 217 { _M_enable_shared_from_this_with(this->get()); } in _GLIBCXX_VISIBILITY() 262 { return __a.get() == __b.get(); } in _GLIBCXX_VISIBILITY() 278 { return __a.get() != __b.get(); } in _GLIBCXX_VISIBILITY() 298 return std::less<_CT>()(__a.get(), __b.get()); in _GLIBCXX_VISIBILITY() 306 return std::less<__elem_t*>()(__a.get(), nullptr); in _GLIBCXX_VISIBILITY() 314 return std::less<__elem_t*>()(nullptr, __a.get()); in _GLIBCXX_VISIBILITY() 344 return std::less<__elem_t*>()(nullptr, __a.get()); in _GLIBCXX_VISIBILITY() 352 return std::less<__elem_t*>()(__a.get(), nullptr); in _GLIBCXX_VISIBILITY() [all …]
|
| /dflybsd-src/contrib/bmake/mk/ |
| H A D | meta2deps.py | 240 self.debug = conf.get('debug', 0) 241 self.debug_out = conf.get('debug_out', sys.stderr) 243 self.machine = conf.get('MACHINE', '') 244 self.machine_arch = conf.get('MACHINE_ARCH', '') 245 self.target_spec = conf.get('TARGET_SPEC', self.machine) 247 self.curdir = conf.get('CURDIR') 248 self.reldir = conf.get('RELDIR') 249 self.dpdeps = conf.get('DPDEPS') 256 self.host_target = conf.get('HOST_TARGET') 257 for srctop in conf.get('SRCTOPS', []): [all …]
|
| /dflybsd-src/crypto/libressl/apps/openssl/ |
| H A D | apps_posix.c | 137 app_timer_real(int get) in app_timer_real() argument 143 if (get) { in app_timer_real() 152 app_timer_user(int get) in app_timer_user() argument 159 if (get) { in app_timer_user()
|
| /dflybsd-src/contrib/cvs-1.12/src/ |
| H A D | buffer.c | 592 int get; in buf_read_file() local 612 get = BUFFER_DATA_SIZE; in buf_read_file() 614 get = size; in buf_read_file() 617 if (fread (data->text, get, 1, f) != 1) in buf_read_file() 623 data->size += get; in buf_read_file() 624 size -= get; in buf_read_file() 656 int get, nread; in buf_read_file_to_eof() local 675 get = BUFFER_DATA_SIZE; in buf_read_file_to_eof() 678 nread = fread (data->text, 1, get, f); in buf_read_file_to_eof() 740 size_t get, nbytes; in buf_input_data() local [all …]
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/parallel/ |
| H A D | sort.h | 80 if(_Settings::get().sort_splitting == EXACT) in __parallel_sort() 213 else if (__stable || _Settings::get().sort_algorithm == MWMS) in __parallel_sort() 215 if(_Settings::get().sort_splitting == EXACT) in __parallel_sort() 224 else if (_Settings::get().sort_algorithm == QS) in __parallel_sort() 229 else if (_Settings::get().sort_algorithm == QS_BALANCED) in __parallel_sort()
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/backward/ |
| H A D | auto_ptr.h | 213 get() const throw() { return _M_ptr; } in _GLIBCXX_VISIBILITY() 272 if (__ref._M_ptr != this->get()) in _GLIBCXX_VISIBILITY() 303 : _M_pi(new _Sp_counted_ptr<_Tp*, _Lp>(__r.get())) in _GLIBCXX_VISIBILITY() 310 : _M_ptr(__r.get()), _M_refcount() in _GLIBCXX_VISIBILITY() 314 _Tp1* __tmp = __r.get(); in _GLIBCXX_VISIBILITY()
|