Home
last modified time | relevance | path

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

/openbsd/src/gnu/usr.bin/texinfo/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()
825 xmax (xsum (length, count), xtimes (allocated, 2)); in VASNPRINTF()
Dxsize.h99 #define xtimes(N, ELSIZE) \ macro
/openbsd/src/gnu/usr.bin/cvs/src/
Dhistory.c898 if (size_overflow_p (xtimes (user_max, sizeof (char *))))
903 user_list = xrealloc (user_list, xtimes (user_max, sizeof (char *)));
932 if (size_overflow_p (xtimes (file_max, sizeof (*fl))))
937 file_list = xrealloc (file_list, xtimes (file_max, sizeof (*fl)));
977 if (size_overflow_p (xtimes (mod_max, sizeof (char *))))
982 mod_list = xrealloc (mod_list, xtimes (mod_max, sizeof (char *)));
Dfilesubr.c968 if (size_overflow_p (xtimes (argc, sizeof (char *)))) {
975 *pargv = xmalloc (xtimes (argc, sizeof (char *)));
Dcommit.c475 if (size_overflow_p (xtimes (find_args.argc, sizeof (char **))))
480 find_args.argv = xmalloc (xtimes (find_args.argc, sizeof (char **)));
/openbsd/src/gnu/usr.bin/cvs/lib/
Dxsize.h98 #define xtimes(N, ELSIZE) \ macro