LoongArch: Change loongarch to LoongArch in comments
authordengjianbo <dengjianbo@loongson.cn>
Mon, 28 Aug 2023 02:08:40 +0000 (10:08 +0800)
committercaiyinyu <caiyinyu@loongson.cn>
Tue, 29 Aug 2023 02:35:38 +0000 (10:35 +0800)
24 files changed:
sysdeps/loongarch/lp64/multiarch/memcpy-aligned.S
sysdeps/loongarch/lp64/multiarch/memcpy-lasx.S
sysdeps/loongarch/lp64/multiarch/memcpy-lsx.S
sysdeps/loongarch/lp64/multiarch/memcpy-unaligned.S
sysdeps/loongarch/lp64/multiarch/memmove-aligned.S
sysdeps/loongarch/lp64/multiarch/memmove-lasx.S
sysdeps/loongarch/lp64/multiarch/memmove-lsx.S
sysdeps/loongarch/lp64/multiarch/memmove-unaligned.S
sysdeps/loongarch/lp64/multiarch/strchr-aligned.S
sysdeps/loongarch/lp64/multiarch/strchr-lasx.S
sysdeps/loongarch/lp64/multiarch/strchr-lsx.S
sysdeps/loongarch/lp64/multiarch/strchrnul-aligned.S
sysdeps/loongarch/lp64/multiarch/strchrnul-lasx.S
sysdeps/loongarch/lp64/multiarch/strchrnul-lsx.S
sysdeps/loongarch/lp64/multiarch/strcmp-aligned.S
sysdeps/loongarch/lp64/multiarch/strcmp-lsx.S
sysdeps/loongarch/lp64/multiarch/strlen-aligned.S
sysdeps/loongarch/lp64/multiarch/strlen-lasx.S
sysdeps/loongarch/lp64/multiarch/strlen-lsx.S
sysdeps/loongarch/lp64/multiarch/strncmp-aligned.S
sysdeps/loongarch/lp64/multiarch/strncmp-lsx.S
sysdeps/loongarch/lp64/multiarch/strnlen-aligned.S
sysdeps/loongarch/lp64/multiarch/strnlen-lasx.S
sysdeps/loongarch/lp64/multiarch/strnlen-lsx.S

index 299dd49..7eb3439 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized memcpy_aligned implementation using basic Loongarch instructions.
+/* Optimized memcpy_aligned implementation using basic LoongArch instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 4aae5bf..ae148df 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized memcpy implementation using Loongarch LASX instructions.
+/* Optimized memcpy implementation using LoongArch LASX instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 6ebbe7a..feb2bb0 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized memcpy implementation using Loongarch LSX instructions.
+/* Optimized memcpy implementation using LoongArch LSX instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 8e60a22..31019b1 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized unaligned memcpy implementation using basic Loongarch instructions.
+/* Optimized unaligned memcpy implementation using basic LoongArch instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 5354f38..a02114c 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized memmove_aligned implementation using basic Loongarch instructions.
+/* Optimized memmove_aligned implementation using basic LoongArch instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index ff68e7a..95d8ee7 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized memmove implementation using Loongarch LASX instructions.
+/* Optimized memmove implementation using LoongArch LASX instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 9e1502a..8a93677 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized memmove implementation using Loongarch LSX instructions.
+/* Optimized memmove implementation using LoongArch LSX instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 90a64b6..3284ce2 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized memmove_unaligned implementation using basic Loongarch instructions.
+/* Optimized memmove_unaligned implementation using basic LoongArch instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 5fb0180..6202005 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strchr implementation using basic Loongarch instructions.
+/* Optimized strchr implementation using basic LoongArch instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 254402d..4d3cc58 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strchr implementation using loongarch LASX SIMD instructions.
+/* Optimized strchr implementation using LoongArch LASX instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index dae98b0..8b78c35 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strlen implementation using loongarch LSX SIMD instructions.
+/* Optimized strlen implementation using LoongArch LSX instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 1c01a02..20856a0 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strchrnul implementation using basic Loongarch instructions.
+/* Optimized strchrnul implementation using basic LoongArch instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index d45495e..4753d4c 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strchrnul implementation using loongarch LASX SIMD instructions.
+/* Optimized strchrnul implementation using LoongArch LASX instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 07d793a..671e740 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strchrnul implementation using loongarch LSX SIMD instructions.
+/* Optimized strchrnul implementation using LoongArch LSX instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index f5f4f33..ba1f966 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strcmp implementation using basic Loongarch instructions.
+/* Optimized strcmp implementation using basic LoongArch instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 2e177a3..091c8c9 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strcmp implementation using Loongarch LSX instructions.
+/* Optimized strcmp implementation using LoongArch LSX instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index e9e1d2f..ed0548e 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strlen implementation using basic Loongarch instructions.
+/* Optimized strlen implementation using basic LoongArch instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 258c47c..91342f3 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strlen implementation using loongarch LASX SIMD instructions.
+/* Optimized strlen implementation using LoongArch LASX instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index b194355..b09c12e 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strlen implementation using Loongarch LSX SIMD instructions.
+/* Optimized strlen implementation using LoongArch LSX instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index e2687fa..f63de87 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strncmp implementation using basic Loongarch instructions.
+/* Optimized strncmp implementation using basic LoongArch instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 0b4eee2..83cb801 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strncmp implementation using Loongarch LSX instructions.
+/* Optimized strncmp implementation using LoongArch LSX instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index b900430..a8296a1 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strnlen implementation using basic Loongarch instructions.
+/* Optimized strnlen implementation using basic LoongArch instructions.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index 2c03d3d..aa6c812 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strnlen implementation using loongarch LASX instructions
+/* Optimized strnlen implementation using LoongArch LASX instructions
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
index b769a89..d0febe3 100644 (file)
@@ -1,4 +1,4 @@
-/* Optimized strnlen implementation using loongarch LSX instructions
+/* Optimized strnlen implementation using LoongArch LSX instructions
    Copyright (C) 2023 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.