Lines Matching defs:rview
127 pub fn rview(x: &[Limb]) -> ReverseView<Limb> {
268 (@1 $self:ident, $rview:ident, $t:ident, $fn:ident) => {{
269 $fn($rview[0] as $t)
275 (@2 $self:ident, $rview:ident, $t:ident, $fn:ident) => {{
276 let r0 = $rview[0] as $t;
277 let r1 = $rview[1] as $t;
284 (@nonzero2 $self:ident, $rview:ident, $t:ident, $fn:ident) => {{
285 let (v, n) = hi!(@2 $self, $rview, $t, $fn);
292 (@3 $self:ident, $rview:ident, $t:ident, $fn:ident) => {{
293 let r0 = $rview[0] as $t;
294 let r1 = $rview[1] as $t;
295 let r2 = $rview[2] as $t;
302 (@nonzero3 $self:ident, $rview:ident, $t:ident, $fn:ident) => {{
303 let (v, n) = hi!(@3 $self, $rview, $t, $fn);
311 let rslc = rview(x);