Home
last modified time | relevance | path

Searched refs:key2 (Results 1 – 8 of 8) sorted by relevance

/rk3399_rockchip-uboot/fs/ubifs/
H A Dkey.h474 const union ubifs_key *key2) in keys_cmp() argument
476 if (key1->u32[0] < key2->u32[0]) in keys_cmp()
478 if (key1->u32[0] > key2->u32[0]) in keys_cmp()
480 if (key1->u32[1] < key2->u32[1]) in keys_cmp()
482 if (key1->u32[1] > key2->u32[1]) in keys_cmp()
499 const union ubifs_key *key2) in keys_eq() argument
501 if (key1->u32[0] != key2->u32[0]) in keys_eq()
503 if (key1->u32[1] != key2->u32[1]) in keys_eq()
H A Dtnc_misc.c358 const union ubifs_key *key1, *key2; in read_znode() local
361 key2 = &znode->zbranch[i + 1].key; in read_znode()
363 cmp = keys_cmp(c, key1, key2); in read_znode()
H A Dtnc.c2687 union ubifs_key key1, key2; in ubifs_tnc_remove_ino() local
2723 highest_ino_key(c, &key2, xattr_inum); in ubifs_tnc_remove_ino()
2724 err = ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_tnc_remove_ino()
2737 highest_ino_key(c, &key2, inum); in ubifs_tnc_remove_ino()
2739 return ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_tnc_remove_ino()
/rk3399_rockchip-uboot/lib/rsa/
H A Drsa-mod-exp.c294 uint32_t key1[key.len], key2[key.len]; in rsa_mod_exp_sw() local
297 key.rr = key2; in rsa_mod_exp_sw()
/rk3399_rockchip-uboot/include/rockchip/
H A Drkce_core.h166 uint8_t key2[RKCE_AES_KEYSIZE_256]; // offset 0x20 member
184 uint8_t key2[RKCE_AES_KEYSIZE_256]; // offset 0x20 member
/rk3399_rockchip-uboot/scripts/kconfig/lxdialog/
H A Dutil.c551 int key2; in on_key_esc() local
557 key2 = wgetch(win); in on_key_esc()
563 if (key == KEY_ESC && key2 == ERR) in on_key_esc()
565 else if (key != ERR && key != KEY_ESC && key2 == ERR) in on_key_esc()
/rk3399_rockchip-uboot/drivers/crypto/rockchip/
H A Dcrypto_ce.c711 memset(td_buf->key2, 0x00, sizeof(td_buf->key2)); in rk_set_symm_td_buf_key()
715 memcpy(td_buf->key2, ctx->twk_key, ctx->key_len); in rk_set_symm_td_buf_key()
/rk3399_rockchip-uboot/cmd/
H A Dcrypto.c111 #define CIPHER_XTS_TEST(algo_type, mode_type, key1, key2, iv_val, in, out) { \ argument
117 .twk_key = (key2), \