Searched refs:xtimes (Results 1 – 7 of 7) sorted by relevance
| /openbsd/src/gnu/usr.bin/texinfo/intl/ |
| D | printf-parse.c | 91 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()
|
| D | vasnprintf.c | 158 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()
|
| D | xsize.h | 99 #define xtimes(N, ELSIZE) \ macro
|
| /openbsd/src/gnu/usr.bin/cvs/src/ |
| D | history.c | 898 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 *)));
|
| D | filesubr.c | 968 if (size_overflow_p (xtimes (argc, sizeof (char *)))) { 975 *pargv = xmalloc (xtimes (argc, sizeof (char *)));
|
| D | commit.c | 475 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/ |
| D | xsize.h | 98 #define xtimes(N, ELSIZE) \ macro
|