1         $type$[] a = fa.apply(SPECIES.length());
   2         $type$[] b = fb.apply(SPECIES.length());
   3         $type$[] r = fr.apply(SPECIES.length());
   4         boolean[] mask = fm.apply(SPECIES.length());
   5         VectorMask<$Wideboxtype$> vmask = VectorMask.fromValues(SPECIES, mask);
   6 
   7         for (int ic = 0; ic < INVOC_COUNT; ic++) {
   8             for (int i = 0; i < a.length; i += SPECIES.length()) {
   9                 $abstractvectortype$ av = $abstractvectortype$.fromArray(SPECIES, a, i);
  10                 $abstractvectortype$ bv = $abstractvectortype$.fromArray(SPECIES, b, i);
  11                 av.[[TEST]](bv, vmask).intoArray(r, i);
  12             }
  13         }