atoi_larson.C 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these libraries and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /*
  24. * $XConsortium: atoi_larson.cc /main/3 1996/06/11 17:35:35 cde-hal $
  25. *
  26. * Copyright (c) 1992 HaL Computer Systems, Inc. All rights reserved.
  27. * UNPUBLISHED -- rights reserved under the Copyright Laws of the United
  28. * States. Use of a copyright notice is precautionary only and does not
  29. * imply publication or disclosure.
  30. *
  31. * This software contains confidential information and trade secrets of HaL
  32. * Computer Systems, Inc. Use, disclosure, or reproduction is prohibited
  33. * without the prior express written permission of HaL Computer Systems, Inc.
  34. *
  35. * RESTRICTED RIGHTS LEGEND
  36. * Use, duplication, or disclosure by the Government is subject to
  37. * restrictions as set forth in subparagraph (c)(l)(ii) of the Rights in
  38. * Technical Data and Computer Software clause at DFARS 252.227-7013.
  39. * HaL Computer Systems, Inc.
  40. * 1315 Dell Avenue, Campbell, CA 95008
  41. *
  42. */
  43. #include "utility/atoi_larson.h"
  44. atoi_larson::atoi_larson(int _range) : v_range(_range)
  45. {
  46. }
  47. atoi_larson::~atoi_larson()
  48. {
  49. }
  50. int
  51. atoi_larson::atoi(const char* str, int offset, int rang) const
  52. {
  53. return atoi(str, strlen(str), offset, rang);
  54. }
  55. int
  56. atoi_larson::atoi(const char* str, int sz, int, int rang) const
  57. {
  58. unsigned int sum = 0;
  59. for ( int i=0; i<sz; i++ ) {
  60. sum *= 37;
  61. sum += str[i];
  62. }
  63. return sum % ((rang == 0) ? v_range : rang);
  64. }
  65. int
  66. atoi_larson::atoi(const key_type& k, int) const
  67. {
  68. char* string = k.get();
  69. int l = k.size();
  70. unsigned int sum = 0;
  71. for ( int i=0; i<l; i++ ) {
  72. //sum *= 37;
  73. sum <<= 7;
  74. sum |= string[i];
  75. }
  76. return sum % v_range;
  77. }