Home
last modified time | relevance | path

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

/third_party/gettext/gettext-runtime/intl/
Dprintf-parse.c109 a_allocated = xtimes (a_allocated, 2); \ in PRINTF_PARSE()
112 memory_size = xtimes (a_allocated, sizeof (argument)); \ in PRINTF_PARSE()
166 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
243 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
300 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
588 d_allocated = xtimes (d_allocated, 2); in PRINTF_PARSE()
589 memory_size = xtimes (d_allocated, sizeof (DIRECTIVE)); in PRINTF_PARSE()
Dvasnprintf.c1899 size_t buf_memsize = xtimes (buf_neededlength, sizeof (TCHAR_T)); in VASNPRINTF()
1931 allocated = (allocated > 0 ? xtimes (allocated, 2) : 12); \ in VASNPRINTF()
1934 memory_size = xtimes (allocated, sizeof (DCHAR_T)); \ in VASNPRINTF()
2050 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
2081 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
2521 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
2552 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
3005 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
3224 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
3254 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
[all …]
Dxsize.h96 #define xtimes(N, ELSIZE) \ macro
/third_party/glib/glib/gnulib/
Dprintf-parse.c110 a_allocated = xtimes (a_allocated, 2); \ in PRINTF_PARSE()
113 memory_size = xtimes (a_allocated, sizeof (argument)); \ in PRINTF_PARSE()
167 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
244 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
301 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
589 d_allocated = xtimes (d_allocated, 2); in PRINTF_PARSE()
590 memory_size = xtimes (d_allocated, sizeof (DIRECTIVE)); in PRINTF_PARSE()
Dvasnprintf.c1836 size_t buf_memsize = xtimes (buf_neededlength, sizeof (TCHAR_T)); in VASNPRINTF()
1868 allocated = (allocated > 0 ? xtimes (allocated, 2) : 12); \ in VASNPRINTF()
1871 memory_size = xtimes (allocated, sizeof (DCHAR_T)); \ in VASNPRINTF()
1989 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
2020 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
2460 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
2491 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
2979 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
3009 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
3041 size_t tmp_memsize = xtimes (tmp_length, sizeof (DCHAR_T)); in VASNPRINTF()
[all …]
Dxsize.h107 #define xtimes(N, ELSIZE) \ macro
Dglib-gnulib.patch418 #define xtimes(N, ELSIZE) \
/third_party/gettext/gettext-runtime/libasprintf/
Dprintf-parse.c109 a_allocated = xtimes (a_allocated, 2); \ in PRINTF_PARSE()
112 memory_size = xtimes (a_allocated, sizeof (argument)); \ in PRINTF_PARSE()
166 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
243 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
300 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
588 d_allocated = xtimes (d_allocated, 2); in PRINTF_PARSE()
589 memory_size = xtimes (d_allocated, sizeof (DIRECTIVE)); in PRINTF_PARSE()
Dvasnprintf.c1899 size_t buf_memsize = xtimes (buf_neededlength, sizeof (TCHAR_T)); in VASNPRINTF()
1931 allocated = (allocated > 0 ? xtimes (allocated, 2) : 12); \ in VASNPRINTF()
1934 memory_size = xtimes (allocated, sizeof (DCHAR_T)); \ in VASNPRINTF()
2050 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
2081 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
2521 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
2552 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
3005 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
3224 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
3254 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
[all …]
/third_party/gettext/gettext-tools/src/
Dxg-arglist-callshape.c225 xtimes (old_shapes->nshapes, in insert_keyword_callshape()
Dxg-arglist-parser.c62 xtimes (shapes->nshapes - 1, in arglist_parser_alloc()
108 xtimes (ap->nalternatives, sizeof (struct partial_call)))); in arglist_parser_clone()
Dwrite-mo.c275 xtimes (nintervals[m], in write_table()
DChangeLog.13336 (write_table): Use XNMALLOC instead of xmalloc. Use xsum, xtimes in
3367 xtimes to avoid overflow.
3371 (arglist_parser_alloc, arglist_parser_clone): Use xsum, xtimes.