(&self)
| 102 | } |
| 103 | |
| 104 | fn size(&self) -> u64 { |
| 105 | let mut size: u64 = 0xa; |
| 106 | |
| 107 | if self.addr_64_bits() { |
| 108 | size += 0x4; |
| 109 | } |
| 110 | if self.per_vector_mask() { |
| 111 | size += 0xa; |
| 112 | } |
| 113 | |
| 114 | size |
| 115 | } |
| 116 | |
| 117 | fn update(&mut self, offset: u64, data: &[u8]) { |
| 118 | // Calculate message data offset depending on the address being 32 or |
nothing calls this directly
no test coverage detected