Home
last modified time | relevance | path

Searched refs:ARRAY_LENGTH (Results 1 – 25 of 164) sorted by relevance

1234567

/third_party/qrcodegen/c/
Dqrcodegen-test.c38 #define ARRAY_LENGTH(name) (sizeof(name) / sizeof(name[0])) macro
230 for (size_t i = 0; i < ARRAY_LENGTH(cases); i++) { in testGetNumDataCodewords()
254 for (size_t i = 0; i < ARRAY_LENGTH(cases); i++) { in testGetNumRawDataModules()
299 uint8_t remainder[ARRAY_LENGTH(generator)]; in testReedSolomonComputeRemainder()
300 reedSolomonComputeDivisor(ARRAY_LENGTH(generator), generator); in testReedSolomonComputeRemainder()
301 reedSolomonComputeRemainder(data, 0, generator, ARRAY_LENGTH(generator), remainder); in testReedSolomonComputeRemainder()
310 uint8_t remainder[ARRAY_LENGTH(generator)]; in testReedSolomonComputeRemainder()
311 reedSolomonComputeDivisor(ARRAY_LENGTH(generator), generator); in testReedSolomonComputeRemainder()
312 …reedSolomonComputeRemainder(data, ARRAY_LENGTH(data), generator, ARRAY_LENGTH(generator), remainde… in testReedSolomonComputeRemainder()
322 uint8_t remainder[ARRAY_LENGTH(generator)]; in testReedSolomonComputeRemainder()
[all …]
/third_party/skia/third_party/externals/harfbuzz/src/
Dtest-number.cc102 assert (ARRAY_LENGTH (str) == 4); in main()
103 const char *end = str + ARRAY_LENGTH (str); in main()
115 assert (ARRAY_LENGTH (str) == 5); in main()
116 const char *end = str + ARRAY_LENGTH (str); in main()
128 assert (ARRAY_LENGTH (str) == 5); in main()
129 const char *end = str + ARRAY_LENGTH (str); in main()
141 const char *end = str + ARRAY_LENGTH (str); in main()
153 const char *end = str + ARRAY_LENGTH (str) - 1; in main()
165 const char *end = str + ARRAY_LENGTH (str) - 1; in main()
177 const char *end = str + ARRAY_LENGTH (str) - 1; in main()
[all …]
Dhb-ucd.cc141 ARRAY_LENGTH (_hb_ucd_dm2_u32_map), in hb_ucd_compose()
152 ARRAY_LENGTH (_hb_ucd_dm2_u64_map), in hb_ucd_compose()
176 if (i < ARRAY_LENGTH (_hb_ucd_dm1_p0_map) + ARRAY_LENGTH (_hb_ucd_dm1_p2_map)) in hb_ucd_decompose()
178 if (i < ARRAY_LENGTH (_hb_ucd_dm1_p0_map)) in hb_ucd_decompose()
182 i -= ARRAY_LENGTH (_hb_ucd_dm1_p0_map); in hb_ucd_decompose()
188 i -= ARRAY_LENGTH (_hb_ucd_dm1_p0_map) + ARRAY_LENGTH (_hb_ucd_dm1_p2_map); in hb_ucd_decompose()
190 if (i < ARRAY_LENGTH (_hb_ucd_dm2_u32_map)) in hb_ucd_decompose()
197 i -= ARRAY_LENGTH (_hb_ucd_dm2_u32_map); in hb_ucd_decompose()
Dhb-buffer-serialize.cc148 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint)); in _hb_buffer_serialize_glyphs_json()
151 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"cl\":%u", info[i].cluster)); in _hb_buffer_serialize_glyphs_json()
156 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"dx\":%d,\"dy\":%d", in _hb_buffer_serialize_glyphs_json()
159 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"ax\":%d,\"ay\":%d", in _hb_buffer_serialize_glyphs_json()
166 …p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"fl\":%u", info[i].mask & HB_GLYPH_FLA… in _hb_buffer_serialize_glyphs_json()
173 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"xb\":%d,\"yb\":%d", in _hb_buffer_serialize_glyphs_json()
175 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"w\":%d,\"h\":%d", in _hb_buffer_serialize_glyphs_json()
230 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint)); in _hb_buffer_serialize_unicode_json()
233 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"cl\":%u", info[i].cluster)); in _hb_buffer_serialize_unicode_json()
292 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint)); in _hb_buffer_serialize_glyphs_text()
[all …]
Dhb-common.cc175 for (unsigned int i = 0; i < ARRAY_LENGTH (direction_strings); i++) in hb_direction_from_string()
196 < ARRAY_LENGTH (direction_strings))) in hb_direction_to_string()
960 len += hb_max (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->start)); in hb_feature_to_string()
964 len += hb_max (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->end)); in hb_feature_to_string()
971 len += hb_max (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->value)); in hb_feature_to_string()
973 assert (len < ARRAY_LENGTH (s)); in hb_feature_to_string()
1067 len += hb_max (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%g", (double) variation->value)); in hb_variation_to_string()
1069 assert (len < ARRAY_LENGTH (s)); in hb_variation_to_string()
Dhb-subset-input.cc86 input->sets.drop_tables->add_array (default_drop_tables, ARRAY_LENGTH (default_drop_tables)); in hb_subset_input_create_or_fail()
102 ARRAY_LENGTH (default_no_subset_tables)); in hb_subset_input_create_or_fail()
191 …input->sets.layout_features->add_array (default_layout_features, ARRAY_LENGTH (default_layout_feat… in hb_subset_input_create_or_fail()
/third_party/harfbuzz/src/
Dtest-number.cc102 assert (ARRAY_LENGTH (str) == 4); in main()
103 const char *end = str + ARRAY_LENGTH (str); in main()
115 assert (ARRAY_LENGTH (str) == 5); in main()
116 const char *end = str + ARRAY_LENGTH (str); in main()
128 assert (ARRAY_LENGTH (str) == 5); in main()
129 const char *end = str + ARRAY_LENGTH (str); in main()
141 const char *end = str + ARRAY_LENGTH (str); in main()
153 const char *end = str + ARRAY_LENGTH (str) - 1; in main()
165 const char *end = str + ARRAY_LENGTH (str) - 1; in main()
177 const char *end = str + ARRAY_LENGTH (str) - 1; in main()
[all …]
Dhb-ucd.cc141 ARRAY_LENGTH (_hb_ucd_dm2_u32_map), in hb_ucd_compose()
152 ARRAY_LENGTH (_hb_ucd_dm2_u64_map), in hb_ucd_compose()
176 if (i < ARRAY_LENGTH (_hb_ucd_dm1_p0_map) + ARRAY_LENGTH (_hb_ucd_dm1_p2_map)) in hb_ucd_decompose()
178 if (i < ARRAY_LENGTH (_hb_ucd_dm1_p0_map)) in hb_ucd_decompose()
182 i -= ARRAY_LENGTH (_hb_ucd_dm1_p0_map); in hb_ucd_decompose()
188 i -= ARRAY_LENGTH (_hb_ucd_dm1_p0_map) + ARRAY_LENGTH (_hb_ucd_dm1_p2_map); in hb_ucd_decompose()
190 if (i < ARRAY_LENGTH (_hb_ucd_dm2_u32_map)) in hb_ucd_decompose()
197 i -= ARRAY_LENGTH (_hb_ucd_dm2_u32_map); in hb_ucd_decompose()
Dhb-buffer-serialize.cc148 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint)); in _hb_buffer_serialize_glyphs_json()
151 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"cl\":%u", info[i].cluster)); in _hb_buffer_serialize_glyphs_json()
156 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"dx\":%d,\"dy\":%d", in _hb_buffer_serialize_glyphs_json()
159 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"ax\":%d,\"ay\":%d", in _hb_buffer_serialize_glyphs_json()
166 …p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"fl\":%u", info[i].mask & HB_GLYPH_FLA… in _hb_buffer_serialize_glyphs_json()
173 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"xb\":%d,\"yb\":%d", in _hb_buffer_serialize_glyphs_json()
175 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"w\":%d,\"h\":%d", in _hb_buffer_serialize_glyphs_json()
230 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint)); in _hb_buffer_serialize_unicode_json()
233 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"cl\":%u", info[i].cluster)); in _hb_buffer_serialize_unicode_json()
292 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint)); in _hb_buffer_serialize_glyphs_text()
[all …]
Dhb-common.cc175 for (unsigned int i = 0; i < ARRAY_LENGTH (direction_strings); i++) in hb_direction_from_string()
196 < ARRAY_LENGTH (direction_strings))) in hb_direction_to_string()
963 len += hb_max (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->start)); in hb_feature_to_string()
967 len += hb_max (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->end)); in hb_feature_to_string()
974 len += hb_max (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->value)); in hb_feature_to_string()
976 assert (len < ARRAY_LENGTH (s)); in hb_feature_to_string()
1070 len += hb_max (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%g", (double) variation->value)); in hb_variation_to_string()
1072 assert (len < ARRAY_LENGTH (s)); in hb_variation_to_string()
Dhb-ot-name-language-static.hh445 ARRAY_LENGTH (hb_ms_language_map)); in _hb_ot_name_language_for_ms_code()
453 ARRAY_LENGTH (hb_mac_language_map)); in _hb_ot_name_language_for_mac_code()
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-buffer-serialize.cc145 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint)); in _hb_buffer_serialize_glyphs_json()
148 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"cl\":%u", info[i].cluster)); in _hb_buffer_serialize_glyphs_json()
153 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"dx\":%d,\"dy\":%d", in _hb_buffer_serialize_glyphs_json()
156 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"ax\":%d,\"ay\":%d", in _hb_buffer_serialize_glyphs_json()
163 …p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"fl\":%u", info[i].mask & HB_GLYPH_FLA… in _hb_buffer_serialize_glyphs_json()
170 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"xb\":%d,\"yb\":%d", in _hb_buffer_serialize_glyphs_json()
172 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"w\":%d,\"h\":%d", in _hb_buffer_serialize_glyphs_json()
231 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint)); in _hb_buffer_serialize_glyphs_text()
234 p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "=%u", info[i].cluster)); in _hb_buffer_serialize_glyphs_text()
240 …p += hb_max (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "@%d,%d", x+pos[i].x_offset, y+pos[i].y_o… in _hb_buffer_serialize_glyphs_text()
[all …]
Dhb-icu.cc189 HB_ICU_STMT (U16_APPEND (utf16, len, ARRAY_LENGTH (utf16), a, err)); in hb_icu_unicode_compose()
191 HB_ICU_STMT (U16_APPEND (utf16, len, ARRAY_LENGTH (utf16), b, err)); in hb_icu_unicode_compose()
195 …len = unorm2_normalize (unorm2_getNFCInstance (&icu_err), utf16, len, normalized, ARRAY_LENGTH (no… in hb_icu_unicode_compose()
222 ARRAY_LENGTH (decomposed), &icu_err); in hb_icu_unicode_decompose()
253 HB_ICU_STMT (U16_APPEND (utf16, len, ARRAY_LENGTH (utf16), ab, err)); in hb_icu_unicode_decompose()
257 …len = unorm2_normalize (unorm2_getNFDInstance (&icu_err), utf16, len, normalized, ARRAY_LENGTH (no… in hb_icu_unicode_decompose()
277 …unorm2_normalize (unorm2_getNFCInstance (&icu_err), normalized, len, recomposed, ARRAY_LENGTH (rec… in hb_icu_unicode_decompose()
293 …alize (unorm2_getNFCInstance (&icu_err), normalized, len, recomposed, ARRAY_LENGTH (recomposed), &… in hb_icu_unicode_decompose()
Dhb-common.cc168 for (unsigned int i = 0; i < ARRAY_LENGTH (direction_strings); i++) in hb_direction_from_string()
189 < ARRAY_LENGTH (direction_strings))) in hb_direction_to_string()
723 unsigned int len = hb_min (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - *pp)); in parse_uint()
747 unsigned int len = hb_min (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - *pp)); in parse_uint32()
828 unsigned int len = hb_min (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - *pp)); in parse_float()
1074 len += hb_max (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->start)); in hb_feature_to_string()
1078 len += hb_max (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->end)); in hb_feature_to_string()
1085 len += hb_max (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->value)); in hb_feature_to_string()
1087 assert (len < ARRAY_LENGTH (s)); in hb_feature_to_string()
1155 len += hb_max (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%g", (double) variation->value)); in hb_variation_to_string()
[all …]
Dhb-ot-cff1-table.cc128 if (sid < ARRAY_LENGTH (standard_encoding_to_code)) in lookup_standard_encoding_for_code()
136 if (sid < ARRAY_LENGTH (expert_encoding_to_code)) in lookup_expert_encoding_for_code()
144 if (glyph < ARRAY_LENGTH (expert_charset_to_sid)) in lookup_expert_charset_for_sid()
152 if (glyph < ARRAY_LENGTH (expert_subset_charset_to_sid)) in lookup_expert_subset_charset_for_sid()
160 if (code < ARRAY_LENGTH (standard_encoding_to_sid)) in lookup_standard_encoding_for_sid()
/third_party/node/test/node-api/test_threadsafe_function/
Dtest.js13 })(binding.ARRAY_LENGTH);
87 if (callCount === binding.ARRAY_LENGTH) {
102 quitAfter: binding.ARRAY_LENGTH
113 quitAfter: binding.ARRAY_LENGTH
122 quitAfter: binding.ARRAY_LENGTH
131 quitAfter: binding.ARRAY_LENGTH
218 maxQueueSize: binding.ARRAY_LENGTH >>> 1,
219 quitAfter: binding.ARRAY_LENGTH
Dbinding.c10 #define ARRAY_LENGTH 10000 macro
27 static int ints[ARRAY_LENGTH];
72 for (index = ARRAY_LENGTH - 1; index > -1 && !queue_was_closing; index--) { in data_source_thread()
273 for (index = 0; index < ARRAY_LENGTH; index++) { in Init()
277 napi_create_uint32(env, ARRAY_LENGTH, &js_array_length); in Init()
/third_party/libevdev/libevdev/
Dlibevdev-names.c68 entry = lookup_name(ev_names, ARRAY_LENGTH(ev_names), &lookup); in libevdev_event_type_from_name_n()
89 for (i = 0; i < ARRAY_LENGTH(ev_names); ++i) { in type_from_prefix()
124 entry = lookup_name(code_names, ARRAY_LENGTH(code_names), &lookup); in libevdev_event_code_from_name_n()
147 entry = lookup_name(tool_type_names, ARRAY_LENGTH(tool_type_names), &lookup); in libevdev_event_value_from_name_n()
167 entry = lookup_name(prop_names, ARRAY_LENGTH(prop_names), &lookup); in libevdev_property_from_name_n()
188 entry = lookup_name(code_names, ARRAY_LENGTH(code_names), &lookup); in libevdev_event_code_from_code_name_n()
210 entry = lookup_name(code_names, ARRAY_LENGTH(code_names), &lookup); in libevdev_event_type_from_code_name_n()
/third_party/icu/icu4c/source/test/intltest/
Dtstnorm.cpp28 #define ARRAY_LENGTH(array) UPRV_LENGTHOF(array) macro
173 for (i = 0; i < ARRAY_LENGTH(canonTests); i++) { in TestPrevious()
179 for (i = 0; i < ARRAY_LENGTH(canonTests); i++) { in TestPrevious()
189 iterateTest(norm, canonTests, ARRAY_LENGTH(canonTests), 1); in TestDecomp()
190 staticTest(UNORM_NFD, 0, canonTests, ARRAY_LENGTH(canonTests), 1); in TestDecomp()
197 iterateTest(norm, compatTests, ARRAY_LENGTH(compatTests), 1); in TestCompatDecomp()
200 compatTests, ARRAY_LENGTH(compatTests), 1); in TestCompatDecomp()
207 iterateTest(norm, canonTests, ARRAY_LENGTH(canonTests), 2); in TestCanonCompose()
210 ARRAY_LENGTH(canonTests), 2); in TestCanonCompose()
217 iterateTest(norm, compatTests, ARRAY_LENGTH(compatTests), 2); in TestCompatCompose()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dnumber_longnames.cpp26 constexpr int32_t ARRAY_LENGTH = StandardPlural::Form::COUNT + 2; variable
64 for (int32_t i = 0; i < ARRAY_LENGTH; i++) { in PluralTableSink()
181 UnicodeString simpleFormats[ARRAY_LENGTH]; in forMeasureUnit()
198 UnicodeString primaryData[ARRAY_LENGTH]; in forCompoundUnit()
201 UnicodeString secondaryData[ARRAY_LENGTH]; in forCompoundUnit()
237 UnicodeString simpleFormats[ARRAY_LENGTH]; in forCurrencyLongNames()
/third_party/node/deps/icu-small/source/i18n/
Dnumber_longnames.cpp49 constexpr int32_t ARRAY_LENGTH = StandardPlural::Form::COUNT + 3; variable
255 for (int32_t i = 0; i < ARRAY_LENGTH; i++) { in InflectedPluralSink()
382 for (int32_t i = 0; i < ARRAY_LENGTH; i++) { in PluralTableSink()
910 UnicodeString simpleFormats[ARRAY_LENGTH]; in forMeasureUnit()
989 UnicodeString numeratorUnitData[ARRAY_LENGTH]; in forArbitraryUnit()
994 UnicodeString denominatorUnitData[ARRAY_LENGTH]; in forArbitraryUnit()
1084 for (int32_t pluralIndex = 0; pluralIndex < ARRAY_LENGTH; pluralIndex++) { in processPatternTimes()
1126 PlaceholderPosition globalPlaceholder[ARRAY_LENGTH]; in processPatternTimes()
1135 for (int32_t pluralIndex = 0; pluralIndex < ARRAY_LENGTH; pluralIndex++) { in processPatternTimes()
1186 UnicodeString dimensionalityPrefixPatterns[ARRAY_LENGTH]; in processPatternTimes()
[all …]
/third_party/icu/icu4c/source/i18n/
Dnumber_longnames.cpp49 constexpr int32_t ARRAY_LENGTH = StandardPlural::Form::COUNT + 3; variable
255 for (int32_t i = 0; i < ARRAY_LENGTH; i++) { in InflectedPluralSink()
393 for (int32_t i = 0; i < ARRAY_LENGTH; i++) { in PluralTableSink()
932 UnicodeString simpleFormats[ARRAY_LENGTH]; in forMeasureUnit()
1011 UnicodeString numeratorUnitData[ARRAY_LENGTH]; in forArbitraryUnit()
1016 UnicodeString denominatorUnitData[ARRAY_LENGTH]; in forArbitraryUnit()
1106 for (int32_t pluralIndex = 0; pluralIndex < ARRAY_LENGTH; pluralIndex++) { in processPatternTimes()
1148 PlaceholderPosition globalPlaceholder[ARRAY_LENGTH]; in processPatternTimes()
1157 for (int32_t pluralIndex = 0; pluralIndex < ARRAY_LENGTH; pluralIndex++) { in processPatternTimes()
1208 UnicodeString dimensionalityPrefixPatterns[ARRAY_LENGTH]; in processPatternTimes()
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dnumber_longnames.cpp49 constexpr int32_t ARRAY_LENGTH = StandardPlural::Form::COUNT + 3; variable
255 for (int32_t i = 0; i < ARRAY_LENGTH; i++) { in InflectedPluralSink()
393 for (int32_t i = 0; i < ARRAY_LENGTH; i++) { in PluralTableSink()
932 UnicodeString simpleFormats[ARRAY_LENGTH]; in forMeasureUnit()
1011 UnicodeString numeratorUnitData[ARRAY_LENGTH]; in forArbitraryUnit()
1016 UnicodeString denominatorUnitData[ARRAY_LENGTH]; in forArbitraryUnit()
1106 for (int32_t pluralIndex = 0; pluralIndex < ARRAY_LENGTH; pluralIndex++) { in processPatternTimes()
1148 PlaceholderPosition globalPlaceholder[ARRAY_LENGTH]; in processPatternTimes()
1157 for (int32_t pluralIndex = 0; pluralIndex < ARRAY_LENGTH; pluralIndex++) { in processPatternTimes()
1208 UnicodeString dimensionalityPrefixPatterns[ARRAY_LENGTH]; in processPatternTimes()
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
DLongNameHandler.java33 private static final int ARRAY_LENGTH = StandardPlural.COUNT + 2; field in LongNameHandler
178 String[] measureData = new String[ARRAY_LENGTH]; in getUnitDisplayName()
188 String[] simpleFormats = new String[ARRAY_LENGTH]; in forCurrencyLongNames()
216 String[] simpleFormats = new String[ARRAY_LENGTH]; in forMeasureUnit()
233 String[] primaryData = new String[ARRAY_LENGTH]; in forCompoundUnit()
235 String[] secondaryData = new String[ARRAY_LENGTH]; in forCompoundUnit()
/third_party/libinput/test/
Dtest-keyboard.c35 const int num_devices = ARRAY_LENGTH(devices); in START_TEST()
184 int events[2 * (ARRAY_LENGTH(keys) + 1)]; in START_TEST()
191 while (i < 2 * ARRAY_LENGTH(keys)) { in START_TEST()
208 for (i = 0; i < ARRAY_LENGTH(keys); ++i) { in START_TEST()
245 for (i = 0; i < ARRAY_LENGTH(keys); ++i) { in START_TEST()
257 for (i = 0; i < ARRAY_LENGTH(keys); ++i) { in START_TEST()

1234567