Import gcc-4.4.1
[dragonfly.git] / contrib / gcc-4.4 / libstdc++-v3 / include / backward / hash_fun.h
blob8cc7a4229b5dcb2d1ea4f006da476bd92c1c6f93
1 // 'struct hash' from SGI -*- C++ -*-
3 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
26 * Copyright (c) 1996-1998
27 * Silicon Graphics Computer Systems, Inc.
29 * Permission to use, copy, modify, distribute and sell this software
30 * and its documentation for any purpose is hereby granted without fee,
31 * provided that the above copyright notice appear in all copies and
32 * that both that copyright notice and this permission notice appear
33 * in supporting documentation. Silicon Graphics makes no
34 * representations about the suitability of this software for any
35 * purpose. It is provided "as is" without express or implied warranty.
38 * Copyright (c) 1994
39 * Hewlett-Packard Company
41 * Permission to use, copy, modify, distribute and sell this software
42 * and its documentation for any purpose is hereby granted without fee,
43 * provided that the above copyright notice appear in all copies and
44 * that both that copyright notice and this permission notice appear
45 * in supporting documentation. Hewlett-Packard Company makes no
46 * representations about the suitability of this software for any
47 * purpose. It is provided "as is" without express or implied warranty.
51 /** @file backward/hash_fun.h
52 * This file is a GNU extension to the Standard C++ Library (possibly
53 * containing extensions from the HP/SGI STL subset).
56 #ifndef _HASH_FUN_H
57 #define _HASH_FUN_H 1
59 #include <cstddef>
61 _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
63 using std::size_t;
65 template<class _Key>
66 struct hash { };
68 inline size_t
69 __stl_hash_string(const char* __s)
71 unsigned long __h = 0;
72 for ( ; *__s; ++__s)
73 __h = 5 * __h + *__s;
74 return size_t(__h);
77 template<>
78 struct hash<char*>
80 size_t
81 operator()(const char* __s) const
82 { return __stl_hash_string(__s); }
85 template<>
86 struct hash<const char*>
88 size_t
89 operator()(const char* __s) const
90 { return __stl_hash_string(__s); }
93 template<>
94 struct hash<char>
96 size_t
97 operator()(char __x) const
98 { return __x; }
101 template<>
102 struct hash<unsigned char>
104 size_t
105 operator()(unsigned char __x) const
106 { return __x; }
109 template<>
110 struct hash<signed char>
112 size_t
113 operator()(unsigned char __x) const
114 { return __x; }
117 template<>
118 struct hash<short>
120 size_t
121 operator()(short __x) const
122 { return __x; }
125 template<>
126 struct hash<unsigned short>
128 size_t
129 operator()(unsigned short __x) const
130 { return __x; }
133 template<>
134 struct hash<int>
136 size_t
137 operator()(int __x) const
138 { return __x; }
141 template<>
142 struct hash<unsigned int>
144 size_t
145 operator()(unsigned int __x) const
146 { return __x; }
149 template<>
150 struct hash<long>
152 size_t
153 operator()(long __x) const
154 { return __x; }
157 template<>
158 struct hash<unsigned long>
160 size_t
161 operator()(unsigned long __x) const
162 { return __x; }
165 _GLIBCXX_END_NAMESPACE
167 #endif