Searched refs:decomposed (Results 1 - 14 of 14) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/uninorm/
H A Dtest-compat-decomposition.c29 ucs4_t decomposed[UC_DECOMPOSITION_MAX_LENGTH]; local
33 ret = uc_compat_decomposition (0x0020, decomposed);
37 ret = uc_compat_decomposition (0x00C4, decomposed);
39 ASSERT (decomposed[0] == 0x0041);
40 ASSERT (decomposed[1] == 0x0308);
43 ret = uc_compat_decomposition (0x01DE, decomposed);
45 ASSERT (decomposed[0] == 0x00C4);
46 ASSERT (decomposed[1] == 0x0304);
49 ret = uc_compat_decomposition (0x1FC1, decomposed);
51 ASSERT (decomposed[
[all...]
H A Dtest-canonical-decomposition.c28 ucs4_t decomposed[UC_DECOMPOSITION_MAX_LENGTH]; local
32 ret = uc_canonical_decomposition (0x0020, decomposed);
36 ret = uc_canonical_decomposition (0x00C4, decomposed);
38 ASSERT (decomposed[0] == 0x0041);
39 ASSERT (decomposed[1] == 0x0308);
42 ret = uc_canonical_decomposition (0x01DE, decomposed);
44 ASSERT (decomposed[0] == 0x00C4);
45 ASSERT (decomposed[1] == 0x0304);
48 ret = uc_canonical_decomposition (0x1FC1, decomposed);
50 ASSERT (decomposed[
[all...]
H A Dtest-u16-nfkc.c103 static const uint16_t decomposed[] = { 0x0041, 0x0308 }; local
105 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
110 static const uint16_t decomposed[] = { 0x0041, 0x0308, 0x0304 }; local
112 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
117 static const uint16_t decomposed[] = { 0x0041, 0x030A }; local
120 ASSERT (check (decomposed, SIZEOF (decomposed), expected, SIZEOF (expected)) == 0);
126 static const uint16_t decomposed[] local
133 static const uint16_t decomposed[] = { 0x006C }; local
140 static const uint16_t decomposed[] = { 0x0020 }; local
147 static const uint16_t decomposed[] = { 0x06A4 }; local
154 static const uint16_t decomposed[] = { 0x06A4 }; local
161 static const uint16_t decomposed[] = { 0x06A4 }; local
168 static const uint16_t decomposed[] = { 0x06A4 }; local
175 static const uint16_t decomposed[] = { 0x0031, 0x0035 }; local
182 static const uint16_t decomposed[] = { 0x0054, 0x004D }; local
189 static const uint16_t decomposed[] = { 0x0069 }; local
196 static const uint16_t decomposed[] = { 0x0028 }; local
203 static const uint16_t decomposed[] = { 0x0041 }; local
210 static const uint16_t decomposed[] = { 0x3001 }; local
217 static const uint16_t decomposed[] = { 0x3001 }; local
224 static const uint16_t decomposed[] = { 0x004D, 0x0048, 0x007A }; local
231 static const uint16_t decomposed[] = { 0x0033, 0x2044, 0x0038 }; local
238 static const uint16_t decomposed[] = { 0x03BC }; local
245 static const uint16_t decomposed[] = local
255 static const uint16_t decomposed[] = { 0x1100, 0x1173, 0x11AF }; local
262 static const uint16_t decomposed[] = { 0x1100, 0x1173 }; local
276 static const uint16_t decomposed[] = local
[all...]
H A Dtest-u32-nfkc.c103 static const uint32_t decomposed[] = { 0x0041, 0x0308 }; local
105 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
110 static const uint32_t decomposed[] = { 0x0041, 0x0308, 0x0304 }; local
112 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
117 static const uint32_t decomposed[] = { 0x0041, 0x030A }; local
120 ASSERT (check (decomposed, SIZEOF (decomposed), expected, SIZEOF (expected)) == 0);
126 static const uint32_t decomposed[] local
133 static const uint32_t decomposed[] = { 0x006C }; local
140 static const uint32_t decomposed[] = { 0x0020 }; local
147 static const uint32_t decomposed[] = { 0x06A4 }; local
154 static const uint32_t decomposed[] = { 0x06A4 }; local
161 static const uint32_t decomposed[] = { 0x06A4 }; local
168 static const uint32_t decomposed[] = { 0x06A4 }; local
175 static const uint32_t decomposed[] = { 0x0031, 0x0035 }; local
182 static const uint32_t decomposed[] = { 0x0054, 0x004D }; local
189 static const uint32_t decomposed[] = { 0x0069 }; local
196 static const uint32_t decomposed[] = { 0x0028 }; local
203 static const uint32_t decomposed[] = { 0x0041 }; local
210 static const uint32_t decomposed[] = { 0x3001 }; local
217 static const uint32_t decomposed[] = { 0x3001 }; local
224 static const uint32_t decomposed[] = { 0x004D, 0x0048, 0x007A }; local
231 static const uint32_t decomposed[] = { 0x0033, 0x2044, 0x0038 }; local
238 static const uint32_t decomposed[] = { 0x03BC }; local
245 static const uint32_t decomposed[] = local
255 static const uint32_t decomposed[] = { 0x1100, 0x1173, 0x11AF }; local
262 static const uint32_t decomposed[] = { 0x1100, 0x1173 }; local
276 static const uint32_t decomposed[] = local
[all...]
H A Dtest-decomposition.c28 ucs4_t decomposed[UC_DECOMPOSITION_MAX_LENGTH]; local
33 ret = uc_decomposition (0x0020, &tag, decomposed);
37 ret = uc_decomposition (0x00C4, &tag, decomposed);
40 ASSERT (decomposed[0] == 0x0041);
41 ASSERT (decomposed[1] == 0x0308);
44 ret = uc_decomposition (0x01DE, &tag, decomposed);
47 ASSERT (decomposed[0] == 0x00C4);
48 ASSERT (decomposed[1] == 0x0304);
51 ret = uc_decomposition (0x1FC1, &tag, decomposed);
54 ASSERT (decomposed[
[all...]
H A Dtest-u8-nfkc.c103 static const uint8_t decomposed[] = { 0x41, 0xCC, 0x88 }; local
105 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
110 static const uint8_t decomposed[] = { 0x41, 0xCC, 0x88, 0xCC, 0x84 }; local
112 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
117 static const uint8_t decomposed[] = { 0x41, 0xCC, 0x8A }; local
120 ASSERT (check (decomposed, SIZEOF (decomposed), expected, SIZEOF (expected)) == 0);
126 static const uint8_t decomposed[] local
133 static const uint8_t decomposed[] = { 0x6C }; local
140 static const uint8_t decomposed[] = { 0x20 }; local
147 static const uint8_t decomposed[] = { 0xDA, 0xA4 }; local
154 static const uint8_t decomposed[] = { 0xDA, 0xA4 }; local
161 static const uint8_t decomposed[] = { 0xDA, 0xA4 }; local
168 static const uint8_t decomposed[] = { 0xDA, 0xA4 }; local
175 static const uint8_t decomposed[] = { 0x31, 0x35 }; local
182 static const uint8_t decomposed[] = { 0x54, 0x4D }; local
189 static const uint8_t decomposed[] = { 0x69 }; local
196 static const uint8_t decomposed[] = { 0x28 }; local
203 static const uint8_t decomposed[] = { 0x41 }; local
210 static const uint8_t decomposed[] = { 0xE3, 0x80, 0x81 }; local
217 static const uint8_t decomposed[] = { 0xE3, 0x80, 0x81 }; local
224 static const uint8_t decomposed[] = { 0x4D, 0x48, 0x7A }; local
231 static const uint8_t decomposed[] = { 0x33, 0xE2, 0x81, 0x84, 0x38 }; local
238 static const uint8_t decomposed[] = { 0xCE, 0xBC }; local
245 static const uint8_t decomposed[] = local
256 static const uint8_t decomposed[] = local
264 static const uint8_t decomposed[] = { 0xE1, 0x84, 0x80, 0xE1, 0x85, 0xB3 }; local
281 static const uint8_t decomposed[] = local
[all...]
H A Dtest-u16-nfc.c103 static const uint16_t decomposed[] = { 0x0041, 0x0308 }; local
105 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
110 static const uint16_t decomposed[] = { 0x0041, 0x0308, 0x0304 }; local
112 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
117 static const uint16_t decomposed[] = { 0x0041, 0x030A }; local
120 ASSERT (check (decomposed, SIZEOF (decomposed), expected, SIZEOF (expected)) == 0);
216 static const uint16_t decomposed[] local
223 static const uint16_t decomposed[] = { 0x1100, 0x1173 }; local
237 static const uint16_t decomposed[] = local
[all...]
H A Dtest-u32-nfc.c103 static const uint32_t decomposed[] = { 0x0041, 0x0308 }; local
105 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
110 static const uint32_t decomposed[] = { 0x0041, 0x0308, 0x0304 }; local
112 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
117 static const uint32_t decomposed[] = { 0x0041, 0x030A }; local
120 ASSERT (check (decomposed, SIZEOF (decomposed), expected, SIZEOF (expected)) == 0);
216 static const uint32_t decomposed[] local
223 static const uint32_t decomposed[] = { 0x1100, 0x1173 }; local
237 static const uint32_t decomposed[] = local
[all...]
H A Dtest-u8-nfc.c103 static const uint8_t decomposed[] = { 0x41, 0xCC, 0x88 }; local
105 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
110 static const uint8_t decomposed[] = { 0x41, 0xCC, 0x88, 0xCC, 0x84 }; local
112 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
117 static const uint8_t decomposed[] = { 0x41, 0xCC, 0x8A }; local
120 ASSERT (check (decomposed, SIZEOF (decomposed), expected, SIZEOF (expected)) == 0);
216 static const uint8_t decomposed[] local
224 static const uint8_t decomposed[] = { 0xE1, 0x84, 0x80, 0xE1, 0x85, 0xB3 }; local
241 static const uint8_t decomposed[] = local
[all...]
H A Dtest-uninorm-filter-nfc.c95 static const uint32_t decomposed[] = local
105 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/uninorm/
H A Du-normalize-internal.h60 ucs4_t decomposed[UC_DECOMPOSITION_MAX_LENGTH]; local
67 count = U_MBTOUC_UNSAFE (&decomposed[0], s, s_end - s);
81 /* Invariant: decomposed[0..curr-1] is fully decomposed, i.e.
86 curr_decomposed_count = decomposer (decomposed[curr], curr_decomposed);
90 decomposed[curr], making room. It's not worth using
104 decomposed[j + shift] = decomposed[j];
107 decomposed[curr + shift] = curr_decomposed[shift];
111 /* decomposed[cur
[all...]
H A Duninorm-filter.c77 ucs4_t decomposed[UC_DECOMPOSITION_MAX_LENGTH]; local
81 decomposed[0] = uc_arg;
95 /* Invariant: decomposed[0..curr-1] is fully decomposed, i.e.
101 filter->decomposer (decomposed[curr], curr_decomposed);
105 decomposed[curr], making room. It's not worth using
119 decomposed[j + shift] = decomposed[j];
122 decomposed[curr + shift] = curr_decomposed[shift];
126 /* decomposed[cur
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/
H A Ddbus-message-util.c1063 char **decomposed; local
1164 dbus_message_get_path_decomposed (message, &decomposed);
1165 _dbus_assert (decomposed == NULL);
1166 dbus_free_string_array (decomposed);
1169 dbus_message_get_path_decomposed (message, &decomposed);
1170 _dbus_assert (decomposed != NULL);
1171 _dbus_assert (decomposed[0] == NULL);
1172 dbus_free_string_array (decomposed);
1175 dbus_message_get_path_decomposed (message, &decomposed);
1176 _dbus_assert (decomposed !
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Drichtextoverview.tex376 this object, the object is decomposed into separate objects, one object

Completed in 181 milliseconds