Home
last modified time | relevance | path

Searched refs:tfms (Results 1 – 4 of 4) sorted by relevance

/linux/arch/x86/boot/
H A Dcpuflags.c71 u32 tfms; in get_cpuflags() local
87 cpuid(0x1, &tfms, &ignored, &cpu.flags[4], in get_cpuflags()
89 cpu.level = (tfms >> 8) & 15; in get_cpuflags()
91 cpu.model = (tfms >> 4) & 15; in get_cpuflags()
93 cpu.model += ((tfms >> 16) & 0xf) << 4; in get_cpuflags()
/linux/include/net/
H A Dipcomp.h15 struct crypto_comp * __percpu *tfms; global() member
/linux/drivers/md/
H A Ddm-crypt.c187 struct crypto_skcipher **tfms; member
296 return cc->cipher_tfm.tfms[0]; in any_tfm()
1476 skcipher_request_set_tfm(ctx->r.req, cc->cipher_tfm.tfms[key_index]); in crypt_alloc_req_skcipher()
2310 if (!cc->cipher_tfm.tfms) in crypt_free_tfms_skcipher()
2314 if (cc->cipher_tfm.tfms[i] && !IS_ERR(cc->cipher_tfm.tfms[i])) { in crypt_free_tfms_skcipher()
2315 crypto_free_skcipher(cc->cipher_tfm.tfms[i]); in crypt_free_tfms_skcipher()
2316 cc->cipher_tfm.tfms[i] = NULL; in crypt_free_tfms_skcipher()
2319 kfree(cc->cipher_tfm.tfms); in crypt_free_tfms_skcipher()
2320 cc->cipher_tfm.tfms = NULL; in crypt_free_tfms_skcipher()
2336 cc->cipher_tfm.tfms = kcalloc(cc->tfms_count, in crypt_alloc_tfms_skcipher()
[all …]
/linux/arch/x86/kernel/cpu/
H A Dcommon.c935 u32 junk, tfms, cap0, misc; in cpu_detect() local
937 cpuid(0x00000001, &tfms, &misc, &junk, &cap0); in cpu_detect()
938 c->x86 = x86_family(tfms); in cpu_detect()
939 c->x86_model = x86_model(tfms); in cpu_detect()
940 c->x86_stepping = x86_stepping(tfms); in cpu_detect()