Skip to content

Commit

Permalink
Update copyright year in file headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
wrandelshofer committed Sep 13, 2024
1 parent 780da00 commit ce4fe1e
Show file tree
Hide file tree
Showing 123 changed files with 426 additions and 151 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractBigDecimalParser.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractBigIntegerParser.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractFloatValueParser.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractJavaFloatingPointBitsFromByteArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractJavaFloatingPointBitsFromCharArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractJavaFloatingPointBitsFromCharSequence.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractJsonFloatingPointBitsFromByteArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractJsonFloatingPointBitsFromCharArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractJsonFloatingPointBitsFromCharSequence.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractNumberParser.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)BigSignificand.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)FastDoubleMath.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)FastDoubleSwar.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
/*
* @(#)FastDoubleVector.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

import jdk.incubator.vector.*;
import jdk.incubator.vector.ByteVector;
import jdk.incubator.vector.IntVector;
import jdk.incubator.vector.LongVector;
import jdk.incubator.vector.ShortVector;
import jdk.incubator.vector.VectorMask;

import static jdk.incubator.vector.VectorOperators.*;
import static jdk.incubator.vector.VectorOperators.ADD;
import static jdk.incubator.vector.VectorOperators.LSHL;
import static jdk.incubator.vector.VectorOperators.UNSIGNED_GE;
import static jdk.incubator.vector.VectorOperators.UNSIGNED_GT;
import static jdk.incubator.vector.VectorOperators.UNSIGNED_LE;

/**
* This class provides methods for parsing multiple characters at once using
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)FastFloatMath.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)FastIntegerMath.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)FftMultiplier.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaBigDecimalFromByteArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaBigDecimalFromCharArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaBigDecimalFromCharSequence.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaBigDecimalParser.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaBigIntegerFromByteArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaBigIntegerFromCharArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaBigIntegerFromCharSequence.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaBigIntegerParser.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaDoubleBitsFromByteArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaDoubleBitsFromCharArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaDoubleBitsFromCharSequence.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaDoubleParser.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaFloatBitsFromByteArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaFloatBitsFromCharArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaFloatBitsFromCharSequence.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JavaFloatParser.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JsonDoubleBitsFromByteArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JsonDoubleBitsFromCharArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JsonDoubleBitsFromCharSequence.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)JsonDoubleParser.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)ParseDigitsTaskByteArray.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* @(#)ParseDigitsTaskCharArray.java
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)ParseDigitsTaskCharSequence.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)package-info.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* @(#)module-info.java
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/

/**
* Provides fast parsers for Java {@code FloatingPointLiteral}s,
* and JSON {@code number}s.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractBigDecimalParserTest.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractBigIntegerParserTest.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractEightDigitsTest.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractFloatValueParserTest.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* @(#)AbstractFromByteArrayVectorizedTest.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser;

Expand Down
Loading

0 comments on commit ce4fe1e

Please sign in to comment.