Home
last modified time | relevance | path

Searched refs:new_length (Results 1 – 6 of 6) sorted by relevance

/mirbsd/src/usr.sbin/pppd/chat/
Dchat.c604 int new_length; local
610 new_length = 0;
614 new_length++;
616 new_length++;
626 new_length++;
634 new_length += 2;
637 new_length += sending && phone_num ? strlen(phone_num) : 2;
640 new_length += sending && phone_num2 ? strlen(phone_num2) : 2;
652 new_length += 2; /* Could become \\ */
658 new_length += 3; /* \r and two nuls */
[all …]
/mirbsd/src/gnu/usr.bin/texinfo/makeinfo/
Dindex.c880 unsigned new_length = strlen (index->entry); in cm_printindex() local
882 if (new_length < 50) /* minimum length used below */ in cm_printindex()
883 new_length = 50; in cm_printindex()
884 new_length += strlen (index_node) + 7; /* * : .\n\0 */ in cm_printindex()
886 if (new_length > line_length) in cm_printindex()
888 line_length = new_length; in cm_printindex()
/mirbsd/src/gnu/usr.bin/binutils/gdb/
Dui-file.c396 int new_length = stream->length_buffer + length_buffer; in mem_file_write() local
397 if (new_length >= stream->sizeof_buffer) in mem_file_write()
399 stream->sizeof_buffer = new_length; in mem_file_write()
403 stream->length_buffer = new_length; in mem_file_write()
Dvalops.c241 LONGEST low_bound, high_bound, new_length; in value_cast() local
244 new_length = val_length / element_length; in value_cast()
252 new_length + low_bound - 1); in value_cast()
/mirbsd/src/gnu/usr.bin/binutils/gdb/cli/
Dcli-script.c651 realloc_body_list (struct command_line *command, int new_length) in realloc_body_list() argument
659 if (new_length <= n) in realloc_body_list()
663 xmalloc (sizeof (struct command_line *) * new_length); in realloc_body_list()
669 command->body_count = new_length; in realloc_body_list()
/mirbsd/src/gnu/usr.bin/binutils/gas/
Dread.c1002 unsigned int new_length; in read_a_source_file() local
1060 new_length = ends - s; in read_a_source_file()
1061 new_buf = (char *) xmalloc (new_length); in read_a_source_file()
1068 space = (new_buf + new_length) - new_tmp; in read_a_source_file()
1077 new_buf = xrealloc (new_buf, new_length + 100); in read_a_source_file()
1078 new_tmp = new_buf + new_length; in read_a_source_file()
1079 new_length += 100; in read_a_source_file()