| /freebsd-12-stable/contrib/gperf/src/ |
| D | input.cc | 51 is_declaration (const char *line, const char *line_end, unsigned int lineno, in is_declaration() argument 60 if (!(line < line_end)) in is_declaration() 66 if (line < line_end in is_declaration() 75 while (line < line_end && (*line == ' ' || *line == '\t')) in is_declaration() 79 if (line < line_end && *line != '\n') in is_declaration() 93 is_declaration_with_arg (const char *line, const char *line_end, in is_declaration_with_arg() argument 103 if (!(line < line_end)) in is_declaration_with_arg() 109 if (line < line_end in is_declaration_with_arg() 118 if (!(line < line_end && *line == '=')) in is_declaration_with_arg() 127 char *arg = new char[line_end - line + 1]; in is_declaration_with_arg() [all …]
|
| /freebsd-12-stable/contrib/libarchive/libarchive_fe/ |
| D | line_reader.c | 52 char *buff, *buff_end, *line_start, *line_end; member 77 lr->line_start = lr->line_end = lr->buff_end = lr->buff = NULL; in lafe_line_reader() 86 lr->line_end += strcspn(lr->line_end, in lafe_line_reader_find_eol() 88 *lr->line_end = '\0'; /* Noop if line_end == buff_end */ in lafe_line_reader_find_eol() 99 while (lr->line_end < lr->buff_end) { in lafe_line_reader_next() 101 lr->line_start = ++lr->line_end; in lafe_line_reader_next() 123 lr->line_end -= lr->line_start - lr->buff; in lafe_line_reader_next() 141 lr->line_end = p + (lr->line_end - lr->buff); in lafe_line_reader_next()
|
| /freebsd-12-stable/contrib/diff/lib/ |
| D | exclude.c | 204 char line_end) in add_exclude_file() argument 236 buf[buf_count] = line_end; in add_exclude_file() 237 lim = buf + buf_count + ! (buf_count == 0 || buf[buf_count - 1] == line_end); in add_exclude_file() 241 if (*p == line_end) in add_exclude_file() 245 if (is_space (line_end)) in add_exclude_file()
|
| /freebsd-12-stable/contrib/wpa/src/eap_server/ |
| D | tncs.c | 1018 char *config, *end, *pos, *line_end; in tncs_read_config() local 1033 for (pos = config; pos < end; pos = line_end + 1) { in tncs_read_config() 1034 line_end = pos; in tncs_read_config() 1035 while (*line_end != '\n' && *line_end != '\r' && in tncs_read_config() 1036 line_end < end) in tncs_read_config() 1037 line_end++; in tncs_read_config() 1038 *line_end = '\0'; in tncs_read_config() 1043 imv = tncs_parse_imv(id++, pos + 4, line_end, &error); in tncs_read_config()
|
| /freebsd-12-stable/gnu/usr.bin/grep/ |
| D | exclude.c | 83 struct exclude *ex, char const *filename, char line_end) in add_exclude_file() argument 119 if (p < lim ? *p == line_end : buf < p && p[-1]) in add_exclude_file()
|
| D | search.c | 221 static char const line_end[] = "\\)$"; in Gcompile() local 230 strcpy (n + i, match_lines ? line_end : word_end); in Gcompile() 305 static char const line_end[] = ")$"; in Ecompile() local 314 strcpy (n + i, match_lines ? line_end : word_end); in Ecompile()
|
| /freebsd-12-stable/contrib/wpa/src/eap_peer/ |
| D | tncc.c | 1070 char *config, *end, *pos, *line_end; in tncc_read_config() local 1084 for (pos = config; pos < end; pos = line_end + 1) { in tncc_read_config() 1085 line_end = pos; in tncc_read_config() 1086 while (*line_end != '\n' && *line_end != '\r' && in tncc_read_config() 1087 line_end < end) in tncc_read_config() 1088 line_end++; in tncc_read_config() 1089 *line_end = '\0'; in tncc_read_config() 1094 imc = tncc_parse_imc(pos + 4, line_end, &error); in tncc_read_config()
|
| /freebsd-12-stable/contrib/bmake/ |
| D | parse.c | 2788 char *line_end; in ParseGetLine() local 2798 line_end = line; in ParseGetLine() 2840 line_end = ptr; in ParseGetLine() 2847 comment = line_end; in ParseGetLine() 2854 line_end = ptr; in ParseGetLine() 2861 if (line_end == line || comment == line) { in ParseGetLine() 2870 *line_end = 0; in ParseGetLine() 2874 *length = line_end - line; in ParseGetLine() 2889 line_end = comment; in ParseGetLine() 2890 *line_end = 0; in ParseGetLine() [all …]
|
| /freebsd-12-stable/contrib/gcc/ |
| D | mips-tdump.c | 1283 uchar *line_end; in print_file_desc() local 1286 line_end = ((uchar *)lines) + fdp->cbLine + fdp->cbLineOffset; in print_file_desc() 1288 line_end = (((uchar *)lines) + proc_desc[pdi+1].cbLineOffset in print_file_desc() 1292 (ulong) (line_end - line_ptr), in print_file_desc() 1295 while (line_ptr < line_end) in print_file_desc()
|
| D | ChangeLog-1998 | 16858 (output_line_command): Remove unused variables, `line_end',
|
| /freebsd-12-stable/usr.bin/dtc/ |
| D | input_buffer.cc | 1059 int line_end = loc; in parse_error() local 1079 line_end = i; in parse_error() 1084 fwrite(&b.buffer[line_start], line_end-line_start, 1, stderr); in parse_error()
|
| /freebsd-12-stable/contrib/googletest/googletest/src/ |
| D | gtest-death-test.cc | 523 const size_t line_end = output.find('\n', at); in FormatDeathTestOutput() local 525 if (line_end == ::std::string::npos) { in FormatDeathTestOutput() 529 ret += output.substr(at, line_end + 1 - at); in FormatDeathTestOutput() 530 at = line_end + 1; in FormatDeathTestOutput()
|
| /freebsd-12-stable/contrib/binutils/gas/ |
| D | dwarf2dbg.c | 1271 symbolS *line_end; in out_debug_line() local 1281 line_end = symbol_temp_make (); in out_debug_line() 1285 expr.X_add_symbol = line_end; in out_debug_line() 1349 symbol_set_value_now (line_end); in out_debug_line()
|
| /freebsd-12-stable/contrib/binutils/bfd/ |
| D | ecofflink.c | 379 struct shuffle *line_end; member 509 ainfo->line_end = NULL; 913 if (!add_file_shuffle (ainfo, &ainfo->line, &ainfo->line_end, 2046 unsigned char *line_end; local 2179 line_end = debug_info->line + fdr_ptr->cbLineOffset + fdr_ptr->cbLine; 2185 while (line_ptr < line_end)
|
| D | dwarf2.c | 974 bfd_byte *line_end; in decode_line_info() local 1045 line_end = line_ptr + lh.total_length; in decode_line_info() 1138 while (line_ptr < line_end) in decode_line_info()
|
| /freebsd-12-stable/contrib/less/ |
| D | search.c | 1003 char *line_end = line + line_len; local 1027 else if (searchp != line_end) 1032 searchp, line_end - searchp, &sp, &ep, 1, search_info.search_type));
|
| /freebsd-12-stable/contrib/gdb/gdb/ |
| D | dwarf2read.c | 5348 char *line_end; in dwarf_decode_lines() local 5357 line_end = lh->statement_program_end; in dwarf_decode_lines() 5360 while (line_ptr < line_end) in dwarf_decode_lines()
|