Lines Matching refs:Limb
17 data: Vec<bigint::Limb>,
32 pub fn try_from(x: &[bigint::Limb]) -> Option<Self> {
73 pub fn try_push(&mut self, value: bigint::Limb) -> Option<()> {
80 pub fn pop(&mut self) -> Option<bigint::Limb> {
86 pub fn try_extend(&mut self, slc: &[bigint::Limb]) -> Option<()> {
96 pub fn try_resize(&mut self, len: usize, value: bigint::Limb) -> Option<()> {
133 pub fn add_small(&mut self, y: bigint::Limb) -> Option<()> {
139 pub fn mul_small(&mut self, y: bigint::Limb) -> Option<()> {
171 type Target = [bigint::Limb];
173 fn deref(&self) -> &[bigint::Limb] {
180 fn deref_mut(&mut self) -> &mut [bigint::Limb] {
185 impl ops::MulAssign<&[bigint::Limb]> for HeapVec {
187 fn mul_assign(&mut self, rhs: &[bigint::Limb]) {