Home
last modified time | relevance | path

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

/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/skrifa-0.15.5/src/outline/glyf/hint/
H A Dvalue_stack.rs5 use HintErrorKind::{ValueStackOverflow, ValueStackUnderflow};
83 let value = self.peek().ok_or(ValueStackUnderflow)?; in pop()
132 let value = self.peek().ok_or(ValueStackUnderflow)?; in dup()
154 let top_ix = self.top.checked_sub(1).ok_or(ValueStackUnderflow)?; in copy_index()
155 let index = *self.values.get(top_ix).ok_or(ValueStackUnderflow)? as usize; in copy_index()
156 let element_ix = top_ix.checked_sub(index).ok_or(ValueStackUnderflow)?; in copy_index()
167 let top_ix = self.top.checked_sub(1).ok_or(ValueStackUnderflow)?; in move_index()
168 let index = *self.values.get(top_ix).ok_or(ValueStackUnderflow)? as usize; in move_index()
169 let element_ix = top_ix.checked_sub(index).ok_or(ValueStackUnderflow)?; in move_index()
263 Err(HintErrorKind::ValueStackUnderflow) in pop()
H A Derror.rs12 ValueStackUnderflow, enumerator
44 Self::ValueStackUnderflow => write!(f, "value stack underflow"), in fmt()