Lines Matching refs:t
97 static inline void print_mlk(char *name, unsigned long b, unsigned long t) in print_mlk() argument
99 pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld kB)\n", name, b, t, in print_mlk()
100 (((t) - (b)) >> LOG2_SZ_1K)); in print_mlk()
103 static inline void print_mlm(char *name, unsigned long b, unsigned long t) in print_mlm() argument
105 pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld MB)\n", name, b, t, in print_mlm()
106 (((t) - (b)) >> LOG2_SZ_1M)); in print_mlm()
109 static inline void print_mlg(char *name, unsigned long b, unsigned long t) in print_mlg() argument
111 pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld GB)\n", name, b, t, in print_mlg()
112 (((t) - (b)) >> LOG2_SZ_1G)); in print_mlg()
116 static inline void print_mlt(char *name, unsigned long b, unsigned long t) in print_mlt() argument
118 pr_notice("%12s : 0x%08lx - 0x%08lx (%4ld TB)\n", name, b, t, in print_mlt()
119 (((t) - (b)) >> LOG2_SZ_1T)); in print_mlt()
122 #define print_mlt(n, b, t) do {} while (0) argument
125 static inline void print_ml(char *name, unsigned long b, unsigned long t) in print_ml() argument
127 unsigned long diff = t - b; in print_ml()
130 print_mlt(name, b, t); in print_ml()
132 print_mlg(name, b, t); in print_ml()
134 print_mlm(name, b, t); in print_ml()
136 print_mlk(name, b, t); in print_ml()