aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAlexandre Rames <alexandre.rames@linaro.org>2016-07-01 14:22:22 +0100
committerAlexandre Rames <alexandre.rames@linaro.org>2016-07-04 08:44:15 +0100
commitb78f13911bfe6eda303e91ef215c87a165aae8ae (patch)
tree5bcaa3e59cee8ee233f0c090e67f8768bbfc09e9 /examples
parent9d9901810c19fb913383502065150bb532208674 (diff)
Add an `AUTHORS` file and update copyright notices.
Change-Id: Ifb505e5664996c1af41e38376e58ba49864213a3
Diffstat (limited to 'examples')
-rw-r--r--examples/a32/abs.cc2
-rw-r--r--examples/a32/disasm-a32.cc2
-rw-r--r--examples/a32/examples.h2
-rw-r--r--examples/a32/getting-started.cc2
-rw-r--r--examples/a32/pi.cc2
-rw-r--r--examples/a32/switch.cc2
-rw-r--r--examples/a64/abs.cc2
-rw-r--r--examples/a64/add2-vectors.cc2
-rw-r--r--examples/a64/add3-double.cc2
-rw-r--r--examples/a64/add4-double.cc2
-rw-r--r--examples/a64/check-bounds.cc2
-rw-r--r--examples/a64/crc-checksums.cc2
-rw-r--r--examples/a64/custom-disassembler.cc2
-rw-r--r--examples/a64/custom-disassembler.h2
-rw-r--r--examples/a64/debugger.cc2
-rw-r--r--examples/a64/examples.h2
-rw-r--r--examples/a64/factorial-rec.cc2
-rw-r--r--examples/a64/factorial.cc2
-rw-r--r--examples/a64/getting-started.cc2
-rw-r--r--examples/a64/literal.cc2
-rw-r--r--examples/a64/neon-matrix-multiply.cc2
-rw-r--r--examples/a64/non-const-visitor.cc2
-rw-r--r--examples/a64/non-const-visitor.h2
-rw-r--r--examples/a64/sum-array.cc2
-rw-r--r--examples/a64/swap-int32.cc2
-rw-r--r--examples/a64/swap4.cc2
26 files changed, 26 insertions, 26 deletions
diff --git a/examples/a32/abs.cc b/examples/a32/abs.cc
index f819ef38..50bf995e 100644
--- a/examples/a32/abs.cc
+++ b/examples/a32/abs.cc
@@ -1,4 +1,4 @@
-// Copyright 2016, ARM Limited
+// Copyright 2016, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a32/disasm-a32.cc b/examples/a32/disasm-a32.cc
index 28280c11..8a664ac4 100644
--- a/examples/a32/disasm-a32.cc
+++ b/examples/a32/disasm-a32.cc
@@ -1,4 +1,4 @@
-// Copyright 2016, ARM Limited
+// Copyright 2016, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a32/examples.h b/examples/a32/examples.h
index 0e75cd59..e2af0194 100644
--- a/examples/a32/examples.h
+++ b/examples/a32/examples.h
@@ -1,4 +1,4 @@
-// Copyright 2015, ARM Limited
+// Copyright 2015, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a32/getting-started.cc b/examples/a32/getting-started.cc
index 3b167d34..e7c78232 100644
--- a/examples/a32/getting-started.cc
+++ b/examples/a32/getting-started.cc
@@ -1,4 +1,4 @@
-// Copyright 2016, ARM Limited
+// Copyright 2016, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a32/pi.cc b/examples/a32/pi.cc
index ebea6260..b8f4bc92 100644
--- a/examples/a32/pi.cc
+++ b/examples/a32/pi.cc
@@ -1,4 +1,4 @@
-// Copyright 2016, ARM Limited
+// Copyright 2016, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a32/switch.cc b/examples/a32/switch.cc
index a7a00eae..689a9b27 100644
--- a/examples/a32/switch.cc
+++ b/examples/a32/switch.cc
@@ -1,4 +1,4 @@
-// Copyright 2016, ARM Limited
+// Copyright 2016, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/abs.cc b/examples/a64/abs.cc
index f9f746c9..5014d36c 100644
--- a/examples/a64/abs.cc
+++ b/examples/a64/abs.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/add2-vectors.cc b/examples/a64/add2-vectors.cc
index 3ec2b995..919606a8 100644
--- a/examples/a64/add2-vectors.cc
+++ b/examples/a64/add2-vectors.cc
@@ -1,4 +1,4 @@
-// Copyright 2015, ARM Limited
+// Copyright 2015, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/add3-double.cc b/examples/a64/add3-double.cc
index ded48f51..8590d481 100644
--- a/examples/a64/add3-double.cc
+++ b/examples/a64/add3-double.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/add4-double.cc b/examples/a64/add4-double.cc
index 897ee098..3a861d66 100644
--- a/examples/a64/add4-double.cc
+++ b/examples/a64/add4-double.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/check-bounds.cc b/examples/a64/check-bounds.cc
index 51149c03..9d2bcbad 100644
--- a/examples/a64/check-bounds.cc
+++ b/examples/a64/check-bounds.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/crc-checksums.cc b/examples/a64/crc-checksums.cc
index 1e664549..1e22245a 100644
--- a/examples/a64/crc-checksums.cc
+++ b/examples/a64/crc-checksums.cc
@@ -1,4 +1,4 @@
-// Copyright 2015, ARM Limited
+// Copyright 2015, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/custom-disassembler.cc b/examples/a64/custom-disassembler.cc
index a75e6d7a..1bf184bb 100644
--- a/examples/a64/custom-disassembler.cc
+++ b/examples/a64/custom-disassembler.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/custom-disassembler.h b/examples/a64/custom-disassembler.h
index adac833d..af310c12 100644
--- a/examples/a64/custom-disassembler.h
+++ b/examples/a64/custom-disassembler.h
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/debugger.cc b/examples/a64/debugger.cc
index 0b2bf7a0..1bff8a4b 100644
--- a/examples/a64/debugger.cc
+++ b/examples/a64/debugger.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/examples.h b/examples/a64/examples.h
index 4a18a760..4a49d1c4 100644
--- a/examples/a64/examples.h
+++ b/examples/a64/examples.h
@@ -1,4 +1,4 @@
-// Copyright 2015, ARM Limited
+// Copyright 2015, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/factorial-rec.cc b/examples/a64/factorial-rec.cc
index 2a3c7c81..0dcec209 100644
--- a/examples/a64/factorial-rec.cc
+++ b/examples/a64/factorial-rec.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/factorial.cc b/examples/a64/factorial.cc
index ca87ddda..e7430060 100644
--- a/examples/a64/factorial.cc
+++ b/examples/a64/factorial.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/getting-started.cc b/examples/a64/getting-started.cc
index 4572ea63..465b276f 100644
--- a/examples/a64/getting-started.cc
+++ b/examples/a64/getting-started.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/literal.cc b/examples/a64/literal.cc
index 2c8782af..2b338763 100644
--- a/examples/a64/literal.cc
+++ b/examples/a64/literal.cc
@@ -1,4 +1,4 @@
-// Copyright 2015, ARM Limited
+// Copyright 2015, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/neon-matrix-multiply.cc b/examples/a64/neon-matrix-multiply.cc
index 9e0db396..0e25cfea 100644
--- a/examples/a64/neon-matrix-multiply.cc
+++ b/examples/a64/neon-matrix-multiply.cc
@@ -1,4 +1,4 @@
-// Copyright 2015, ARM Limited
+// Copyright 2015, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/non-const-visitor.cc b/examples/a64/non-const-visitor.cc
index e4422650..843b4625 100644
--- a/examples/a64/non-const-visitor.cc
+++ b/examples/a64/non-const-visitor.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/non-const-visitor.h b/examples/a64/non-const-visitor.h
index 1df30c9b..138a990e 100644
--- a/examples/a64/non-const-visitor.h
+++ b/examples/a64/non-const-visitor.h
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/sum-array.cc b/examples/a64/sum-array.cc
index 99e3f98e..2f64c3fe 100644
--- a/examples/a64/sum-array.cc
+++ b/examples/a64/sum-array.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/swap-int32.cc b/examples/a64/swap-int32.cc
index e2371864..861422db 100644
--- a/examples/a64/swap-int32.cc
+++ b/examples/a64/swap-int32.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/examples/a64/swap4.cc b/examples/a64/swap4.cc
index 7a933a6a..91e9d4cf 100644
--- a/examples/a64/swap4.cc
+++ b/examples/a64/swap4.cc
@@ -1,4 +1,4 @@
-// Copyright 2014, ARM Limited
+// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without