Home
last modified time | relevance | path

Searched defs:u64 (Results 1 – 25 of 66) sorted by relevance

123

/packages/modules/Virtualization/vmbase/example/src/
Dexceptions.rs20 extern "C" fn sync_exception_current(_elr: u64, _spsr: u64) { in sync_exception_current()
27 extern "C" fn irq_current(_elr: u64, _spsr: u64) { in irq_current()
33 extern "C" fn fiq_current(_elr: u64, _spsr: u64) { in fiq_current()
39 extern "C" fn serr_current(_elr: u64, _spsr: u64) { in serr_current()
46 extern "C" fn sync_lower(_elr: u64, _spsr: u64) { in sync_lower()
53 extern "C" fn irq_lower(_elr: u64, _spsr: u64) { in irq_lower()
59 extern "C" fn fiq_lower(_elr: u64, _spsr: u64) { in fiq_lower()
65 extern "C" fn serr_lower(_elr: u64, _spsr: u64) { in serr_lower()
Dmain.rs73 pub fn main(arg0: u64, arg1: u64, arg2: u64, arg3: u64) { in main()
/packages/modules/Virtualization/pvmfw/src/
Dexceptions.rs38 extern "C" fn sync_exception_current(elr: u64, _spsr: u64) { in sync_exception_current()
50 extern "C" fn irq_current(_elr: u64, _spsr: u64) { in irq_current()
56 extern "C" fn fiq_current(_elr: u64, _spsr: u64) { in fiq_current()
62 extern "C" fn serr_current(_elr: u64, _spsr: u64) { in serr_current()
70 extern "C" fn sync_lower(_elr: u64, _spsr: u64) { in sync_lower()
78 extern "C" fn irq_lower(_elr: u64, _spsr: u64) { in irq_lower()
84 extern "C" fn fiq_lower(_elr: u64, _spsr: u64) { in fiq_lower()
90 extern "C" fn serr_lower(_elr: u64, _spsr: u64) { in serr_lower()
Dentry.rs66 pub fn start(fdt_address: u64, payload_start: u64, payload_size: u64, _arg3: u64) { in start()
271 fn jump_to_payload(fdt_address: u64, payload_start: u64, bcc: Range<usize>) -> ! { in jump_to_payload()
/packages/modules/Virtualization/vmbase/src/
Dentry.rs55 extern "C" fn rust_entry(x0: u64, x1: u64, x2: u64, x3: u64) -> ! { in rust_entry()
95 fn main(arg0: u64, arg1: u64, arg2: u64, arg3: u64); in main()
/packages/modules/Virtualization/authfs/src/fsverity/
Dverifier.rs39 chunk_index: u64, in verity_check()
40 file_size: u64, in verity_check()
76 chunk_index: u64, in fsverity_walk()
77 file_size: u64, in fsverity_walk()
127 file_size: u64, in new()
152 fn read_chunk(&self, chunk_index: u64, buf: &mut ChunkBuffer) -> io::Result<usize> { in read_chunk()
185 fn len(&self) -> u64 { in len()
191 fn read_chunk(&self, chunk_index: u64, buf: &mut ChunkBuffer) -> io::Result<usize> { in read_chunk()
211 fn read_chunk(&self, chunk_index: u64, buf: &mut ChunkBuffer) -> io::Result<usize> { in read_chunk()
216 fn total_chunk_number(file_size: u64) -> u64 { in total_chunk_number()
[all …]
Dcommon.rs45 fn log128_ceil(num: u64) -> Option<u64> { in log128_ceil()
53 pub fn merkle_tree_height(data_size: u64) -> Option<u64> { in merkle_tree_height()
60 pub fn merkle_tree_size(mut data_size: u64) -> u64 { in merkle_tree_size()
Deditor.rs97 chunk_index: u64, in read_backing_chunk_unverified()
105 chunk_index: u64, in read_backing_chunk_verified()
180 pub fn size(&self) -> u64 { in size()
285 fn read_chunk(&self, chunk_index: u64, buf: &mut ChunkBuffer) -> io::Result<usize> { in read_chunk()
334 fn read_chunk(&self, chunk_index: u64, buf: &mut ChunkBuffer) -> io::Result<usize> { in read_chunk()
Dbuilder.rs66 pub fn file_size(&self) -> u64 { in file_size()
85 pub fn update_hash(&mut self, index: usize, hash: &Sha256Hash, size_at_least: u64) { in update_hash()
/packages/modules/Bluetooth/system/gd/rust/topshim/src/
Dcontroller.rs16 fn get_ble_supported_states(self: &ControllerIntf) -> u64; in get_ble_supported_states()
17 fn get_ble_local_supported_features(self: &ControllerIntf) -> u64; in get_ble_local_supported_features()
37 pub fn get_ble_supported_states(&mut self) -> u64 { in get_ble_supported_states()
41 pub fn get_ble_local_supported_features(&mut self) -> u64 { in get_ble_local_supported_features()
/packages/modules/Virtualization/vmbase/src/hyp/hypervisor/
Dcommon.rs72 fn get_phys_mmio_token(&self, base_ipa: u64, size: u64) -> Result<u64>; in get_phys_mmio_token()
75 fn get_phys_iommu_token(&self, pviommu_id: u64, vsid: u64) -> Result<(u64, u64)>; in get_phys_iommu_token() argument
Dkvm.rs176 fn get_phys_mmio_token(&self, base_ipa: u64, size: u64) -> Result<u64> { in get_phys_mmio_token()
185 fn get_phys_iommu_token(&self, pviommu_id: u64, vsid: u64) -> Result<(u64, u64)> { in get_phys_iommu_token() argument
199 fn checked_hvc64(function: u32, args: [u64; 17]) -> Result<u64> { in checked_hvc64()
/packages/modules/Virtualization/authfs/src/
Dcommon.rs20 pub fn divide_roundup(dividend: u64, divisor: u64) -> u64 { in divide_roundup()
33 pub fn new(remaining: usize, offset: u64, alignment: usize) -> Self { in new()
60 fn collect_chunk_read_iter(remaining: usize, offset: u64) -> Vec<(u64, usize)> { in collect_chunk_read_iter()
Dfusefs.rs405 file_size: u64, in create_stat()
459 fn offset_to_chunk_index(offset: u64) -> u64 { in offset_to_chunk_index()
466 file_size: u64, in read_chunks()
467 offset: u64, in read_chunks()
570 fn forget(&self, _ctx: Context, inode: Self::Inode, count: u64) { in forget()
711 offset: u64, in read()
712 _lock_owner: Option<u64>, in read()
743 offset: u64, in write()
744 _lock_owner: Option<u64>, in write()
968 offset: u64, in readdir()
Dfile.rs42 fn read_chunk(&self, chunk_index: u64, buf: &mut ChunkBuffer) -> io::Result<usize>; in read_chunk()
106 fn read_chunk(&self, chunk_index: u64, buf: &mut ChunkBuffer) -> io::Result<usize> { in read_chunk()
/packages/modules/Virtualization/rialto/src/
Dmain.rs222 pub fn main(fdt_addr: u64, _a1: u64, _a2: u64, _a3: u64) { in main()
Dexceptions.rs39 extern "C" fn sync_exception_current(elr: u64, _spsr: u64) { in sync_exception_current()
/packages/modules/Virtualization/libs/devicemapper/src/
Dloopdevice.rs65 offset: u64, in attach()
66 size_limit: u64, in attach()
103 offset: u64, in try_attach()
104 size_limit: u64, in try_attach()
165 fn create_empty_file(path: &Path, size: u64) { in create_empty_file()
/packages/modules/Virtualization/authfs/src/file/
Dremote_file.rs28 chunk_index: u64, in remote_read_chunk()
77 fn read_chunk(&self, chunk_index: u64, buf: &mut ChunkBuffer) -> io::Result<usize> { in read_chunk()
94 fn read_chunk(&self, chunk_index: u64, buf: &mut ChunkBuffer) -> io::Result<usize> { in read_chunk()
141 fn read_chunk(&self, chunk_index: u64, buf: &mut ChunkBuffer) -> io::Result<usize> { in read_chunk()
/packages/modules/Virtualization/authfs/src/fusefs/
Dfile.rs118 pub fn file_size(&self) -> io::Result<u64> { in file_size()
124 fn read_chunk(&self, chunk_index: u64, buf: &mut ChunkBuffer) -> io::Result<usize> { in read_chunk()
/packages/modules/Virtualization/pvmfw/avb/src/
Dops.rs98 fn read_rollback_index(&mut self, _rollback_index_location: usize) -> IoResult<u64> { in read_rollback_index()
109 _index: u64, in write_rollback_index()
118 fn get_size_of_partition(&mut self, partition: &CStr) -> IoResult<u64> { in get_size_of_partition()
/packages/modules/Virtualization/vm/src/
Dcreate_partition.rs29 size: u64, in command_create_partition()
/packages/modules/Virtualization/libs/vbmeta/src/
Dlib.rs84 offset: u64, in verify_reader_region()
85 size: u64, in verify_reader_region()
152 pub fn rollback_index(&self) -> u64 { in rollback_index()
/packages/modules/Virtualization/microdroid_manager/src/
Dinstance.rs224 header_offset: u64, in write_header_at()
226 payload_size: u64, in write_header_at()
265 fn round_to_multiple(n: u64, unit: u64) -> Result<u64> { in round_to_multiple()
/packages/modules/Bluetooth/tools/rootcanal/rust/src/lmp/test/
Dcontext.rs107 fn peer_extended_features(&self, features_page: u8) -> Option<u64> { in peer_extended_features()
111 fn extended_features(&self, features_page: u8) -> u64 { in extended_features()

123