Home
last modified time | relevance | path

Searched refs:__seconds (Results 1 – 2 of 2) sorted by relevance

/freebsd/usr.sbin/bsdconfig/usermgmt/share/
H A Duser_input.subr580 local __seconds="$__input"
581 { f_isinteger "$__seconds" && [ $__seconds -gt 0 ]; } ||
582 __seconds=
583 __input_date=$( date -j -f "%s" -- "$__seconds" \
605 [ "$__seconds" ] && __input_time=$( date -j \
723 local __seconds="$__input"
724 { f_isinteger "$__seconds" && [ $__seconds -gt 0 ]; } ||
725 __seconds=
726 __input_date=$( date -j -f "%s" -- "$__seconds" \
748 [ "$__seconds" ] && __input_time=$( date -j \
/freebsd/contrib/llvm-project/libcxx/src/experimental/
H A Dtime_zone.cpp190 [[nodiscard]] static sys_seconds __to_sys_seconds(year_month_day __ymd, seconds __seconds) { in __to_sys_seconds() argument
191 seconds __result = static_cast<sys_days>(__ymd).time_since_epoch() + __seconds; in __to_sys_seconds()