Home
last modified time | relevance | path

Searched refs:last (Results 1 – 10 of 10) sorted by relevance

/DragonOS-0.1.8/user/apps/test_signal/
Dmain.c41 clock_t last = clock(); in main() local
45 if ((clock() - last) / CLOCKS_PER_SEC >= 1) in main()
48 last = clock(); in main()
/DragonOS-0.1.8/kernel/src/libs/
Drbtree.rs1118 let last = self.last_child(); in get_last() localVariable
1119 if last.is_null() { in get_last()
1122 unsafe { Some((&(*last.0).key, &(*last.0).value)) } in get_last()
1136 let last = self.last_child(); in pop_last() localVariable
1137 if last.is_null() { in pop_last()
1140 unsafe { Some(self.delete(last)) } in pop_last()
1154 let last = self.last_child(); in get_last_mut() localVariable
1155 if last.is_null() { in get_last_mut()
1158 unsafe { Some((&(*last.0).key, &mut (*last.0).value)) } in get_last_mut()
/DragonOS-0.1.8/kernel/src/driver/disk/ahci/
Dmod.rs141 LockedAhciInode::new(disks_list.last().unwrap().clone()), in ahci_rust_init()
/DragonOS-0.1.8/user/apps/test_bind/
Dlink.lds137 end of ctors marker and it must be last */
/DragonOS-0.1.8/user/apps/test_fstat/
Dlink.lds137 end of ctors marker and it must be last */
/DragonOS-0.1.8/user/apps/test_gettimeofday/
Dlink.lds137 end of ctors marker and it must be last */
/DragonOS-0.1.8/user/apps/http_server/
Dlink.lds137 end of ctors marker and it must be last */
/DragonOS-0.1.8/user/apps/test_relibc/
Dlink.lds137 end of ctors marker and it must be last */
/DragonOS-0.1.8/kernel/src/filesystem/fat/
Dentry.rs759 let end: (Cluster, u64) = *offsets.last().unwrap();
1596 if !long_name_entries[0].is_last() || !long_name_entries.last().unwrap().is_short() { in new()
Dfs.rs767 return self.cluster_iter(start_cluster).last(); in get_last_cluster()