Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dbyte_count.rs53 None => Err(ByteCountOutOfBounds(ByteCountOutOfBoundsKind::RoundUp)), in new_rounded_up()
94 .ok_or(ByteCountOutOfBounds(ByteCountOutOfBoundsKind::Add)) in checked_add()
108 .ok_or_else(|| ByteCountOutOfBounds(ByteCountOutOfBoundsKind::Sub)) in checked_sub()
126 .ok_or_else(|| ByteCountOutOfBounds(ByteCountOutOfBoundsKind::Mul)) in checked_mul()
136 .ok_or_else(|| ByteCountOutOfBounds(ByteCountOutOfBoundsKind::Div)) in checked_div()
239 pub struct ByteCountOutOfBounds(ByteCountOutOfBoundsKind);
250 enum ByteCountOutOfBoundsKind { enum
262 impl fmt::Display for ByteCountOutOfBoundsKind { implementation
266 ByteCountOutOfBoundsKind::ConvertU64 => { in fmt()
271 ByteCountOutOfBoundsKind::Mul => { in fmt()
[all …]