Lines Matching +full:10 +full:m
34 m = re.split('-|:',j,2)
35 if m[2].strip() == 'System RAM':
36 system_ram.append(int(m[0], 16))
37 system_ram.append(int(m[1], 16))
38 if m[2].strip() == 'Persistent Memory':
39 pmem.append(int(m[0], 16))
40 pmem.append(int(m[1], 16))
44 print("%-40s %10s %10s\n" % ("Memory type", "count", "percentage"), end='')
45 print("%-40s %10s %10s\n" % ("----------------------------------------",
51 print("%-40s %10d %10.1f%%\n" %
87 m = re.split('-|:',j,2)
88 if int(m[0], 16) <= phys_addr <= int(m[1], 16):
89 return m[2]