Home
last modified time | relevance | path

Searched refs:c_time (Results 1 – 8 of 8) sorted by relevance

/third_party/rust/crates/nix/src/
Dtime.rs228 let mut c_time: MaybeUninit<libc::timespec> = MaybeUninit::uninit(); in clock_getres() localVariable
230 unsafe { libc::clock_getres(clock_id.as_raw(), c_time.as_mut_ptr()) }; in clock_getres()
232 let res = unsafe { c_time.assume_init() }; in clock_getres()
239 let mut c_time: MaybeUninit<libc::timespec> = MaybeUninit::uninit(); in clock_gettime() localVariable
241 unsafe { libc::clock_gettime(clock_id.as_raw(), c_time.as_mut_ptr()) }; in clock_gettime()
243 let res = unsafe { c_time.assume_init() }; in clock_gettime()
/third_party/musl/src/locale/
Dlanginfo.c5 static const char c_time[] = variable
51 str = c_time; in __nl_langinfo_l()
/third_party/musl/porting/liteos_m/kernel/src/locale/
Dlanginfo.c5 static const char c_time[] = variable
48 str = c_time; in __nl_langinfo_l()
/third_party/musl/porting/liteos_a/kernel/src/locale/
Dlanginfo.c5 static const char c_time[] = variable
48 str = c_time; in __nl_langinfo_l()
/third_party/musl/porting/uniproton/kernel/src/locale/
Dlanginfo.c5 static const char c_time[] = variable
48 str = c_time; in __nl_langinfo_l()
/third_party/musl/porting/linux/user/src/locale/
Dlanginfo.c22 static const char c_time[] = variable
70 str = c_time; in __nl_langinfo_l()
/third_party/openssl/test/
Dssl_old_test.c617 long bytes, clock_t *s_time, clock_t *c_time);
619 clock_t *c_time);
910 clock_t s_time = 0, c_time = 0; in main() local
1805 ret = doit_biopair(s_ssl, c_ssl, bytes, &s_time, &c_time); in main()
1810 bytes, &s_time, &c_time); in main()
1814 bytes, &s_time, &c_time); in main()
1880 (double)c_time / CLOCKS_PER_SEC); in main()
1885 (double)s_time, (double)c_time); in main()
1917 clock_t *s_time, clock_t *c_time) in doit_localhost() argument
2086 *c_time += (clock() - c_clock); in doit_localhost()
[all …]
/third_party/alsa-lib/test/
Dlatency.c177 unsigned int p_time, c_time; in setparams() local
225 snd_pcm_hw_params_get_period_time(c_params, &c_time, NULL); in setparams()
226 if (p_time != c_time) in setparams()