MCPcopy Index your code
hub / github.com/RustPython/RustPython / u64_from_filetime

Function u64_from_filetime

crates/vm/src/stdlib/time.rs:1458–1461  ·  view source on GitHub ↗
(time: FILETIME)

Source from the content-addressed store, hash-verified

1456 }
1457
1458 fn u64_from_filetime(time: FILETIME) -> u64 {
1459 let large: [u32; 2] = [time.dwLowDateTime, time.dwHighDateTime];
1460 unsafe { core::mem::transmute(large) }
1461 }
1462
1463 fn win_perf_counter_frequency(vm: &VirtualMachine) -> PyResult<i64> {
1464 let frequency = unsafe {

Callers 2

get_thread_timeFunction · 0.85
get_process_timeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected