/Linux-v5.10/arch/s390/crypto/ |
D | paes_s390.c | 57 static inline int _key_to_kb(struct key_blob *kb, in _key_to_kb() argument 75 memset(kb->keybuf, 0, sizeof(kb->keybuf)); in _key_to_kb() 76 h = (struct clearkey_header *) kb->keybuf; in _key_to_kb() 80 memcpy(kb->keybuf + sizeof(*h), key, keylen); in _key_to_kb() 81 kb->keylen = sizeof(*h) + keylen; in _key_to_kb() 82 kb->key = kb->keybuf; in _key_to_kb() 86 if (keylen <= sizeof(kb->keybuf)) in _key_to_kb() 87 kb->key = kb->keybuf; in _key_to_kb() 89 kb->key = kmalloc(keylen, GFP_KERNEL); in _key_to_kb() 90 if (!kb->key) in _key_to_kb() [all …]
|
/Linux-v5.10/drivers/s390/crypto/ |
D | zcrypt_ep11misc.c | 123 struct ep11keyblob *kb = (struct ep11keyblob *) (key + sizeof(*hdr)); in ep11_check_aes_key_with_hdr() local 127 if (keylen < sizeof(*hdr) + sizeof(*kb)) { in ep11_check_aes_key_with_hdr() 129 __func__, keylen, sizeof(*hdr) + sizeof(*kb)); in ep11_check_aes_key_with_hdr() 157 if (hdr->len < sizeof(*hdr) + sizeof(*kb)) { in ep11_check_aes_key_with_hdr() 160 __func__, (int) hdr->len, sizeof(*hdr) + sizeof(*kb)); in ep11_check_aes_key_with_hdr() 164 if (kb->version != EP11_STRUCT_MAGIC) { in ep11_check_aes_key_with_hdr() 167 __func__, (int) kb->version, EP11_STRUCT_MAGIC); in ep11_check_aes_key_with_hdr() 170 if (checkcpacfexp && !(kb->attr & EP11_BLOB_PKEY_EXTRACTABLE)) { in ep11_check_aes_key_with_hdr() 190 struct ep11keyblob *kb = (struct ep11keyblob *) (key + sizeof(*hdr)); in ep11_check_ecc_key_with_hdr() local 194 if (keylen < sizeof(*hdr) + sizeof(*kb)) { in ep11_check_ecc_key_with_hdr() [all …]
|
D | zcrypt_ccamisc.c | 798 } kb; in cca_gencipherkey() member 813 } kb; in cca_gencipherkey() member 851 preqparm->kb.len = sizeof(preqparm->kb); in cca_gencipherkey() 852 preqparm->kb.tlv1.len = sizeof(preqparm->kb.tlv1); in cca_gencipherkey() 853 preqparm->kb.tlv1.flag = 0x0030; in cca_gencipherkey() 854 preqparm->kb.tlv2.len = sizeof(preqparm->kb.tlv2); in cca_gencipherkey() 855 preqparm->kb.tlv2.flag = 0x0030; in cca_gencipherkey() 856 preqparm->kb.tlv3.len = sizeof(preqparm->kb.tlv3); in cca_gencipherkey() 857 preqparm->kb.tlv3.flag = 0x0030; in cca_gencipherkey() 858 memcpy(preqparm->kb.tlv3.gen_key_id_1, in cca_gencipherkey() [all …]
|
D | zcrypt_ep11misc.h | 53 struct ep11keyblob *kb = (struct ep11keyblob *) key; in is_ep11_keyblob() local 55 return (kb->version == EP11_STRUCT_MAGIC); in is_ep11_keyblob()
|
D | pkey_api.c | 231 struct ep11keyblob *kb = (struct ep11keyblob *) key; in pkey_ep11key2pkey() local 235 ZCRYPT_CEX7, EP11_API_V, kb->wkvp); in pkey_ep11key2pkey() 244 rc = ep11_kblob2protkey(card, dom, key, kb->head.len, in pkey_ep11key2pkey() 730 struct ep11keyblob *kb = (struct ep11keyblob *)key; in pkey_verifykey2() local 738 *ksize = kb->head.keybitlen; in pkey_verifykey2() 741 ZCRYPT_CEX7, EP11_API_V, kb->wkvp); in pkey_verifykey2() 817 struct ep11keyblob *kb = (struct ep11keyblob *) key; in pkey_keyblob2pkey2() local 820 rc = ep11_kblob2protkey(card, dom, key, kb->head.len, in pkey_keyblob2pkey2() 846 struct ep11keyblob *kb = (struct ep11keyblob *) in pkey_apqns4key() local 851 if (kb->attr & EP11_BLOB_PKEY_EXTRACTABLE) { in pkey_apqns4key() [all …]
|
/Linux-v5.10/drivers/tty/vt/ |
D | keyboard.c | 1124 void setledstate(struct kbd_struct *kb, unsigned int led) in setledstate() argument 1130 kb->ledmode = LED_SHOW_IOCTL; in setledstate() 1132 kb->ledmode = LED_SHOW_FLAGS; in setledstate() 1140 struct kbd_struct *kb = kbd_table + fg_console; in getleds() local 1142 if (kb->ledmode == LED_SHOW_IOCTL) in getleds() 1145 return kb->ledflagstate; in getleds() 1157 struct kbd_struct *kb = kbd_table + console; in vt_get_leds() local 1162 ret = vc_kbd_led(kb, flag); in vt_get_leds() 1179 struct kbd_struct *kb = kbd_table + console; in vt_set_led_state() local 1180 setledstate(kb, leds); in vt_set_led_state() [all …]
|
/Linux-v5.10/fs/dlm/ |
D | user.c | 85 static void compat_input(struct dlm_write_request *kb, in compat_input() argument 89 kb->version[0] = kb32->version[0]; in compat_input() 90 kb->version[1] = kb32->version[1]; in compat_input() 91 kb->version[2] = kb32->version[2]; in compat_input() 93 kb->cmd = kb32->cmd; in compat_input() 94 kb->is64bit = kb32->is64bit; in compat_input() 95 if (kb->cmd == DLM_USER_CREATE_LOCKSPACE || in compat_input() 96 kb->cmd == DLM_USER_REMOVE_LOCKSPACE) { in compat_input() 97 kb->i.lspace.flags = kb32->i.lspace.flags; in compat_input() 98 kb->i.lspace.minor = kb32->i.lspace.minor; in compat_input() [all …]
|
/Linux-v5.10/drivers/w1/slaves/ |
D | Kconfig | 86 tristate "1kb EEPROM family support (DS2431)" 89 1kb EEPROM family device (DS2431) 92 tristate "4kb EEPROM family support (DS2433)" 95 4kb EEPROM family device (DS2433). 113 tristate "512b/1kb/16kb EPROM family support" 117 512b/1kb/16kb EPROM family device (DS250x). 151 4kb EEPROM with PIO family device (DS28E04).
|
/Linux-v5.10/arch/arm/boot/dts/ |
D | tegra124-apalis.dtsi | 857 kb-row10-ps2 { 1020 kb-row0-pr0 { 1027 kb-row1-pr1 { 1036 kb-row11-ps3 { 1045 kb-col5-pq5 { 1052 kb-col6-pq6 { 1059 kb-col7-pq7 { 1068 kb-col0-pq0 { 1075 kb-col1-pq1 { 1082 kb-col2-pq2 { [all …]
|
D | tegra124-apalis-v1.2.dtsi | 860 kb-row10-ps2 { 1023 kb-row0-pr0 { 1030 kb-row1-pr1 { 1039 kb-row11-ps3 { 1048 kb-col5-pq5 { 1055 kb-col6-pq6 { 1062 kb-col7-pq7 { 1071 kb-col0-pq0 { 1078 kb-col1-pq1 { 1085 kb-col2-pq2 { [all …]
|
D | tegra30-apalis.dtsi | 169 kb-col0-pq0 { 337 kb-col2-pq2 { 347 kb-row0-pr0 { 357 kb-row5-pr5 { 489 kb-col5-pq5 { 496 kb-col6-pq6 {
|
D | tegra30-colibri.dtsi | 213 kb-row8-ps0 { 341 kb-row10-ps2 { 347 kb-row11-ps3 { 635 kb-col0-pq0 { 649 kb-row0-pr0 {
|
D | tegra30-apalis-v1.1.dtsi | 170 kb-col0-pq0 { 338 kb-col2-pq2 { 348 kb-row0-pr0 { 358 kb-row5-pr5 { 490 kb-col5-pq5 { 497 kb-col6-pq6 {
|
/Linux-v5.10/arch/mips/sgi-ip22/ |
D | Platform | 8 # address by 8kb. 23 # be 16kb aligned or the handling of the current variable will break.
|
/Linux-v5.10/Documentation/driver-api/serial/ |
D | moxa-smartio.rst | 552 spd_hi Use 57.6kb when the application requests 38.4kb. 553 spd_vhi Use 115.2kb when the application requests 38.4kb. 554 spd_shi Use 230.4kb when the application requests 38.4kb. 555 spd_warp Use 460.8kb when the application requests 38.4kb. 556 spd_normal Use 38.4kb when the application requests 38.4kb. 558 application requests 38.4kb.
|
/Linux-v5.10/Documentation/ABI/stable/ |
D | sysfs-firmware-opal-elog | 52 <16kb, often just hundreds of bytes and 53 "average" 2kb.
|
/Linux-v5.10/tools/testing/selftests/vm/ |
D | hugetlb_reparenting_test.sh | 34 kb=${hpz:14:-3} 35 mb=$(($kb / 1024))
|
/Linux-v5.10/arch/mips/sgi-ip27/ |
D | Platform | 6 # be 16kb aligned or the handling of the current variable will break.
|
/Linux-v5.10/Documentation/networking/device_drivers/atm/ |
D | cxacru.rst | 120 [2635357.696901] ATM dev 0: ADSL line: up (8128 kb/s down | 832 kb/s up)
|
/Linux-v5.10/arch/arm/boot/compressed/ |
D | head-xscale.S | 23 add r3, r2, #0x10000 @ 64 kb is quite enough...
|
/Linux-v5.10/net/ieee802154/ |
D | Kconfig | 8 devices. Maximum allowed data rate is 250 kb/s and typical personal
|
/Linux-v5.10/drivers/scsi/libsas/ |
D | Kconfig | 34 N here if you want to save the few kb this consumes.
|
/Linux-v5.10/fs/fscache/ |
D | cookie.c | 111 const void *ka, *kb; in fscache_compare_cookie() local 124 kb = &b->inline_key; in fscache_compare_cookie() 127 kb = b->key; in fscache_compare_cookie() 129 return memcmp(ka, kb, a->key_len); in fscache_compare_cookie()
|
/Linux-v5.10/arch/arm64/boot/dts/qcom/ |
D | Makefile | 27 dtb-$(CONFIG_ARCH_QCOM) += sc7180-trogdor-lazor-r1-kb.dtb
|
/Linux-v5.10/sound/soc/qcom/qdsp6/ |
D | q6asm.h | 70 u8 kb; member
|