Home
last modified time | relevance | path

Searched refs:xtimes (Results 1 – 3 of 3) sorted by relevance

/external/e2fsprogs/intl/
Dprintf-parse.c91 a_allocated = xtimes (a_allocated, 2); \ in PRINTF_PARSE()
94 memory_size = xtimes (a_allocated, sizeof (argument)); \ in PRINTF_PARSE()
146 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
216 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
273 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
507 d_allocated = xtimes (d_allocated, 2); in PRINTF_PARSE()
508 memory_size = xtimes (d_allocated, sizeof (DIRECTIVE)); in PRINTF_PARSE()
Dvasnprintf.c158 size_t buf_memsize = xtimes (buf_neededlength, sizeof (CHAR_T)); in VASNPRINTF()
190 allocated = (allocated > 0 ? xtimes (allocated, 2) : 12); \ in VASNPRINTF()
193 memory_size = xtimes (allocated, sizeof (CHAR_T)); \ in VASNPRINTF()
297 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
320 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
458 tmp_length = xtimes (tmp_length, MB_CUR_MAX); in VASNPRINTF()
489 size_t tmp_memsize = xtimes (tmp_length, sizeof (CHAR_T)); in VASNPRINTF()
789 xsum (xtimes (allocated, 2), 12); in VASNPRINTF()
824 xmax (xsum (length, count), xtimes (allocated, 2)); in VASNPRINTF()
Dxsize.h99 #define xtimes(N, ELSIZE) \ macro