multiway_merge.h: Uglify equally_split and equally_split_point throughout.
authorPaolo Carlini <paolo@gcc.gnu.org>
Sun, 24 Apr 2011 23:51:49 +0000 (23:51 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Sun, 24 Apr 2011 23:51:49 +0000 (23:51 +0000)
2011-04-24  Paolo Carlini  <paolo.carlini@oracle.com>

* include/parallel/multiway_merge.h: Uglify equally_split
and equally_split_point throughout.
* include/parallel/par_loop.h: Likewise.
* include/parallel/equally_split.h: Likewise.
* include/parallel/set_operations.h: Likewise.
* include/parallel/unique_copy.h: Likewise.
* include/parallel/multiway_mergesort.h: Likewise.
* include/parallel/search.h: Likewise.
* include/parallel/partial_sum.h: Likewise.
* include/parallel/find.h: Likewise.

From-SVN: r172923

libstdc++-v3/ChangeLog
libstdc++-v3/include/parallel/equally_split.h
libstdc++-v3/include/parallel/find.h
libstdc++-v3/include/parallel/multiway_merge.h
libstdc++-v3/include/parallel/multiway_mergesort.h
libstdc++-v3/include/parallel/par_loop.h
libstdc++-v3/include/parallel/partial_sum.h
libstdc++-v3/include/parallel/search.h
libstdc++-v3/include/parallel/set_operations.h
libstdc++-v3/include/parallel/unique_copy.h

index 629435dc9204a723f03535833154c0d0cc646e99..9d767f5beeffb4565c17d957fce3319f0c182a80 100644 (file)
@@ -1,10 +1,23 @@
+2011-04-24  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       * include/parallel/multiway_merge.h: Uglify equally_split
+       and equally_split_point throughout.
+       * include/parallel/par_loop.h: Likewise.
+       * include/parallel/equally_split.h: Likewise.
+       * include/parallel/set_operations.h: Likewise.
+       * include/parallel/unique_copy.h: Likewise.
+       * include/parallel/multiway_mergesort.h: Likewise.
+       * include/parallel/search.h: Likewise.
+       * include/parallel/partial_sum.h: Likewise.
+       * include/parallel/find.h: Likewise.
+
 2011-04-24  Gerald Pfeifer  <gerald@pfeifer.com>
 
        * doc/xml/manual/parallel_mode.xml: Fix link to libgomp online
        documentation.  Expand link text.
 
 2011-04-24  Gerald Pfeifer  <gerald@pfeifer.com>
-       
+
        * libsupc++/cxxabi.h: Adjust link to FAQ entry.
 
 2011-04-22  François Dumont  <francois.cppdevs@free.fr>
@@ -37,7 +50,7 @@
        (ref(const A&&), cref(const A&&): Define as deleted.
        * include/std/future (async): Simplify SFINAE and use result_of to
        support pointer to member.
-       * testsuite/20_util/reference_wrapper/invoke.cc: Test pointer to 
+       * testsuite/20_util/reference_wrapper/invoke.cc: Test pointer to
        member.
        * testsuite/20_util/reference_wrapper/24803.cc: Likewise.
        * testsuite/20_util/reference_wrapper/typedefs.cc: Test for types
index 481c9886840b3da3b9af33ac3ec9e2b4f077b8f4..a840ae3147aad1c1465c98e47d9d14659cd775fe 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 
-// Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+// Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the terms
@@ -45,8 +45,8 @@ namespace __gnu_parallel
    *  @returns End of __splitter sequence, i.e. @c __s+__num_threads+1 */
   template<typename _DifferenceType, typename _OutputIterator>
     _OutputIterator
-    equally_split(_DifferenceType __n, _ThreadIndex __num_threads,
-                 _OutputIterator __s)
+    __equally_split(_DifferenceType __n, _ThreadIndex __num_threads,
+                   _OutputIterator __s)
     {
       _DifferenceType __chunk_length = __n / __num_threads;
       _DifferenceType __num_longer_chunks = __n % __num_threads;
@@ -71,9 +71,9 @@ namespace __gnu_parallel
    *  @returns splitting point */
   template<typename _DifferenceType>
     _DifferenceType
-    equally_split_point(_DifferenceType __n,
-                       _ThreadIndex __num_threads,
-                       _ThreadIndex __thread_no)
+    __equally_split_point(_DifferenceType __n,
+                         _ThreadIndex __num_threads,
+                         _ThreadIndex __thread_no)
     {
       _DifferenceType __chunk_length = __n / __num_threads;
       _DifferenceType __num_longer_chunks = __n % __num_threads;
index 28bc703e5885dca688e0c275c57a8ceeb0f1e012..bd4294a12a7f6e7531180963fcf94ff150b41907 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 
-// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+// Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the terms
@@ -118,7 +118,7 @@ namespace __gnu_parallel
        {
          __num_threads = omp_get_num_threads();
          __borders = new _DifferenceType[__num_threads + 1];
-         equally_split(__length, __num_threads, __borders);
+         __equally_split(__length, __num_threads, __borders);
        } //single
 
        _ThreadIndex __iam = omp_get_thread_num();
index 0fd3da2d656c1507dbbc5ed4fc20a94f2ac3eea0..a5fd3be1bd08e859ab9ea0636e6b9102277f96d4 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 
-// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+// Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the terms
@@ -1139,7 +1139,7 @@ namespace __gnu_parallel
 
       _DifferenceType* __borders =
        new _DifferenceType[__num_threads + 1];
-      equally_split(__length, __num_threads, __borders);
+      __equally_split(__length, __num_threads, __borders);
 
       for (_ThreadIndex __s = 0; __s < (__num_threads - 1); ++__s)
        {
index c0dab63f1401c0075af2d7ddf6148566d54fa664..2cb8013876699d06f787dbab162ca79a4919e600 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 
-// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+// Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the terms
@@ -105,8 +105,8 @@ namespace __gnu_parallel
 
       _DifferenceType* __es = new _DifferenceType[__num_samples + 2];
 
-      equally_split(__sd->_M_starts[__iam + 1] - __sd->_M_starts[__iam], 
-                   __num_samples + 1, __es);
+      __equally_split(__sd->_M_starts[__iam + 1] - __sd->_M_starts[__iam], 
+                     __num_samples + 1, __es);
 
       for (_DifferenceType __i = 0; __i < __num_samples; ++__i)
        ::new(&(__sd->_M_samples[__iam * __num_samples + __i]))
index 1e21d3ad042fc540932659e27e2fbc5e3a8c71f2..9671c1dd398a5de012f4ee99ea39ffb04d4ff577 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 
-// Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+// Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the terms
@@ -95,8 +95,8 @@ namespace __gnu_parallel
          (::operator new(sizeof(_Result)));
 
        _DifferenceType
-         __start = equally_split_point(__length, __num_threads, __iam),
-         __stop = equally_split_point(__length, __num_threads, __iam + 1);
+         __start = __equally_split_point(__length, __num_threads, __iam),
+         __stop = __equally_split_point(__length, __num_threads, __iam + 1);
 
        if (__start < __stop)
          {
index 5513c2f9375241e434da0d5050a7a2cf07608d31..425e868fe6bb699f2e41be80f8b24543f11b3312 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 
-// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+// Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the terms
@@ -124,7 +124,7 @@ namespace __gnu_parallel
          __borders = new _DifferenceType[__num_threads + 2];
 
          if (__s.partial_sum_dilation == 1.0f)
-           equally_split(__n, __num_threads + 1, __borders);
+           __equally_split(__n, __num_threads + 1, __borders);
          else
            {
              _DifferenceType __first_part_length =
index 9709925618d90ff707b16ada3effc78483402db2..9544ff9e069f060aa9fe5476a6669df64fe4a605 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 
-// Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+// Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the terms
@@ -120,7 +120,7 @@ namespace __gnu_parallel
        {
          __num_threads = omp_get_num_threads();
          __splitters = new _DifferenceType[__num_threads + 1];
-         equally_split(__input_length, __num_threads, __splitters);
+         __equally_split(__input_length, __num_threads, __splitters);
        }
 
        _ThreadIndex __iam = omp_get_thread_num();
index f552c1dda1b776597586908f3c18377a27e958bd..9699ae9840f3e46b33ab72a8038bede5098c97d3 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 
-// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+// Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the terms
@@ -383,7 +383,7 @@ namespace __gnu_parallel
          __num_threads = omp_get_num_threads();
 
          __borders = new _DifferenceType[__num_threads + 2];
-         equally_split(__size, __num_threads + 1, __borders);
+         __equally_split(__size, __num_threads + 1, __borders);
          __block_begins = new _IteratorPair[__num_threads + 1];
          // Very __start.
          __block_begins[0] = std::make_pair(__begin1, __begin2);
index 72c84a9ccf2f50496127128b27b0417cef9c64ac..27221e78a3a21e3e116cc2ca594d22d202c6602f 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 
-// Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+// Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the terms
@@ -74,7 +74,7 @@ namespace __gnu_parallel
        {
          __num_threads = omp_get_num_threads();
          __borders = new _DifferenceType[__num_threads + 2];
-         equally_split(__size, __num_threads + 1, __borders);
+         __equally_split(__size, __num_threads + 1, __borders);
          __counter = new _DifferenceType[__num_threads + 1];
        }