Lines Matching refs:seq
27 static int single_show(struct dfs_seq_file *seq, void *data) in single_show() argument
37 dfs_seq_printf(seq, "%-16s%8d KB\n", "MemMaxUsed:", max_used / 1024); in single_show()
38 dfs_seq_printf(seq, "%-16s%8d KB\n", "MemAvailable:", (total - used) / 1024); in single_show()
39 dfs_seq_printf(seq, "%-16s%8d KB\n", "Cached:", 0); in single_show()
40 dfs_seq_printf(seq, "%-16s%8d KB\n", "SReclaimable:", 0); in single_show()
46 dfs_seq_printf(seq, "%-16s%8d KB\n", "MemTotal:", total_sum / 1024); in single_show()
47 dfs_seq_printf(seq, "%-16s%8d KB\n", "MemFree:", total_freed / 1024); in single_show()
48 dfs_seq_printf(seq, "%-16s%8d KB\n", "LowPageTotal:", total * RT_MM_PAGE_SIZE / 1024); in single_show()
49 dfs_seq_printf(seq, "%-16s%8d KB\n", "lowPageFree:", freed * RT_MM_PAGE_SIZE/ 1024); in single_show()
53 dfs_seq_printf(seq, "%-16s%8d KB\n", "HighPageTotal:", total * RT_MM_PAGE_SIZE / 1024); in single_show()
54 dfs_seq_printf(seq, "%-16s%8d KB\n", "HighPageFree:", freed * RT_MM_PAGE_SIZE / 1024); in single_show()