Lines Matching +full:10 +full:base
20 #define simple_strtoint(c, end, base) simple_strtol(c, end, base) argument
21 #define simple_strtouint(c, end, base) simple_strtoul(c, end, base) argument
28 type i = simple_ ## name(cp, &e, 10); \
111 t = q & ~(~0 << 10); in STRTO_H()
112 q >>= 10; in STRTO_H()
119 return sprintf(buf, "-%llu.%i%c", q, t * 10 / 1024, units[u]); in STRTO_H()
121 return sprintf(buf, "%llu.%i%c", q, t * 10 / 1024, units[u]); in STRTO_H()
150 x -= 'a' - 10; in bch_parse_uuid()
231 void bch_bio_map(struct bio *bio, void *base) in bch_bio_map() argument
239 bv->bv_offset = base ? offset_in_page(base) : 0; in bch_bio_map()
246 if (base) { in bch_bio_map()
247 bv->bv_page = is_vmalloc_addr(base) in bch_bio_map()
248 ? vmalloc_to_page(base) in bch_bio_map()
249 : virt_to_page(base); in bch_bio_map()
251 base += bv->bv_len; in bch_bio_map()