Home
last modified time | relevance | path

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

/linux-4.1.27/arch/x86/kernel/cpu/
Damd.c95 int mbytes = get_num_physpages() >> (20-PAGE_SHIFT); in init_amd_k6() local
138 if (mbytes > 508) in init_amd_k6()
139 mbytes = 508; in init_amd_k6()
144 l = (1<<0)|((mbytes/4)<<1); in init_amd_k6()
150 mbytes); in init_amd_k6()
159 if (mbytes > 4092) in init_amd_k6()
160 mbytes = 4092; in init_amd_k6()
165 l = ((mbytes>>2)<<22)|(1<<16); in init_amd_k6()
171 mbytes); in init_amd_k6()
/linux-4.1.27/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()
/linux-4.1.27/kernel/
Dkexec.c1069 size_t ubytes, mbytes; in kimage_load_normal_segment() local
1080 mbytes = segment->memsz; in kimage_load_normal_segment()
1087 while (mbytes) { in kimage_load_normal_segment()
1106 mchunk = min_t(size_t, mbytes, in kimage_load_normal_segment()
1126 mbytes -= mchunk; in kimage_load_normal_segment()
1140 size_t ubytes, mbytes; in kimage_load_crash_segment() local
1151 mbytes = segment->memsz; in kimage_load_crash_segment()
1153 while (mbytes) { in kimage_load_crash_segment()
1165 mchunk = min_t(size_t, mbytes, in kimage_load_crash_segment()
1190 mbytes -= mchunk; in kimage_load_crash_segment()