Home
last modified time | relevance | path

Searched refs:time_sec (Results 76 – 100 of 447) sorted by path

12345678910>>...18

/dports/devel/pecl-grpc/grpc-1.42.0/third_party/boringssl-with-bazel/src/crypto/asn1/
H A Dtime_support.c145 int time_sec, time_year, time_month, time_day; in OPENSSL_gmtime_adj() local
149 if (!julian_adj(tm, off_day, offset_sec, &time_jd, &time_sec)) { in OPENSSL_gmtime_adj()
167 tm->tm_hour = time_sec / 3600; in OPENSSL_gmtime_adj()
168 tm->tm_min = (time_sec / 60) % 60; in OPENSSL_gmtime_adj()
169 tm->tm_sec = time_sec % 60; in OPENSSL_gmtime_adj()
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/libgit2-sys-0.12.24+1.3.0/libgit2/src/
H A Ddate.c826 time_t time_sec, in approxidate_str() argument
833 p_localtime_r(&time_sec, &tm); in approxidate_str()
862 time_t time_sec; in git__date_parse() local
871 if (time(&time_sec) == -1) in git__date_parse()
874 *out = approxidate_str(date, time_sec, &error_ret); in git__date_parse()
/dports/devel/py-bullet3/bullet3-3.21/examples/pybullet/gym/pybullet_envs/minitaur/robots/
H A Dcrowd_controller.py168 self, instance_id: int, time_sec: float,
184 if time_sec < 0:
187 elif time_sec > self._current_time:
188 self._current_time = time_sec
197 self, time_sec: float, observations: Dict[Text, Any]) -> None:
228 self, time_sec: float,
242 self._instance_id, time_sec, observations)
276 del time_sec
493 if (time_sec == object_controller.INIT_TIME and
500 if time_sec == object_controller.INIT_TIME:
[all …]
H A Dobject_controller.py37 time_sec: float,
394 time_sec: float,
403 if time_sec < 0:
413 delta_t = time_sec - self._time_sec
416 self._time_sec = time_sec
469 time_sec: float,
478 time_sec = max(0, time_sec - self._start_time_sec)
479 frame = int(time_sec * self._fps)
/dports/devel/py-grpcio/grpcio-1.43.0/third_party/boringssl-with-bazel/src/crypto/asn1/
H A Dtime_support.c145 int time_sec, time_year, time_month, time_day; in OPENSSL_gmtime_adj() local
149 if (!julian_adj(tm, off_day, offset_sec, &time_jd, &time_sec)) { in OPENSSL_gmtime_adj()
167 tm->tm_hour = time_sec / 3600; in OPENSSL_gmtime_adj()
168 tm->tm_min = (time_sec / 60) % 60; in OPENSSL_gmtime_adj()
169 tm->tm_sec = time_sec % 60; in OPENSSL_gmtime_adj()
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/curl-sys-0.4.48+curl-7.79.1/curl/tests/unit/
H A Dunit1399.c55 int time_sec = (int)(time_usec / usec_magnitude); in usec_matches_seconds() local
56 bool same = (time_sec == expected_seconds); in usec_matches_seconds()
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/libgit2-sys-0.12.23+1.2.0/libgit2/src/
H A Ddate.c826 time_t time_sec, in approxidate_str() argument
833 p_localtime_r(&time_sec, &tm); in approxidate_str()
862 time_t time_sec; in git__date_parse() local
871 if (time(&time_sec) == -1) in git__date_parse()
874 *out = approxidate_str(date, time_sec, &error_ret); in git__date_parse()
/dports/devel/tokei/tokei-12.1.2/cargo-crates/libgit2-sys-0.12.17+1.1.0/libgit2/src/
H A Ddate.c826 time_t time_sec, in approxidate_str() argument
833 p_localtime_r(&time_sec, &tm); in approxidate_str()
862 time_t time_sec; in git__date_parse() local
871 if (time(&time_sec) == -1) in git__date_parse()
874 *out = approxidate_str(date, time_sec, &error_ret); in git__date_parse()
/dports/devel/wasi-libc/wasi-libc-ad5133410f66b93a2381db5b542aad5e0964db96/libc-top-half/musl/src/linux/
H A Dclock_adjtime.c15 long long time_sec, time_usec; member
29 long time_sec, time_usec; member
51 .time_sec = utx->time.tv_sec, in clock_adjtime()
75 utx->time.tv_sec = ktx.time_sec; in clock_adjtime()
104 .time_sec = utx->time.tv_sec, in clock_adjtime()
132 utx->time.tv_sec = ktx.time_sec; in clock_adjtime()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/newlib/libc/sys/linux/include/rpc/
H A Dauth_kerb.h76 unsigned long time_sec; /* Time ticket issued */ member
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/newlib/libc/sys/linux/include/rpc/
H A Dauth_kerb.h76 unsigned long time_sec; /* Time ticket issued */ member
/dports/dns/nsd/nsd-4.3.9/dnstap/
H A Ddnstap.c273 uint64_t *time_sec, protobuf_c_boolean *has_time_sec, in dt_fill_timeval() argument
277 *time_sec = tv->tv_sec; in dt_fill_timeval()
/dports/dns/unbound/unbound-1.14.0/dnstap/
H A Ddnstap.c283 uint64_t *time_sec, protobuf_c_boolean *has_time_sec, in dt_fill_timeval() argument
287 *time_sec = tv->tv_sec; in dt_fill_timeval()
H A Dunbound-dnstap-socket.c497 static char* tv_to_str(protobuf_c_boolean has_time_sec, uint64_t time_sec, in tv_to_str() argument
504 if(has_time_sec) tv.tv_sec = time_sec; in tv_to_str()
511 (unsigned)time_sec, (unsigned)time_nsec, buf); in tv_to_str()
/dports/editors/emacs-devel/emacs-4d1968b/src/
H A Dw32.c7215 ULONGLONG time_sec = time_100ns / 10000000; in ltime() local
7217 return list4i (time_sec >> 16, time_sec & 0xffff, in ltime()
/dports/editors/emacs/emacs-27.2/src/
H A Dw32.c7116 ULONGLONG time_sec = time_100ns / 10000000; in ltime() local
7118 return list4i (time_sec >> 16, time_sec & 0xffff, in ltime()
/dports/emulators/fuse-utils/fuse-utils-1.4.3/
H A Dfmfconv.c180 libspectrum_qword time_sec = 0, time_frm = 0; /* current time (input) no */ variable
1087 time_sec++; in fmf_read_frame_head()
1348 … if( cut_cmd == TYPE_CUT && ( cut_t_t == TYPE_FRAME ? frame_no > cut__to : time_sec > cut__to ) ) in fmf_read_slice()
1350 if( ( cut_f_t == TYPE_FRAME ? frame_no >= cut_frm : time_sec >= cut_frm ) && in fmf_read_slice()
1351 …( cut_cmd == TYPE_CUTFROM || ( cut_t_t == TYPE_FRAME ? frame_no <= cut__to : time_sec <= cut__to )… in fmf_read_slice()
1686 …f( stderr, "[%s%s]%8"PRIu64"\r", bar + 78 - 70 * perc / 100, spc + 8 + 70 * perc / 100, time_sec ); in print_progress()
2163 frame_no, time_sec, fmf_slice_no, fmf_sound_no ); in main()
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/lib/libffmpeg/libavformat/
H A Dmatroskadec.c3086 double time_sec = time_ns / nano_seconds_per_second; in buffer_size_after_time_downloaded() local
3109 double percent_to_sub = search_sec / (desc_end_time_sec - time_sec); in buffer_size_after_time_downloaded()
3134 double percent_to_sub = search_sec / (desc_end_time_sec - time_sec); in buffer_size_after_time_downloaded()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/
H A Do_time.c74 int time_sec, time_year, time_month, time_day; in OPENSSL_gmtime_adj() local
78 if (!julian_adj(tm, off_day, offset_sec, &time_jd, &time_sec)) in OPENSSL_gmtime_adj()
94 tm->tm_hour = time_sec / 3600; in OPENSSL_gmtime_adj()
95 tm->tm_min = (time_sec / 60) % 60; in OPENSSL_gmtime_adj()
96 tm->tm_sec = time_sec % 60; in OPENSSL_gmtime_adj()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/ts/
H A Dts_rsp_sign.c989 time_t time_sec = (time_t)sec; in TS_RESP_set_genTime_with_precision() local
998 if ((tm = OPENSSL_gmtime(&time_sec, &tm_result)) == NULL) in TS_RESP_set_genTime_with_precision()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/
H A Do_time.c74 int time_sec, time_year, time_month, time_day; in OPENSSL_gmtime_adj() local
78 if (!julian_adj(tm, off_day, offset_sec, &time_jd, &time_sec)) in OPENSSL_gmtime_adj()
94 tm->tm_hour = time_sec / 3600; in OPENSSL_gmtime_adj()
95 tm->tm_min = (time_sec / 60) % 60; in OPENSSL_gmtime_adj()
96 tm->tm_sec = time_sec % 60; in OPENSSL_gmtime_adj()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/ts/
H A Dts_rsp_sign.c989 time_t time_sec = (time_t)sec; in TS_RESP_set_genTime_with_precision() local
998 if ((tm = OPENSSL_gmtime(&time_sec, &tm_result)) == NULL) in TS_RESP_set_genTime_with_precision()
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/
H A Do_time.c74 int time_sec, time_year, time_month, time_day; in OPENSSL_gmtime_adj() local
78 if (!julian_adj(tm, off_day, offset_sec, &time_jd, &time_sec)) in OPENSSL_gmtime_adj()
94 tm->tm_hour = time_sec / 3600; in OPENSSL_gmtime_adj()
95 tm->tm_min = (time_sec / 60) % 60; in OPENSSL_gmtime_adj()
96 tm->tm_sec = time_sec % 60; in OPENSSL_gmtime_adj()
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/ts/
H A Dts_rsp_sign.c990 time_t time_sec = (time_t)sec; in TS_RESP_set_genTime_with_precision() local
999 if ((tm = OPENSSL_gmtime(&time_sec, &tm_result)) == NULL) in TS_RESP_set_genTime_with_precision()
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/
H A Do_time.c74 int time_sec, time_year, time_month, time_day; in OPENSSL_gmtime_adj() local
78 if (!julian_adj(tm, off_day, offset_sec, &time_jd, &time_sec)) in OPENSSL_gmtime_adj()
94 tm->tm_hour = time_sec / 3600; in OPENSSL_gmtime_adj()
95 tm->tm_min = (time_sec / 60) % 60; in OPENSSL_gmtime_adj()
96 tm->tm_sec = time_sec % 60; in OPENSSL_gmtime_adj()

12345678910>>...18