Home
last modified time | relevance | path

Searched refs:hashkey (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-support/curl/curl/
H A DCVE-2022-27775.patch4 Subject: [PATCH] conncache: include the zone id in the "bundle" hashkey
23 @@ -155,8 +155,12 @@ static void hashkey(struct connectdata *conn, char *buf,
/OK3568_Linux_fs/kernel/fs/jffs2/
H A Dxattr.c97 xd->hashkey = 0; in unload_xattr_datum()
247 xd->hashkey = xattr_datum_hashkey(xd->xprefix, xd->xname, xd->xvalue, xd->value_len); in do_load_xattr_datum()
248 i = xd->hashkey % XATTRINDEX_HASHSIZE; in do_load_xattr_datum()
342 uint32_t hashkey, name_len; in create_xattr_datum() local
347 hashkey = xattr_datum_hashkey(xprefix, xname, xvalue, xsize); in create_xattr_datum()
348 i = hashkey % XATTRINDEX_HASHSIZE; in create_xattr_datum()
350 if (xd->hashkey==hashkey in create_xattr_datum()
380 xd->hashkey = hashkey; in create_xattr_datum()
395 i = hashkey % XATTRINDEX_HASHSIZE; in create_xattr_datum()
H A Dxattr.h37 uint32_t hashkey; member
/OK3568_Linux_fs/kernel/fs/affs/
H A Daffs.h18 #define AFFS_GET_HASHENTRY(data,hashkey) be32_to_cpu(((struct dir_front *)data)->hashtable[hashkey]) argument
/OK3568_Linux_fs/kernel/drivers/crypto/inside-secure/
H A Dsafexcel_cipher.c2567 u32 hashkey[AES_BLOCK_SIZE >> 2]; in safexcel_aead_gcm_setkey() local
2598 memset(hashkey, 0, AES_BLOCK_SIZE); in safexcel_aead_gcm_setkey()
2599 crypto_cipher_encrypt_one(ctx->hkaes, (u8 *)hashkey, (u8 *)hashkey); in safexcel_aead_gcm_setkey()
2603 if (be32_to_cpu(ctx->base.ipad.be[i]) != hashkey[i]) { in safexcel_aead_gcm_setkey()
2611 ctx->base.ipad.be[i] = cpu_to_be32(hashkey[i]); in safexcel_aead_gcm_setkey()
2613 memzero_explicit(hashkey, AES_BLOCK_SIZE); in safexcel_aead_gcm_setkey()