Searched refs:mbytes (Results 1 – 3 of 3) sorted by relevance
/linux-2.6.39/arch/x86/kernel/cpu/ |
D | amd.c | 57 int mbytes = num_physpages >> (20-PAGE_SHIFT); in init_amd_k6() local 101 if (mbytes > 508) in init_amd_k6() 102 mbytes = 508; in init_amd_k6() 107 l = (1<<0)|((mbytes/4)<<1); in init_amd_k6() 113 mbytes); in init_amd_k6() 122 if (mbytes > 4092) in init_amd_k6() 123 mbytes = 4092; in init_amd_k6() 128 l = ((mbytes>>2)<<22)|(1<<16); in init_amd_k6() 134 mbytes); in init_amd_k6()
|
/linux-2.6.39/kernel/ |
D | kexec.c | 789 unsigned long ubytes, mbytes; in kimage_load_normal_segment() local 796 mbytes = segment->memsz; in kimage_load_normal_segment() 803 while (mbytes) { in kimage_load_normal_segment() 823 if (mchunk > mbytes) in kimage_load_normal_segment() 824 mchunk = mbytes; in kimage_load_normal_segment() 839 mbytes -= mchunk; in kimage_load_normal_segment() 853 unsigned long ubytes, mbytes; in kimage_load_crash_segment() local 860 mbytes = segment->memsz; in kimage_load_crash_segment() 862 while (mbytes) { in kimage_load_crash_segment() 875 if (mchunk > mbytes) in kimage_load_crash_segment() [all …]
|
/linux-2.6.39/crypto/ |
D | vmac.c | 367 unsigned int mbytes, /* Pos multiple of VMAC_NHBYTES */ in vhash_update() argument 378 i = mbytes / VMAC_NHBYTES; /* Must be non-zero */ in vhash_update() 403 static u64 vhash(unsigned char m[], unsigned int mbytes, in vhash() argument 414 i = mbytes / VMAC_NHBYTES; in vhash() 415 remaining = mbytes % VMAC_NHBYTES; in vhash() 455 static u64 vmac(unsigned char m[], unsigned int mbytes, in vmac() argument 477 h = vhash(m, mbytes, (u64 *)0, &ctx->__vmac_ctx); in vmac()
|