Searched refs:time_get (Results 1 - 19 of 19) sorted by relevance

/netbsd-current/external/bsd/top/dist/
H A Dutils.h58 void time_get(struct timeval *);
H A Dutils.c646 time_get(struct timeval *tv) function
H A Dtop.c628 time_get(&now);
685 time_get(&now);
H A Ddisplay.c1462 time_get(&my_now);
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dcow-locale_init.cc58 typedef char fake_time_get_c[sizeof(time_get<char>)]
59 __attribute__ ((aligned(__alignof__(time_get<char>))));
88 typedef char fake_time_get_w[sizeof(time_get<wchar_t>)]
89 __attribute__ ((aligned(__alignof__(time_get<wchar_t>))));
111 _M_init_facet_unchecked(new (&time_get_c) time_get<char>(1));
124 _M_init_facet_unchecked(new (&time_get_w) time_get<wchar_t>(1));
150 _M_init_facet_unchecked(new time_get<char>);
162 _M_init_facet_unchecked(new time_get<wchar_t>);
H A Dlocale-inst.cc189 // time_get and time_put
200 template class time_get<C, istreambuf_iterator<C> >;
290 const time_get<C>&
291 use_facet<time_get<C> >(const locale&);
350 has_facet<time_get<C> >(const locale&);
H A Dcxx11-shim_facets.cc290 struct time_get_shim : std::time_get<_CharT>, __shim
292 typedef typename std::time_get<_CharT>::iter_type iter_type;
293 typedef typename std::time_get<_CharT>::char_type char_type;
295 // f must point to a type derived from time_get<C>[abi:other]
685 { return static_cast<const time_get<C>*>(f)->date_order(); }
701 auto* g = static_cast<const time_get<C>*>(f);
811 if (which == &time_get<char>::id)
828 if (which == &time_get<wchar_t>::id)
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dcow-locale_init.cc58 typedef char fake_time_get_c[sizeof(time_get<char>)]
59 __attribute__ ((aligned(__alignof__(time_get<char>))));
88 typedef char fake_time_get_w[sizeof(time_get<wchar_t>)]
89 __attribute__ ((aligned(__alignof__(time_get<wchar_t>))));
111 _M_init_facet_unchecked(new (&time_get_c) time_get<char>(1));
124 _M_init_facet_unchecked(new (&time_get_w) time_get<wchar_t>(1));
151 _M_init_facet_unchecked(new time_get<char>);
163 _M_init_facet_unchecked(new time_get<wchar_t>);
H A Dlocale-inst.cc74 // time_get and time_put
85 template class time_get<C, istreambuf_iterator<C> >;
157 const time_get<C>&
158 use_facet<time_get<C> >(const locale&);
199 has_facet<time_get<C> >(const locale&);
H A Dcxx11-shim_facets.cc290 struct time_get_shim : std::time_get<_CharT>, __shim
292 typedef typename std::time_get<_CharT>::iter_type iter_type;
293 typedef typename std::time_get<_CharT>::char_type char_type;
295 // f must point to a type derived from time_get<C>[abi:other]
685 { return static_cast<const time_get<C>*>(f)->date_order(); }
701 auto* g = static_cast<const time_get<C>*>(f);
811 if (which == &time_get<char>::id)
828 if (which == &time_get<wchar_t>::id)
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
H A Dlocale_init.cc137 typedef char fake_time_get_c[sizeof(time_get<char>)]
138 __attribute__ ((aligned(__alignof__(time_get<char>))));
191 typedef char fake_time_get_w[sizeof(time_get<wchar_t>)]
192 __attribute__ ((aligned(__alignof__(time_get<wchar_t>))));
379 &time_get<char>::id,
383 &time_get<wchar_t>::id,
437 &time_get<char>::id,
454 &time_get<wchar_t>::id,
516 _M_init_facet(new (&time_get_c) time_get<char>(1));
546 _M_init_facet(new (&time_get_w) time_get<wchar_
[all...]
H A Dlocalename.cc251 _M_init_facet(new time_get<char>);
267 _M_init_facet(new time_get<wchar_t>);
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
H A Dlocale_init.cc150 typedef char fake_time_get_c[sizeof(time_get<char>)]
151 __attribute__ ((aligned(__alignof__(time_get<char>))));
204 typedef char fake_time_get_w[sizeof(time_get<wchar_t>)]
205 __attribute__ ((aligned(__alignof__(time_get<wchar_t>))));
398 &time_get<char>::id,
402 &time_get<wchar_t>::id,
456 &time_get<char>::id,
473 &time_get<wchar_t>::id,
535 _M_init_facet(new (&time_get_c) time_get<char>(1));
565 _M_init_facet(new (&time_get_w) time_get<wchar_
[all...]
H A Dlocalename.cc263 _M_init_facet(new time_get<char>);
279 _M_init_facet(new time_get<wchar_t>);
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dlocale_facets_nonio.h357 * @brief Primary class template time_get.
364 * The time_get template uses protected virtual functions to provide the
367 * implement the behavior they require from the time_get facet.
370 class time_get : public locale::facet, public time_base class in inherits:locale::facet,time_base
391 time_get(size_t __refs = 0) function in class:time_get
416 * calling time_get::do_get_time().
441 * calling time_get::do_get_date().
466 * time_get::do_get_weekday().
494 * time_get::do_get_monthname().
523 * returned by calling time_get
[all...]
H A Dlocalefwd.h178 class time_get;
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dlocale_facets_nonio.h387 * @brief Primary class template time_get.
394 * The time_get template uses protected virtual functions to provide the
397 * implement the behavior they require from the time_get facet.
400 class time_get : public locale::facet, public time_base class in inherits:locale::facet,time_base
421 time_get(size_t __refs = 0) function in class:time_get
446 * calling time_get::do_get_time().
471 * calling time_get::do_get_date().
496 * time_get::do_get_weekday().
524 * time_get::do_get_monthname().
553 * returned by calling time_get
[all...]
H A Dlocalefwd.h178 class time_get;
/netbsd-current/external/apache2/llvm/dist/libcxx/src/
H A Dlocale.cpp227 install(&make<time_get<char> >(1u));
228 install(&make<time_get<wchar_t> >(1u));
438 install_from<time_get<char> >(one);
439 install_from<time_get<wchar_t> >(one);
4694 // time_get
6295 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS time_get<char>; variable in typeref:class:_LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
6296 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS time_get<wchar_t>; variable in typeref:class:_LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS

Completed in 389 milliseconds