Home
last modified time | relevance | path

Searched refs:key_count (Results 1 – 6 of 6) sorted by relevance

/third_party/mbedtls/tests/suites/
Dtest_suite_des.function109 void des3_encrypt_ecb(int key_count, data_t *key_str,
119 if (key_count == 2) {
121 } else if (key_count == 3) {
137 void des3_decrypt_ecb(int key_count, data_t *key_str,
147 if (key_count == 2) {
149 } else if (key_count == 3) {
165 void des3_encrypt_cbc(int key_count, data_t *key_str,
176 if (key_count == 2) {
178 } else if (key_count == 3) {
199 void des3_decrypt_cbc(int key_count, data_t *key_str,
[all …]
/third_party/toybox/toys/pending/
Dgetfattr.c38 int i, key_count; local
56 for (key = keys, key_count = 0; key-keys < keys_len; key += strlen(key)+1)
57 key_count++;
58 sorted_keys = xmalloc(key_count * sizeof(char *));
61 qsort(sorted_keys, key_count, sizeof(char *), qstrcmp);
65 for (i = 0; i < key_count; i++) {
/third_party/libinput/src/
Devdev.c119 int key_count; in evdev_update_key_down_count() local
123 key_count = ++device->key_count[code]; in evdev_update_key_down_count()
125 assert(device->key_count[code] > 0); in evdev_update_key_down_count()
126 key_count = --device->key_count[code]; in evdev_update_key_down_count()
129 if (key_count > 32) { in evdev_update_key_down_count()
135 return key_count; in evdev_update_key_down_count()
Devdev-fallback.h245 return device->key_count[code]; in get_key_down_count()
Devdev.h250 uint8_t key_count[KEY_CNT]; member
/third_party/libinput/patch/diff_libinput_mmi/libinput/
Dlibinput_0000.diff2402 + if (tp->device->key_count[button] == 0 &&
3127 int key_count;
3131 + if (device->key_count[code] == pressed) {
3137 key_count = ++device->key_count[code];