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