tfms               90 arch/x86/boot/cpuflags.c 	u32 tfms;
tfms              106 arch/x86/boot/cpuflags.c 			cpuid(0x1, &tfms, &ignored, &cpu.flags[4],
tfms              108 arch/x86/boot/cpuflags.c 			cpu.level = (tfms >> 8) & 15;
tfms              110 arch/x86/boot/cpuflags.c 			cpu.model = (tfms >> 4) & 15;
tfms              112 arch/x86/boot/cpuflags.c 				cpu.model += ((tfms >> 16) & 0xf) << 4;
tfms              810 arch/x86/kernel/cpu/common.c 		u32 junk, tfms, cap0, misc;
tfms              812 arch/x86/kernel/cpu/common.c 		cpuid(0x00000001, &tfms, &misc, &junk, &cap0);
tfms              813 arch/x86/kernel/cpu/common.c 		c->x86		= x86_family(tfms);
tfms              814 arch/x86/kernel/cpu/common.c 		c->x86_model	= x86_model(tfms);
tfms              815 arch/x86/kernel/cpu/common.c 		c->x86_stepping	= x86_stepping(tfms);
tfms              473 drivers/gpu/drm/gma500/mmu.c 		uint32_t tfms, misc, cap0, cap4, clflush_size;
tfms              480 drivers/gpu/drm/gma500/mmu.c 		cpuid(0x00000001, &tfms, &misc, &cap0, &cap4);
tfms              162 drivers/md/dm-crypt.c 		struct crypto_skcipher **tfms;
tfms              231 drivers/md/dm-crypt.c 	return cc->cipher_tfm.tfms[0];
tfms             1147 drivers/md/dm-crypt.c 	skcipher_request_set_tfm(ctx->r.req, cc->cipher_tfm.tfms[key_index]);
tfms             1748 drivers/md/dm-crypt.c 	if (!cc->cipher_tfm.tfms)
tfms             1752 drivers/md/dm-crypt.c 		if (cc->cipher_tfm.tfms[i] && !IS_ERR(cc->cipher_tfm.tfms[i])) {
tfms             1753 drivers/md/dm-crypt.c 			crypto_free_skcipher(cc->cipher_tfm.tfms[i]);
tfms             1754 drivers/md/dm-crypt.c 			cc->cipher_tfm.tfms[i] = NULL;
tfms             1757 drivers/md/dm-crypt.c 	kfree(cc->cipher_tfm.tfms);
tfms             1758 drivers/md/dm-crypt.c 	cc->cipher_tfm.tfms = NULL;
tfms             1774 drivers/md/dm-crypt.c 	cc->cipher_tfm.tfms = kcalloc(cc->tfms_count,
tfms             1777 drivers/md/dm-crypt.c 	if (!cc->cipher_tfm.tfms)
tfms             1781 drivers/md/dm-crypt.c 		cc->cipher_tfm.tfms[i] = crypto_alloc_skcipher(ciphermode, 0, 0);
tfms             1782 drivers/md/dm-crypt.c 		if (IS_ERR(cc->cipher_tfm.tfms[i])) {
tfms             1783 drivers/md/dm-crypt.c 			err = PTR_ERR(cc->cipher_tfm.tfms[i]);
tfms             1803 drivers/md/dm-crypt.c 	cc->cipher_tfm.tfms = kmalloc(sizeof(struct crypto_aead *), GFP_KERNEL);
tfms             1804 drivers/md/dm-crypt.c 	if (!cc->cipher_tfm.tfms)
tfms             1885 drivers/md/dm-crypt.c 			r = crypto_skcipher_setkey(cc->cipher_tfm.tfms[i],
tfms               13 include/net/ipcomp.h 	struct crypto_comp * __percpu *tfms;
tfms               38 include/net/seg6_hmac.h 	struct crypto_shash * __percpu *tfms;
tfms              132 net/ipv6/seg6_hmac.c 	tfm = *this_cpu_ptr(algo->tfms);
tfms              367 net/ipv6/seg6_hmac.c 		algo->tfms = alloc_percpu(struct crypto_shash *);
tfms              368 net/ipv6/seg6_hmac.c 		if (!algo->tfms)
tfms              375 net/ipv6/seg6_hmac.c 			p_tfm = per_cpu_ptr(algo->tfms, cpu);
tfms              379 net/ipv6/seg6_hmac.c 		p_tfm = raw_cpu_ptr(algo->tfms);
tfms              430 net/ipv6/seg6_hmac.c 			tfm = *per_cpu_ptr(algo->tfms, cpu);
tfms              433 net/ipv6/seg6_hmac.c 		free_percpu(algo->tfms);
tfms               29 net/xfrm/xfrm_ipcomp.c 	struct crypto_comp * __percpu *tfms;
tfms               46 net/xfrm/xfrm_ipcomp.c 	struct crypto_comp *tfm = *per_cpu_ptr(ipcd->tfms, cpu);
tfms              146 net/xfrm/xfrm_ipcomp.c 	tfm = *this_cpu_ptr(ipcd->tfms);
tfms              243 net/xfrm/xfrm_ipcomp.c static void ipcomp_free_tfms(struct crypto_comp * __percpu *tfms)
tfms              249 net/xfrm/xfrm_ipcomp.c 		if (pos->tfms == tfms)
tfms              261 net/xfrm/xfrm_ipcomp.c 	if (!tfms)
tfms              265 net/xfrm/xfrm_ipcomp.c 		struct crypto_comp *tfm = *per_cpu_ptr(tfms, cpu);
tfms              268 net/xfrm/xfrm_ipcomp.c 	free_percpu(tfms);
tfms              274 net/xfrm/xfrm_ipcomp.c 	struct crypto_comp * __percpu *tfms;
tfms              282 net/xfrm/xfrm_ipcomp.c 		tfm = this_cpu_read(*pos->tfms);
tfms              286 net/xfrm/xfrm_ipcomp.c 			return pos->tfms;
tfms              298 net/xfrm/xfrm_ipcomp.c 	pos->tfms = tfms = alloc_percpu(struct crypto_comp *);
tfms              299 net/xfrm/xfrm_ipcomp.c 	if (!tfms)
tfms              307 net/xfrm/xfrm_ipcomp.c 		*per_cpu_ptr(tfms, cpu) = tfm;
tfms              310 net/xfrm/xfrm_ipcomp.c 	return tfms;
tfms              313 net/xfrm/xfrm_ipcomp.c 	ipcomp_free_tfms(tfms);
tfms              319 net/xfrm/xfrm_ipcomp.c 	if (ipcd->tfms)
tfms              320 net/xfrm/xfrm_ipcomp.c 		ipcomp_free_tfms(ipcd->tfms);
tfms              359 net/xfrm/xfrm_ipcomp.c 	ipcd->tfms = ipcomp_alloc_tfms(x->calg->alg_name);
tfms              360 net/xfrm/xfrm_ipcomp.c 	if (!ipcd->tfms)