Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/fs/jffs2/
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()
Dxattr.h37 uint32_t hashkey; member
/kernel/linux/linux-5.10/fs/affs/
Daffs.h18 #define AFFS_GET_HASHENTRY(data,hashkey) be32_to_cpu(((struct dir_front *)data)->hashtable[hashkey]) argument
/kernel/linux/linux-5.10/drivers/crypto/inside-secure/
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()
/kernel/liteos_a/fs/jffs2/
Djffs2.patch8701 - * is used to calcurate xdatum hashkey. The reminder of hashkey into XATTRINDEX_HASHSIZE is
8768 - xd->hashkey = 0;
8918 - xd->hashkey = xattr_datum_hashkey(xd->xprefix, xd->xname, xd->xvalue, xd->value_len);
8919 - i = xd->hashkey % XATTRINDEX_HASHSIZE;
9013 - uint32_t hashkey, name_len;
9018 - hashkey = xattr_datum_hashkey(xprefix, xname, xvalue, xsize);
9019 - i = hashkey % XATTRINDEX_HASHSIZE;
9021 - if (xd->hashkey==hashkey
9051 - xd->hashkey = hashkey;
9066 - i = hashkey % XATTRINDEX_HASHSIZE;