Searched refs:nhash (Results 1 - 14 of 14) sorted by relevance

/linux-master/crypto/
H A Dahash.c582 struct crypto_ahash *nhash; local
594 nhash = crypto_clone_tfm(&crypto_ahash_type, tfm);
596 if (IS_ERR(nhash))
597 return nhash;
599 nhash->reqsize = hash->reqsize;
600 nhash->statesize = hash->statesize;
603 struct crypto_shash **nctx = crypto_ahash_ctx(nhash);
611 nhash->using_shash = true;
613 return nhash;
621 err = alg->clone_tfm(nhash, has
[all...]
H A Dshash.c258 struct crypto_shash *nhash; local
272 nhash = crypto_clone_tfm(&crypto_shash_type, tfm);
273 if (IS_ERR(nhash))
274 return nhash;
276 nhash->descsize = hash->descsize;
279 err = alg->clone_tfm(nhash, hash);
281 crypto_free_shash(nhash);
286 return nhash;
/linux-master/fs/jffs2/
H A Ddir.c85 unsigned int nhash; local
94 /* The 'nhash' on the fd_list is not the same as the dentry hash */
95 nhash = full_name_hash(NULL, target->d_name.name, target->d_name.len);
100 for (fd_list = dir_f->dents; fd_list && fd_list->nhash <= nhash; fd_list = fd_list->next) {
101 if (fd_list->nhash == nhash &&
H A Dwrite.c248 fd->nhash = full_name_hash(NULL, name, namelen);
601 uint32_t nhash = full_name_hash(NULL, name, namelen); local
610 if (fd->nhash == nhash &&
H A Dnodelist.c32 while ((*prev) && (*prev)->nhash <= new->nhash) {
33 if ((*prev)->nhash == new->nhash && !strcmp((*prev)->name, new->name)) {
H A Dnodelist.h260 unsigned int nhash; member in struct:jffs2_full_dirent
H A Dsummary.c479 fd->nhash = full_name_hash(NULL, fd->name, checkedlen);
H A Dreadinode.c693 fd->nhash = full_name_hash(NULL, fd->name, rd->nsize);
H A Dscan.c1109 fd->nhash = full_name_hash(NULL, fd->name, checkedlen);
/linux-master/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_uld.h115 unsigned int nhash; member in struct:tid_info
H A Dcxgb4_filter.c1163 (adap->tids.nhash + (adap->tids.stid_base - adap->tids.tid_base)))
H A Dcxgb4_ethtool.c2264 nentries += tids->nhash +
H A Dcxgb4_main.c6952 adapter->tids.nhash = 1 << HASHTIDSIZE_G(v);
6956 adapter->tids.nhash = HASHTBLSIZE_G(v) << 3;
/linux-master/net/sched/
H A Dsch_api.c689 struct hlist_head *nhash, *ohash; local
698 nhash = qdisc_class_hash_alloc(nsize);
699 if (nhash == NULL)
709 hlist_add_head(&cl->hnode, &nhash[h]);
712 clhash->hash = nhash;

Completed in 385 milliseconds