< prev index next >

src/jdk.incubator.vector/share/classes/jdk/incubator/vector/LongVector.java

Print this page
rev 56969 : Javadoc corrections

@@ -1322,11 +1322,10 @@
     public final LongVector div(long e) {
         return lanewise(DIV, e);
     }
 
     /**
-    /**
      * {@inheritDoc} <!--workaround-->
      * @see #div(long,VectorMask)
      */
     @Override
     @ForceInline

@@ -1602,11 +1601,11 @@
      * {@code lanewise}.
      *
      * @return the bitwise complement {@code ~} of this vector
      * @see #and(Vector)
      * @see VectorOperators#NOT
-     * @see #lanewise(VectorOperators.Unary,Vector,VectorMask)
+     * @see #lanewise(VectorOperators.Unary,VectorMask)
      */
     @ForceInline
     public final LongVector not() {
         return lanewise(NOT);
     }

@@ -1742,11 +1741,11 @@
      * @return the mask result of testing lane-wise if this vector
      *         compares to the input, according to the selected
      *         comparison operator
      * @see LongVector#compare(VectorOperators.Comparison,Vector)
      * @see #eq(long)
-     * @see #lessThan(long)
+     * @see #lt(long)
      */
     public abstract
     VectorMask<Long> compare(Comparison op, long e);
 
     /*package-private*/

@@ -2548,11 +2547,12 @@
      * @param m the mask controlling lane selection
      * @return a vector loaded from a byte array
      * @throws IndexOutOfBoundsException
      *         if {@code offset+N*ESIZE < 0}
      *         or {@code offset+(N+1)*ESIZE > a.length}
-     *         for any lane {@code N} in the vector
+     *         for any lane {@code N} in the vector where
+     *         the mask is set
      */
     @ForceInline
     public static
     LongVector fromByteArray(VectorSpecies<Long> species,
                                        byte[] a, int offset,

@@ -2784,11 +2784,11 @@
      * @return a vector loaded from a byte buffer
      * @throws IllegalArgumentException if byte order of bb
      *         is not {@link ByteOrder#LITTLE_ENDIAN}
      * @throws IndexOutOfBoundsException
      *         if {@code offset+N*8 < 0}
-     *         or {@code offset+N**8 >= bb.limit()}
+     *         or {@code offset+N*8 >= bb.limit()}
      *         for any lane {@code N} in the vector
      */
     @ForceInline
     public static
     LongVector fromByteBuffer(VectorSpecies<Long> species,

@@ -2830,11 +2830,11 @@
      * @return a vector loaded from a byte buffer
      * @throws IllegalArgumentException if byte order of bb
      *         is not {@link ByteOrder#LITTLE_ENDIAN}
      * @throws IndexOutOfBoundsException
      *         if {@code offset+N*8 < 0}
-     *         or {@code offset+N**8 >= bb.limit()}
+     *         or {@code offset+N*8 >= bb.limit()}
      *         for any lane {@code N} in the vector
      *         where the mask is set
      */
     @ForceInline
     public static
< prev index next >