Searched refs:mbytes (Results 1 – 3 of 3) sorted by relevance
/linux-3.4.99/arch/x86/kernel/cpu/ |
D | amd.c | 61 int mbytes = num_physpages >> (20-PAGE_SHIFT); in init_amd_k6() local 104 if (mbytes > 508) in init_amd_k6() 105 mbytes = 508; in init_amd_k6() 110 l = (1<<0)|((mbytes/4)<<1); in init_amd_k6() 116 mbytes); in init_amd_k6() 125 if (mbytes > 4092) in init_amd_k6() 126 mbytes = 4092; in init_amd_k6() 131 l = ((mbytes>>2)<<22)|(1<<16); in init_amd_k6() 137 mbytes); in init_amd_k6()
|
/linux-3.4.99/kernel/ |
D | kexec.c | 787 unsigned long ubytes, mbytes; in kimage_load_normal_segment() local 794 mbytes = segment->memsz; in kimage_load_normal_segment() 801 while (mbytes) { in kimage_load_normal_segment() 821 if (mchunk > mbytes) in kimage_load_normal_segment() 822 mchunk = mbytes; in kimage_load_normal_segment() 837 mbytes -= mchunk; in kimage_load_normal_segment() 851 unsigned long ubytes, mbytes; in kimage_load_crash_segment() local 858 mbytes = segment->memsz; in kimage_load_crash_segment() 860 while (mbytes) { in kimage_load_crash_segment() 873 if (mchunk > mbytes) in kimage_load_crash_segment() [all …]
|
/linux-3.4.99/crypto/ |
D | vmac.c | 368 unsigned int mbytes, /* Pos multiple of VMAC_NHBYTES */ in vhash_update() argument 379 i = mbytes / VMAC_NHBYTES; /* Must be non-zero */ in vhash_update() 404 static u64 vhash(unsigned char m[], unsigned int mbytes, in vhash() argument 415 i = mbytes / VMAC_NHBYTES; in vhash() 416 remaining = mbytes % VMAC_NHBYTES; in vhash() 456 static u64 vmac(unsigned char m[], unsigned int mbytes, in vmac() argument 478 h = vhash(m, mbytes, (u64 *)0, &ctx->__vmac_ctx); in vmac()
|