Home
last modified time | relevance | path

Searched refs:mbytes (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/arch/x86/kernel/cpu/
Damd.c103 int mbytes = get_num_physpages() >> (20-PAGE_SHIFT); in init_amd_k6() local
146 if (mbytes > 508) in init_amd_k6()
147 mbytes = 508; in init_amd_k6()
152 l = (1<<0)|((mbytes/4)<<1); in init_amd_k6()
158 mbytes); in init_amd_k6()
167 if (mbytes > 4092) in init_amd_k6()
168 mbytes = 4092; in init_amd_k6()
173 l = ((mbytes>>2)<<22)|(1<<16); in init_amd_k6()
179 mbytes); in init_amd_k6()
/linux-4.4.14/kernel/
Dkexec_core.c708 size_t ubytes, mbytes; in kimage_load_normal_segment() local
719 mbytes = segment->memsz; in kimage_load_normal_segment()
726 while (mbytes) { in kimage_load_normal_segment()
745 mchunk = min_t(size_t, mbytes, in kimage_load_normal_segment()
765 mbytes -= mchunk; in kimage_load_normal_segment()
779 size_t ubytes, mbytes; in kimage_load_crash_segment() local
790 mbytes = segment->memsz; in kimage_load_crash_segment()
792 while (mbytes) { in kimage_load_crash_segment()
804 mchunk = min_t(size_t, mbytes, in kimage_load_crash_segment()
829 mbytes -= mchunk; in kimage_load_crash_segment()
/linux-4.4.14/crypto/
Dvmac.c368 unsigned int mbytes, /* Pos multiple of VMAC_NHBYTES */ in vhash_update() argument
378 if (!mbytes) in vhash_update()
381 BUG_ON(mbytes % VMAC_NHBYTES); in vhash_update()
384 i = mbytes / VMAC_NHBYTES; /* Must be non-zero */ in vhash_update()
409 static u64 vhash(unsigned char m[], unsigned int mbytes, in vhash() argument
420 i = mbytes / VMAC_NHBYTES; in vhash()
421 remaining = mbytes % VMAC_NHBYTES; in vhash()
461 static u64 vmac(unsigned char m[], unsigned int mbytes, in vmac() argument
483 h = vhash(m, mbytes, (u64 *)0, &ctx->__vmac_ctx); in vmac()