Home
last modified time | relevance | path

Searched refs:data_count (Results 1 – 13 of 13) sorted by relevance

/freebsd-12.1/contrib/gdb/gdb/
H A Ddve3900-rom.c86 static void load_section (bfd * abfd, asection * s, unsigned int *data_count);
811 load_section (bfd *abfd, asection *s, unsigned int *data_count) in load_section() argument
823 if (data_count) in load_section()
824 *data_count += section_size; in load_section()
870 unsigned int data_count = 0; in r3900_load() local
917 bfd_map_over_sections (abfd, (section_map_func) load_section, &data_count); in r3900_load()
930 report_transfer_performance (data_count, start_time, end_time); in r3900_load()
H A Ddsrec.c60 unsigned long data_count = 0; in load_srec() local
108 data_count += size; in load_srec()
171 report_transfer_performance (data_count, start_time, end_time); in load_srec()
H A Dsymfile.c1363 unsigned long data_count; member
1436 args->data_count += len; in load_section_callback()
1448 args->data_count, args->total_size); in load_section_callback()
1474 cbdata.data_count = 0; /* Number of bytes written to target memory. */ in generic_load()
1527 ui_out_field_fmt (uiout, "load-size", "%lu", cbdata.data_count); in generic_load()
1539 print_transfer_performance (gdb_stdout, cbdata.data_count, in generic_load()
1552 report_transfer_performance (unsigned long data_count, time_t start_time, in report_transfer_performance() argument
1555 print_transfer_performance (gdb_stdout, data_count, in report_transfer_performance()
1561 unsigned long data_count, in print_transfer_performance() argument
1569 (data_count * 8) / time_count); in print_transfer_performance()
[all …]
H A Dremote-e7000.c1495 unsigned long data_count; /* Number of bytes transferred to memory */ in e7000_load() local
1556 data_count = 0; in e7000_load()
1581 data_count += section_size; in e7000_load()
1656 report_transfer_performance (data_count, start_time, end_time); in e7000_load()
H A Ddefs.h560 unsigned long data_count,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
H A DMachException.cpp153 stop_info->details.exception.data_count = exc_data.size(); in GetStopInfo()
164 (uint64_t)stop_info->details.exception.data_count); in GetStopInfo()
166 for (idx = 0; idx < stop_info->details.exception.data_count; ++idx) { in GetStopInfo()
169 ((idx + 1 == stop_info->details.exception.data_count) ? '}' : ',')); in GetStopInfo()
174 for (size_t i = 0; i < stop_info->details.exception.data_count; i++) in GetStopInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DDebug.h149 uint32_t data_count; member
/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3ext.h83 int (*data_count)(sqlite3_stmt*pStmt); member
283 #define sqlite3_data_count sqlite3_api->data_count
H A Dsqlite3.c88975 int (*data_count)(sqlite3_stmt*pStmt);
89175 #define sqlite3_data_count sqlite3_api->data_count
/freebsd-12.1/contrib/ntp/ntpd/
H A Dntp_control.c3538 size_t data_count; in configure() local
3565 data_count = remoteconfig_cmdlength(reqpt, reqend); in configure()
3567 if (data_count > sizeof(remote_config.buffer) - 2) { in configure()
3580 if (data_count != (size_t)(reqend - reqpt)) { in configure()
3590 reqpt[data_count]); in configure()
3594 memcpy(remote_config.buffer, reqpt, data_count); in configure()
3599 remote_config.buffer[data_count] = '\0'; in configure()
3609 remote_config.buffer[data_count++] = '\n'; in configure()
3610 remote_config.buffer[data_count] = '\0'; in configure()
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3ext.h91 int (*data_count)(sqlite3_stmt*pStmt); member
413 #define sqlite3_data_count sqlite3_api->data_count
H A Dsqlite3.c123282 int (*data_count)(sqlite3_stmt*pStmt);
123604 #define sqlite3_data_count sqlite3_api->data_count
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp555 for (uint32_t i = 0; i < tid_stop_info.details.exception.data_count;
774 response.PutHex32(tid_stop_info.details.exception.data_count);
777 for (uint32_t i = 0; i < tid_stop_info.details.exception.data_count; ++i) {