remove BOM from files
authorLaurent Carlier <laurent.carlier@arm.com>
Mon, 1 Jun 2020 08:03:17 +0000 (09:03 +0100)
committerJim Flynn <jim.flynn@arm.com>
Wed, 3 Jun 2020 07:03:16 +0000 (07:03 +0000)
Change-Id: Ia4b4bb3be0ed6e933c77d58f8e9879b1370e9537
Signed-off-by: Laurent Carlier <laurent.carlier@arm.com>
224 files changed:
include/armnn/ArmNN.hpp
include/armnn/Descriptors.hpp
include/armnn/DescriptorsFwd.hpp
include/armnn/Exceptions.hpp
include/armnn/INetwork.hpp
include/armnn/IRuntime.hpp
include/armnn/LstmParams.hpp
include/armnn/NetworkFwd.hpp
include/armnn/Tensor.hpp
include/armnn/TensorFwd.hpp
include/armnn/Types.hpp
include/armnn/TypesUtils.hpp
include/armnn/Utils.hpp
include/armnn/backends/CpuTensorHandleFwd.hpp
include/armnn/backends/ITensorHandle.hpp
include/armnnCaffeParser/ICaffeParser.hpp
include/armnnTfParser/ITfParser.hpp
include/armnnUtils/DataLayoutIndexed.hpp
include/armnnUtils/Permute.hpp
include/armnnUtils/Transpose.hpp
profiling/common/include/NetworkSockets.hpp
profiling/common/include/SocketConnectionException.hpp
profiling/common/src/NetworkSockets.cpp
src/armnn/Descriptors.cpp
src/armnn/DllExport.hpp
src/armnn/Exceptions.cpp
src/armnn/Graph.cpp
src/armnn/Graph.hpp
src/armnn/Layer.cpp
src/armnn/LayerFwd.hpp
src/armnn/LayersFwd.hpp
src/armnn/LoadedNetwork.cpp
src/armnn/LoadedNetwork.hpp
src/armnn/Network.cpp
src/armnn/Network.hpp
src/armnn/Optimizer.cpp
src/armnn/Optimizer.hpp
src/armnn/OutputHandler.cpp
src/armnn/OutputHandler.hpp
src/armnn/Profiling.cpp
src/armnn/Profiling.hpp
src/armnn/Runtime.cpp
src/armnn/Runtime.hpp
src/armnn/Tensor.cpp
src/armnn/Utils.cpp
src/armnn/optimizations/All.hpp
src/armnn/optimizations/MovePermuteUp.hpp
src/armnn/optimizations/MoveTransposeUp.hpp
src/armnn/optimizations/Optimization.hpp
src/armnn/optimizations/OptimizeConsecutiveReshapes.hpp
src/armnn/optimizations/OptimizeInversePermutes.hpp
src/armnn/optimizations/PermuteAndBatchToSpaceAsDepthToSpace.hpp
src/armnn/optimizations/PermuteAsReshape.hpp
src/armnn/optimizations/SquashEqualSiblings.hpp
src/armnn/optimizations/TransposeAsReshape.hpp
src/armnn/test/DebugCallbackTest.cpp
src/armnn/test/GraphTests.cpp
src/armnn/test/InstrumentTests.cpp
src/armnn/test/OptimizerTests.cpp
src/armnn/test/RuntimeTests.cpp
src/armnn/test/TensorHelpers.hpp
src/armnn/test/TensorTest.cpp
src/armnn/test/UnitTests.cpp
src/armnn/test/UnitTests.hpp
src/armnn/test/UtilsTests.cpp
src/armnn/test/optimizations/ConvertConstantsFloatToHalfTests.cpp
src/armnn/test/optimizations/ConvertConstantsHalfToFloatTests.cpp
src/armnn/test/optimizations/Fp32NetworkToFp16ConverterTests.cpp
src/armnn/test/optimizations/InsertDebugLayerTests.cpp
src/armnn/test/optimizations/MovePermuteUpTests.cpp
src/armnn/test/optimizations/MoveTransposeUpTests.cpp
src/armnn/test/optimizations/OptimizeConsecutiveReshapesTests.cpp
src/armnn/test/optimizations/OptimizeInverseConversionsTests.cpp
src/armnn/test/optimizations/OptimizeInversePermutesTests.cpp
src/armnn/test/optimizations/PermuteAndBatchToSpaceAsDepthToSpaceTests.cpp
src/armnn/test/optimizations/PermuteAsReshapeTests.cpp
src/armnn/test/optimizations/SquashEqualSiblingsTests.cpp
src/armnn/test/optimizations/TransposeAsReshapeTests.cpp
src/armnnCaffeParser/CaffeParser.cpp
src/armnnCaffeParser/CaffeParser.hpp
src/armnnCaffeParser/test/TestAdd.cpp
src/armnnCaffeParser/test/TestConcat.cpp
src/armnnCaffeParser/test/TestInPlace.cpp
src/armnnCaffeParser/test/TestInputs.cpp
src/armnnCaffeParser/test/TestMul.cpp
src/armnnCaffeParser/test/TestMultiInputsOutputs.cpp
src/armnnCaffeParser/test/TestPooling2d.cpp
src/armnnCaffeParser/test/TestSplit.cpp
src/armnnConverter/ArmnnConverter.cpp
src/armnnTfParser/test/BiasAdd.cpp
src/armnnUtils/DataLayoutIndexed.cpp
src/armnnUtils/Filesystem.cpp
src/armnnUtils/Filesystem.hpp
src/armnnUtils/GraphTopologicalSort.hpp
src/armnnUtils/ParserHelper.cpp
src/armnnUtils/ParserHelper.hpp
src/armnnUtils/ParserPrototxtFixture.hpp
src/armnnUtils/Permute.cpp
src/armnnUtils/Processes.cpp
src/armnnUtils/Processes.hpp
src/armnnUtils/PrototxtConversions.cpp
src/armnnUtils/PrototxtConversions.hpp
src/armnnUtils/Transpose.cpp
src/backends/aclCommon/ArmComputeTensorUtils.cpp
src/backends/aclCommon/ArmComputeTensorUtils.hpp
src/backends/aclCommon/BaseMemoryManager.cpp
src/backends/aclCommon/BaseMemoryManager.hpp
src/backends/aclCommon/test/MemCopyTestImpl.hpp
src/backends/backendsCommon/CpuTensorHandle.cpp
src/backends/backendsCommon/CpuTensorHandle.hpp
src/backends/backendsCommon/CpuTensorHandleFwd.hpp
src/backends/backendsCommon/ITensorHandle.hpp
src/backends/backendsCommon/MemCopyWorkload.cpp
src/backends/backendsCommon/MemCopyWorkload.hpp
src/backends/backendsCommon/MemImportWorkload.cpp
src/backends/backendsCommon/MemImportWorkload.hpp
src/backends/backendsCommon/MemSyncWorkload.cpp
src/backends/backendsCommon/MemSyncWorkload.hpp
src/backends/backendsCommon/Workload.hpp
src/backends/backendsCommon/WorkloadData.cpp
src/backends/backendsCommon/WorkloadData.hpp
src/backends/backendsCommon/WorkloadDataCollector.hpp
src/backends/backendsCommon/WorkloadFactory.cpp
src/backends/backendsCommon/WorkloadFactory.hpp
src/backends/backendsCommon/WorkloadInfo.hpp
src/backends/backendsCommon/test/LayerTests.hpp
src/backends/backendsCommon/test/WorkloadDataValidation.cpp
src/backends/backendsCommon/test/WorkloadTestUtils.hpp
src/backends/backendsCommon/test/layerTests/NormalizationTestImpl.cpp
src/backends/cl/ClContextControl.cpp
src/backends/cl/ClContextControl.hpp
src/backends/cl/ClTensorHandle.hpp
src/backends/cl/ClWorkloadFactory.cpp
src/backends/cl/ClWorkloadFactory.hpp
src/backends/cl/test/ClLayerTests.cpp
src/backends/cl/workloads/ClWorkloadUtils.hpp
src/backends/neon/NeonWorkloadFactory.cpp
src/backends/neon/NeonWorkloadFactory.hpp
src/backends/neon/test/NeonLayerTests.cpp
src/backends/neon/workloads/NeonConvertFp32ToFp16Workload.cpp
src/backends/neon/workloads/NeonConvertFp32ToFp16Workload.hpp
src/backends/neon/workloads/NeonWorkloadUtils.hpp
src/backends/reference/RefWorkloadFactory.cpp
src/backends/reference/RefWorkloadFactory.hpp
src/backends/reference/test/RefLayerTests.cpp
src/backends/reference/workloads/Activation.cpp
src/backends/reference/workloads/Activation.hpp
src/backends/reference/workloads/BatchNormImpl.cpp
src/backends/reference/workloads/BatchNormImpl.hpp
src/backends/reference/workloads/Concatenate.hpp
src/backends/reference/workloads/ConvImpl.cpp
src/backends/reference/workloads/ConvImpl.hpp
src/backends/reference/workloads/FullyConnected.cpp
src/backends/reference/workloads/FullyConnected.hpp
src/backends/reference/workloads/InstanceNorm.cpp
src/backends/reference/workloads/InstanceNorm.hpp
src/backends/reference/workloads/Pooling2d.cpp
src/backends/reference/workloads/Pooling2d.hpp
src/backends/reference/workloads/RefActivationWorkload.cpp
src/backends/reference/workloads/RefActivationWorkload.hpp
src/backends/reference/workloads/RefBatchNormalizationWorkload.cpp
src/backends/reference/workloads/RefBatchNormalizationWorkload.hpp
src/backends/reference/workloads/RefConcatWorkload.cpp
src/backends/reference/workloads/RefConcatWorkload.hpp
src/backends/reference/workloads/RefConvertFp32ToFp16Workload.cpp
src/backends/reference/workloads/RefConvertFp32ToFp16Workload.hpp
src/backends/reference/workloads/RefDebugWorkload.cpp
src/backends/reference/workloads/RefDebugWorkload.hpp
src/backends/reference/workloads/RefDequantizeWorkload.cpp
src/backends/reference/workloads/RefDequantizeWorkload.hpp
src/backends/reference/workloads/RefFakeQuantizationFloat32Workload.cpp
src/backends/reference/workloads/RefFakeQuantizationFloat32Workload.hpp
src/backends/reference/workloads/RefFloorWorkload.cpp
src/backends/reference/workloads/RefFloorWorkload.hpp
src/backends/reference/workloads/RefFullyConnectedWorkload.cpp
src/backends/reference/workloads/RefFullyConnectedWorkload.hpp
src/backends/reference/workloads/RefInstanceNormalizationWorkload.cpp
src/backends/reference/workloads/RefInstanceNormalizationWorkload.hpp
src/backends/reference/workloads/RefNormalizationWorkload.cpp
src/backends/reference/workloads/RefNormalizationWorkload.hpp
src/backends/reference/workloads/RefPermuteWorkload.cpp
src/backends/reference/workloads/RefPermuteWorkload.hpp
src/backends/reference/workloads/RefPooling2dWorkload.cpp
src/backends/reference/workloads/RefPooling2dWorkload.hpp
src/backends/reference/workloads/RefResizeBilinearWorkload.cpp
src/backends/reference/workloads/RefResizeBilinearWorkload.hpp
src/backends/reference/workloads/RefResizeWorkload.cpp
src/backends/reference/workloads/RefResizeWorkload.hpp
src/backends/reference/workloads/RefSoftmaxWorkload.cpp
src/backends/reference/workloads/RefSoftmaxWorkload.hpp
src/backends/reference/workloads/RefSpaceToBatchNdWorkload.cpp
src/backends/reference/workloads/RefSpaceToBatchNdWorkload.hpp
src/backends/reference/workloads/RefSplitterWorkload.cpp
src/backends/reference/workloads/RefSplitterWorkload.hpp
src/backends/reference/workloads/RefTransposeWorkload.cpp
src/backends/reference/workloads/RefTransposeWorkload.hpp
src/backends/reference/workloads/RefWorkloadUtils.hpp
src/backends/reference/workloads/Resize.cpp
src/backends/reference/workloads/Resize.hpp
src/backends/reference/workloads/Softmax.cpp
src/backends/reference/workloads/Softmax.hpp
src/backends/reference/workloads/Splitter.hpp
src/backends/reference/workloads/TensorBufferArrayView.hpp
tests/CaffeAlexNet-Armnn/CaffeAlexNet-Armnn.cpp
tests/CaffeCifar10AcrossChannels-Armnn/CaffeCifar10AcrossChannels-Armnn.cpp
tests/CaffeInception_BN-Armnn/CaffeInception_BN-Armnn.cpp
tests/CaffeMnist-Armnn/CaffeMnist-Armnn.cpp
tests/CaffePreprocessor.cpp
tests/CaffePreprocessor.hpp
tests/CaffeResNet-Armnn/CaffeResNet-Armnn.cpp
tests/CaffeSqueezeNet1_0-Armnn/CaffeSqueezeNet1_0-Armnn.cpp
tests/CaffeVGG-Armnn/CaffeVGG-Armnn.cpp
tests/Cifar10Database.cpp
tests/Cifar10Database.hpp
tests/ExecuteNetwork/ExecuteNetwork.cpp
tests/InferenceTest.cpp
tests/InferenceTest.hpp
tests/MnistDatabase.cpp
tests/MnistDatabase.hpp
tests/MultipleNetworksCifar10/MultipleNetworksCifar10.cpp
tests/NetworkExecutionUtils/NetworkExecutionUtils.hpp
tests/TfCifar10-Armnn/TfCifar10-Armnn.cpp
tests/TfInceptionV3-Armnn/TfInceptionV3-Armnn.cpp
tests/TfMnist-Armnn/TfMnist-Armnn.cpp

index b18f14c..4b945b9 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 9e5dea2..5d0990e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index f090372..1c813b5 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index a83e31a..2f7b099 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index b840dd5..1dd949d 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 48ad7c4..c9a71ca 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 89f37ab..6b0ad5c 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index e94a2cc..619839e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 012b950..545b71a 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index edb5e8b..ffd4590 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index e58cecf..7c8a533 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 5065152..a2b3c95 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 3113d61..773a403 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 9d5547b..c4b58a2 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 3002115..82f5ac6 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 62a7b8c..a1ba59f 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index ce85ec7..b0ffc0d 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index e377cc5..b26f220 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2019 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 1ae00a1..4e9bfc0 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2019 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 0a1ba7d..39ea5c5 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index de20ff1..b970424 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index fceaa0f..d18dcc3 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index b41cbac..3ae0644 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 8f4df79..6388d4a 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 227028c..8e01d43 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 52b28e9..6039ecf 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index c1bf1db..bd0cb34 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 0946188..ae2d1ee 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index b7a6fd9..12ab035 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 4f057e6..853d2c7 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 2054413..befe381 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 4b31fa3..98ad7b8 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 91379d7..17c777d 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index d636d01..fa8eaaf 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index df4a35f..1711d2e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index cfb0693..9c7e516 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index e8770ca..025c43b 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 973d23b..bac4d23 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 352520a..41a49af 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 9a9021a..1cdf30c 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index e6ea090..08d7f7b 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index b1b7d51..76b13d1 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index d4b6dcb..e7ad3f3 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 4dc6f0d..7cb2f0e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index fbf11c9..13bf302 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 9fc2842..cb484d5 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 4fea22b..ae8a28c 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 1e20f9c..999a4eb 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 565f543..1796ac8 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 546b37d..7b7e304 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index fe0b312..1f402a7 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 7878ecf..b24576f 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index d836a9c..204d115 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index d6fb9bc..c9930a6 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index c89da83..2ae228b 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 8e6af31..a3c42b6 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 40ffde8..e0d0d94 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index ca85e11..65ea91d 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index ba921d3..5c4b625 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index ca148ed..286d9f3 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 3696a11..2e28a9a 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index d66a847..300eddf 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index fbba9a2..f7c49a5 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index a6b8b7d..0bae756 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 57cf463..38b6397 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 2c297d6..13c6926 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index e2fb3ab..cb41ff0 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index b44331c..3f3c254 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 3fa49ec..1c97267 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 3c6ed6e..1c9f15c 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index b95d3bc..b8ce470 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index f28b3a4..105204e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 01fb9c4..ab087cb 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 5843cc0..2d95286 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 5a8dd78..2495e21 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index bd13a09..96d8e2b 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index eeb937e..3b49015 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 23dcc78..82b75f4 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 47cd313..55517a0 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 249de5a..048da42 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 6d0952a..f143e69 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index cd6549a..81dcad4 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 92051b6..18c005a 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 886d7da..4a2e2ed 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 2fe720d..d19e6d8 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index f3c4b19..88b305c 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 9406553..9709773 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 28c7964..59bf4f6 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 6af989e..8356117 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index a758bd9..486aac0 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 6c216cf..86593aa 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 0f1d955..4e5e94b 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index cc86321..8681da1 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index fb06672..085e100 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 3f3837c..3457cac 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 00ebc9c..7fbaa30 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 9b236e1..6767678 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index aaadc94..45e0480 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 9d2dbf7..e80abf0 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 570c602..a207672 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 7bcf59f..192469a 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 78efb08..a300fe0 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 8a7be20..aef48b5 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2019 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index d4ad58c..7d950c5 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2019 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index c1aa79c..7bdc05e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index e7a20bf..6529286 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index c059428..be7dbd6 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 7a49739..33297fb 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 1c850db..3e76854 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 4b9140f..0d44788 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 244b5f1..482f9bd 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index fe47054..2060093 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 9239f4a..adce557 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index ac8c2e2..c105928 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 34bfd7c..0a13c99 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 98a6c36..89c073c 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index cac147c..36916d4 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 3589056..195ca80 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 9f38e47..5832391 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 40357d5..ebde68d 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index fd27ced..2ed43bc 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 0481307..0302ef5 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index ff66c6b..905930e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 3f92e86..2ea7c60 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index eb7dce6..cbe8dfe 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index f2fb80a..bc82486 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 35082f7..82934c3 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 0e9428a..d551f22 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 1ac2c61..e56c5dd 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 628cca9..00ecb13 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 5ce997c..4cd0b9e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 1c607c0..4bfb9e2 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 4086d3c..fc71eea 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 798c6e4..8de0e8b 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index b7fd50c..1bf2f55 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index e742c72..c736a78 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index c0250b9..9404dd9 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index ac82a87..75e5f8c 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 9d2f410..7e8b8ff 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index f5aa8f3..d971b8f 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 5a87520..8016c1b 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 78fa055..6f9559d 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 08c555f..d628c03 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2019 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index d73b4cd..2e3a18f 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2019 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 8ff2eb4..9b22061 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 182f9bd..61af5a3 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 78c971e..a26a639 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index a3b001e..5b2377e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 152eae9..e606649 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 7d0b6b7..0be28bb 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 72b03ef..f9950c8 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 1ccbcc5..d7e3cd9 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index e6f5c6b..d6e4964 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 8d019e3..691f713 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index d96b18b..0c61386 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 2dea3a4..5636402 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 75e9d0a..1fb1421 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index b9f259a..62a1456 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index becbae2..40b8147 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 7c4f35a..24386b7 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 4e53c4f..49e4f36 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 1ddfcdf..e72271a 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 0f6f837..2e4d811 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index cf3623b..3d00c6f 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index ffe4eb8..5207423 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 95cc4a5..c491e1e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 4e027be..cc7a555 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 387572a..1e03f2e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2020 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index a36ed45..dfde58f 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index a26e34a..407774e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index cd8835f..58ec7df 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 32eca84..00d496d 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 25c7449..fcb4cc4 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 26309b0..aff4bca 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 5d66fd5..0b448e6 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index e6e9a75..e14cd61 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index efb5823..c41d044 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index cf27d2c..c79cb78 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 7e70289..b92f1f7 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 5647bff..a57382e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 542a81e..aa814ff 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 20ff2be..733cc29 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index b0a9059..db2a234 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index f0c98f3..34f9793 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 66d8e13..3c4a032 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 1df399b..0391a9a 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 68c168f..e80211e 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index c1c5f63..9abc3a6 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 813f13a..055a852 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index c802601..144a7f2 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 977a114..31f3791 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index d42dd2d..6a88af2 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index fcee978..7208872 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
index 6d15681..d2b8306 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // Copyright © 2017 Arm Ltd. All rights reserved.
 // SPDX-License-Identifier: MIT
 //