Update copyright notices with scripts/update-copyrights
[glibc.git] / locale / weightwc.h
blob8f047e3ba7e4c97213e2e7bd66f79a3c6f7c79d7
1 /* Copyright (C) 1996-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Written by Ulrich Drepper, <drepper@cygnus.com>.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 /* Find index of weight. */
20 auto inline int32_t
21 __attribute ((always_inline))
22 findidx (const wint_t **cpp, size_t len)
24 wint_t ch = *(*cpp)++;
25 int32_t i = __collidx_table_lookup ((const char *) table, ch);
27 if (i >= 0)
28 /* This is an index into the weight table. Cool. */
29 return i;
31 /* Oh well, more than one sequence starting with this byte.
32 Search for the correct one. */
33 const int32_t *cp = (const int32_t *) &extra[-i];
34 --len;
35 while (1)
37 size_t nhere;
38 const int32_t *usrc = (const int32_t *) *cpp;
40 /* The first thing is the index. */
41 i = *cp++;
43 /* Next is the length of the byte sequence. These are always
44 short byte sequences so there is no reason to call any
45 function (even if they are inlined). */
46 nhere = *cp++;
48 if (i >= 0)
50 /* It is a single character. If it matches we found our
51 index. Note that at the end of each list there is an
52 entry of length zero which represents the single byte
53 sequence. The first (and here only) byte was tested
54 already. */
55 size_t cnt;
57 for (cnt = 0; cnt < nhere && cnt < len; ++cnt)
58 if (cp[cnt] != usrc[cnt])
59 break;
61 if (cnt == nhere)
63 /* Found it. */
64 *cpp += nhere;
65 return i;
68 /* Up to the next entry. */
69 cp += nhere;
71 else
73 /* This is a range of characters. First decide whether the
74 current byte sequence lies in the range. */
75 size_t cnt;
76 size_t offset;
78 for (cnt = 0; cnt < nhere - 1 && cnt < len; ++cnt)
79 if (cp[cnt] != usrc[cnt])
80 break;
82 if (cnt < nhere - 1)
84 cp += 2 * nhere;
85 continue;
88 if (cp[nhere - 1] > usrc[nhere -1])
90 cp += 2 * nhere;
91 continue;
94 if (cp[2 * nhere - 1] < usrc[nhere -1])
96 cp += 2 * nhere;
97 continue;
100 /* This range matches the next characters. Now find
101 the offset in the indirect table. */
102 offset = usrc[nhere - 1] - cp[nhere - 1];
103 *cpp += nhere;
105 return indirect[-i + offset];
109 /* NOTREACHED */
110 return 0x43219876;