Searched refs:offset (Results 1 – 5 of 5) sorted by relevance
146 let offset: usize = (hmac_result[19] & 0xf) as usize; in truncate()148 bin_code = ((hmac_result[offset] & 0x7f) as u32) << 24 in truncate()149 | ((hmac_result[offset + 1] & 0xff) as u32) << 16 in truncate()150 | ((hmac_result[offset + 2] & 0xff) as u32) << 8 in truncate()151 | ((hmac_result[offset + 3] & 0xff) as u32); in truncate()
130 pub offset: size_t, field
1335 pub fn seek(&self, offset: i32, whence: Whence) -> Result<()> { in seek()1336 match unsafe { raw::TEE_SeekObjectData(self.handle(), offset, whence.into()) } { in seek()
228 pub fn _utee_storage_obj_seek(obj: c_ulong, offset: i32, whence: c_ulong) -> TEE_Result; in _utee_storage_obj_seek()
248 offset: i32, //intmax_t in TEE_SeekObjectData()
Completed in 29 milliseconds