Home
last modified time | relevance | path

Searched refs:buf_end (Results 1 – 18 of 18) sorted by relevance

/dflybsd-src/contrib/gdb-7/gdb/
H A Ddwarf2expr.h283 int dwarf_block_to_dwarf_reg (const gdb_byte *buf, const gdb_byte *buf_end);
286 const gdb_byte *buf_end,
289 int dwarf_block_to_fb_offset (const gdb_byte *buf, const gdb_byte *buf_end,
293 const gdb_byte *buf_end,
300 gdb_read_uleb128 (const gdb_byte *buf, const gdb_byte *buf_end, in gdb_read_uleb128() argument
303 size_t bytes_read = read_uleb128_to_uint64 (buf, buf_end, r); in gdb_read_uleb128()
311 gdb_read_sleb128 (const gdb_byte *buf, const gdb_byte *buf_end, in gdb_read_sleb128() argument
314 size_t bytes_read = read_sleb128_to_int64 (buf, buf_end, r); in gdb_read_sleb128()
322 gdb_skip_leb128 (const gdb_byte *buf, const gdb_byte *buf_end) in gdb_skip_leb128() argument
324 size_t bytes_read = skip_leb128 (buf, buf_end); in gdb_skip_leb128()
[all …]
H A Ddwarf2expr.c374 safe_read_uleb128 (const gdb_byte *buf, const gdb_byte *buf_end, in safe_read_uleb128() argument
377 buf = gdb_read_uleb128 (buf, buf_end, r); in safe_read_uleb128()
386 safe_read_sleb128 (const gdb_byte *buf, const gdb_byte *buf_end, in safe_read_sleb128() argument
389 buf = gdb_read_sleb128 (buf, buf_end, r); in safe_read_sleb128()
396 safe_skip_leb128 (const gdb_byte *buf, const gdb_byte *buf_end) in safe_skip_leb128() argument
398 buf = gdb_skip_leb128 (buf, buf_end); in safe_skip_leb128()
465 dwarf_block_to_dwarf_reg (const gdb_byte *buf, const gdb_byte *buf_end) in dwarf_block_to_dwarf_reg() argument
469 if (buf_end <= buf) in dwarf_block_to_dwarf_reg()
473 if (buf_end - buf != 1) in dwarf_block_to_dwarf_reg()
481 buf = gdb_read_uleb128 (buf, buf_end, &dwarf_reg); in dwarf_block_to_dwarf_reg()
[all …]
H A Ddwarf2loc.c99 decode_debug_loc_addresses (const gdb_byte *loc_ptr, const gdb_byte *buf_end, in decode_debug_loc_addresses() argument
108 if (buf_end - loc_ptr < 2 * addr_size) in decode_debug_loc_addresses()
144 const gdb_byte *buf_end, in decode_debug_loc_dwo_addresses() argument
151 if (loc_ptr == buf_end) in decode_debug_loc_dwo_addresses()
161 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &high_index); in decode_debug_loc_dwo_addresses()
168 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &low_index); in decode_debug_loc_dwo_addresses()
172 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &high_index); in decode_debug_loc_dwo_addresses()
179 loc_ptr = gdb_read_uleb128 (loc_ptr, buf_end, &low_index); in decode_debug_loc_dwo_addresses()
183 if (loc_ptr + 4 > buf_end) in decode_debug_loc_dwo_addresses()
214 const gdb_byte *loc_ptr, *buf_end; in dwarf2_find_location_expression() local
[all …]
H A Dremote.c8003 char *buf_end) in remote_add_target_side_condition() argument
8014 xsnprintf (buf, buf_end - buf, "%s", ";"); in remote_add_target_side_condition()
8022 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len); in remote_add_target_side_condition()
/dflybsd-src/usr.bin/indent/
H A Dlexi.c181 if (++buf_ptr >= buf_end) in lexi()
209 if (buf_ptr >= buf_end) in lexi()
222 if (buf_ptr >= buf_end) in lexi()
230 if (buf_ptr >= buf_end) in lexi()
240 if (++buf_ptr >= buf_end) in lexi()
321 while (tp < buf_end) in lexi()
357 if (++buf_ptr >= buf_end) in lexi()
383 if (buf_ptr >= buf_end) in lexi()
391 if (buf_ptr >= buf_end) in lexi()
512 if (++buf_ptr >= buf_end) in lexi()
[all …]
H A Dpr_comment.c174 if (t_ptr >= buf_end) in pr_comment()
213 if (++buf_ptr >= buf_end) in pr_comment()
258 if (++buf_ptr >= buf_end) in pr_comment()
261 if (++buf_ptr >= buf_end) in pr_comment()
268 else if (++buf_ptr >= buf_end) in pr_comment()
274 if (++buf_ptr >= buf_end) /* get to next char after * */ in pr_comment()
279 if (++buf_ptr >= buf_end) in pr_comment()
303 if (buf_ptr >= buf_end) in pr_comment()
H A Dindent.c57 char *buf_ptr, *buf_end; variable
151 buf_ptr = buf_end = in_buffer; in main()
343 if (buf_ptr >= buf_end) in main()
356 if (++buf_ptr >= buf_end) /* get past / in buffer */ in main()
374 if (++buf_ptr >= buf_end) in main()
428 be_save = buf_end; in main()
433 buf_end = sc_end; in main()
469 if (buf_ptr >= buf_end) { in main()
1077 if (buf_ptr >= buf_end) in main()
1083 if (buf_ptr >= buf_end) in main()
[all …]
H A Dio.c284 buf_end = be_save; in fill_buffer()
286 if (buf_ptr < buf_end) in fill_buffer()
312 buf_end = p; in fill_buffer()
H A Dindent_globs.h132 extern char *buf_end; /* ptr to first after last char in
/dflybsd-src/contrib/gdb-7/include/
H A Dleb128.h54 read_uleb128_to_uint64 (const unsigned char *buf, const unsigned char *buf_end, in read_uleb128_to_uint64() argument
64 if (p >= buf_end) in read_uleb128_to_uint64()
87 read_sleb128_to_int64 (const unsigned char *buf, const unsigned char *buf_end, in read_sleb128_to_int64() argument
97 if (p >= buf_end) in read_sleb128_to_int64()
120 skip_leb128 (const unsigned char *buf, const unsigned char *buf_end) in skip_leb128() argument
127 if (p == buf_end) in skip_leb128()
/dflybsd-src/contrib/binutils-2.27/include/
H A Dleb128.h54 read_uleb128_to_uint64 (const unsigned char *buf, const unsigned char *buf_end, in read_uleb128_to_uint64() argument
64 if (p >= buf_end) in read_uleb128_to_uint64()
87 read_sleb128_to_int64 (const unsigned char *buf, const unsigned char *buf_end, in read_sleb128_to_int64() argument
97 if (p >= buf_end) in read_sleb128_to_int64()
120 skip_leb128 (const unsigned char *buf, const unsigned char *buf_end) in skip_leb128() argument
127 if (p == buf_end) in skip_leb128()
/dflybsd-src/usr.bin/dsynth/
H A Dsubs.c874 if (log->buf_beg == log->buf_end) { in readlogline()
876 log->buf_end = 0; in readlogline()
884 for (n = log->buf_scan; n < log->buf_end; ++n) { in readlogline()
909 log->buf_end -= log->buf_beg; in readlogline()
919 log->buf_end = 0; in readlogline()
947 log->buf + log->buf_end, in readlogline()
948 sizeof(log->buf) - log->buf_end, in readlogline()
953 log->buf_end += r; in readlogline()
H A Ddsynth.h505 int buf_end; member
/dflybsd-src/contrib/binutils-2.34/bfd/
H A Ddwarf2.c661 bfd_byte * buf_end, in read_string() argument
666 if (buf >= buf_end) in read_string()
678 while (buf < buf_end) in read_string()
700 bfd_byte * buf_end, in read_indirect_string() argument
708 if (buf + unit->offset_size > buf_end) in read_indirect_string()
715 offset = read_4_bytes (unit->abfd, buf, buf_end); in read_indirect_string()
717 offset = read_8_bytes (unit->abfd, buf, buf_end); in read_indirect_string()
737 bfd_byte * buf_end, in read_indirect_line_string() argument
745 if (buf + unit->offset_size > buf_end) in read_indirect_line_string()
752 offset = read_4_bytes (unit->abfd, buf, buf_end); in read_indirect_line_string()
[all …]
/dflybsd-src/contrib/less/
H A Dpattern.c265 constant char *buf_end = buf + buf_len; in match() local
268 for ( ; buf < buf_end; buf++) in match()
278 if (pp == pattern_end || lp == buf_end) in match()
/dflybsd-src/contrib/libarchive/libarchive/
H A Darchive_write_set_format_shar.c334 char *buf, *buf_end; in archive_write_shar_data_sed() local
364 buf_end = shar->work.s + ensured; in archive_write_shar_data_sed()
379 if (buf >= buf_end) { in archive_write_shar_data_sed()
/dflybsd-src/contrib/bmake/
H A Dparse.c145 char *buf_end; /* buf_end[-1] == '\n' */ member
2165 curFile->buf_end = curFile->buf.data + curFile->buf.len; in Parse_PushInput()
2294 curFile->buf_end = curFile->buf.data + curFile->buf.len; in ParseEOF()
2340 char *buf_end = curFile->buf_end; in ParseRawLine() local
2352 if (p == buf_end) { in ParseRawLine()
2369 if (p + 2 == buf_end) { in ParseRawLine()
2378 assert(p <= buf_end); in ParseRawLine()
/dflybsd-src/contrib/binutils-2.27/bfd/
H A Ddwarf2.c621 bfd_byte * buf_end, in read_string() argument
626 if (buf >= buf_end) in read_string()
638 while (buf < buf_end) in read_string()
660 bfd_byte * buf_end, in read_indirect_string() argument
667 if (buf + unit->offset_size > buf_end) in read_indirect_string()
674 offset = read_4_bytes (unit->abfd, buf, buf_end); in read_indirect_string()
676 offset = read_8_bytes (unit->abfd, buf, buf_end); in read_indirect_string()
700 bfd_byte * buf_end, in read_alt_indirect_string() argument
707 if (buf + unit->offset_size > buf_end) in read_alt_indirect_string()
714 offset = read_4_bytes (unit->abfd, buf, buf_end); in read_alt_indirect_string()
[all …]