Searched refs:total_length (Results 1 - 21 of 21) sorted by relevance

/freebsd-10.0-release/contrib/binutils/opcodes/
H A Dmep-ibld.c130 unsigned int total_length,
149 && word_length > total_length)
150 word_length = total_length;
216 shift = total_length - (word_offset + start + length);
428 unsigned int total_length,
453 if (word_offset + word_length > total_length)
454 word_length = total_length - word_offset;
459 if (CGEN_INT_INSN_P || (word_offset == 0 && word_length == total_length))
464 value = insn_value >> (total_length - ( word_offset + start + length));
567 unsigned int total_length
122 insert_normal(CGEN_CPU_DESC cd, long value, unsigned int attrs, unsigned int word_offset, unsigned int start, unsigned int length, unsigned int word_length, unsigned int total_length, CGEN_INSN_BYTES_PTR buffer) argument
414 extract_normal(CGEN_CPU_DESC cd, CGEN_EXTRACT_INFO *ex_info, CGEN_INSN_INT insn_value, unsigned int attrs, unsigned int word_offset, unsigned int start, unsigned int length, unsigned int word_length, unsigned int total_length, bfd_vma pc, long *valuep) argument
564 unsigned int total_length = CGEN_FIELDS_BITSIZE (fields); local
1060 unsigned int total_length = CGEN_FIELDS_BITSIZE (fields); local
[all...]
H A Dcgen-ibld.in130 unsigned int total_length,
149 && word_length > total_length)
150 word_length = total_length;
216 shift = total_length - (word_offset + start + length);
428 unsigned int total_length,
453 if (word_offset + word_length > total_length)
454 word_length = total_length - word_offset;
459 if (CGEN_INT_INSN_P || (word_offset == 0 && word_length == total_length))
464 value = insn_value >> (total_length - ( word_offset + start + length));
/freebsd-10.0-release/contrib/libpcap/
H A Dsf-pcap-ng.c72 bpf_u_int32 total_length; member in struct:block_header
79 bpf_u_int32 total_length; member in struct:block_trailer
244 bhdr.total_length = SWAPLONG(bhdr.total_length);
254 if (bhdr.total_length > 16*1024*1024) {
257 bhdr.total_length, 16*1024*1024);
265 if (bhdr.total_length < sizeof(struct block_header) +
269 bhdr.total_length,
277 if (p->bufsize < bhdr.total_length) {
281 p->buffer = realloc(p->buffer, bhdr.total_length);
505 bpf_u_int32 total_length; local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp364 size_t total_length = 0; local
372 content_length = total_length = 1; // The command is one byte long...
389 total_length = hash_pos + 3; // Skip the # and the two hex checksum bytes
438 else if (total_length > 0)
443 assert (total_length <= m_bytes.size());
444 assert (content_length <= total_length);
459 log->Printf ("<%4zu> read packet: %.*s", total_length, (int)(total_length), m_bytes.c_str());
462 m_history.AddPacket (m_bytes.c_str(), total_length, History::ePacketTypeRecv, total_length);
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugLine.h57 total_length(0),
73 uint32_t total_length; // The size in bytes of the statement information for this compilation unit (not including the total_length field itself). member in struct:DWARFDebugLine::Prologue
86 uint32_t Length() const { return prologue_length + sizeof(total_length) + sizeof(version) + sizeof(prologue_length); }
88 uint32_t StatementTableLength() const { return total_length + sizeof(total_length) - Length(); }
95 total_length = version = prologue_length = min_inst_length = line_base = line_range = opcode_base = 0;
H A DDWARFDebugLine.cpp208 const dw_offset_t end_offset = debug_line_offset + prologue.total_length + sizeof(prologue.total_length);
413 prologue->total_length = debug_line_data.GetU32(offset_ptr);
603 const dw_offset_t end_offset = debug_line_offset + prologue->total_length + sizeof(prologue->total_length);
897 log->Printf( " total_length: 0x%8.8x", total_length);
947 // buff.Append32(total_length);
/freebsd-10.0-release/contrib/wpa/src/wps/
H A Dndef.c29 u32 total_length; member in struct:ndef_record
69 record->total_length = pos - data;
70 if (record->total_length > size)
91 data += record.total_length;
92 len -= record.total_length;
/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-qlm.c360 int total_length = qlm_jtag_length * num_lanes; local
391 while (bits < total_length)
394 int width = total_length - bits;
/freebsd-10.0-release/sys/dev/nxge/xgehal/
H A Dxgehal-device-fp.c990 lro_new->total_length = xge_os_ntohs(ip->tot_len);
1187 if ((lro->total_length + __hal_tcp_seg_len(ip, tcp) ) >
1219 lro->total_length += __hal_tcp_seg_len(ip, tcp);
1339 lro->ip_hdr->tot_len = xge_os_htons((*p_lro)->total_length);
1405 lro->ip_hdr->tot_len = xge_os_htons(lro->total_length);
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_diff/
H A Ddiff_file.c1021 apr_off_t total_length; local
1041 total_length = file_token[0]->length;
1042 if (total_length == 0)
1064 length[i] = total_length;
1127 total_length -= len;
1133 while(total_length > 0);
/freebsd-10.0-release/sys/dev/qlxgb/
H A Dqla_hw.c933 uint32_t total_length = 0, bytes, tx_cmd_count = 0; local
946 total_length = mp->m_pkthdr.len;
947 if (total_length > QLA_MAX_TSO_FRAME_SIZE) {
949 __func__, total_length);
1027 tx_cmd->data_len_lo = (uint8_t)(total_length & 0xFF);
1028 tx_cmd->data_len_hi = qla_host_to_le16(((uint16_t)(total_length >> 8)));
/freebsd-10.0-release/contrib/tcpdump/
H A Dprint-bgp.c629 u_int total_length, offset; local
631 total_length = 0;
639 total_length += (addr_length >> 3) + 1;
653 total_length += (addr_length >> 3) + 1;
662 return (total_length);
H A Dprint-isoclns.c767 u_int8_t total_length[2]; member in struct:clnp_segment_header_t
857 EXTRACT_16BITS(clnp_segment_header->total_length));
/freebsd-10.0-release/contrib/binutils/bfd/
H A Ddwarf2.c43 bfd_vma total_length; member in struct:line_head
1029 lh.total_length = read_4_bytes (abfd, line_ptr);
1032 if (lh.total_length == 0xffffffff)
1034 lh.total_length = read_8_bytes (abfd, line_ptr);
1038 else if (lh.total_length == 0 && unit->addr_size == 8)
1041 lh.total_length = read_4_bytes (abfd, line_ptr);
1045 line_end = line_ptr + lh.total_length;
/freebsd-10.0-release/sys/dev/qlxge/
H A Dqls_hw.c676 uint32_t total_length = 0; local
683 total_length = mp->m_pkthdr.len;
685 if (total_length > QLA_MAX_TSO_FRAME_SIZE) {
687 __func__, total_length);
728 tx_mac->frame_length = total_length;
734 QL_DPRINT2((dev, "%s: 1 [%d, %d]\n", __func__, total_length,
745 QL_DPRINT2((dev, "%s: 2 [%d, %d]\n", __func__, total_length,
/freebsd-10.0-release/sys/dev/qlxgbe/
H A Dql_hw.c1562 uint32_t total_length = 0, bytes, tx_cmd_count = 0, txr_next; local
1578 total_length = mp->m_pkthdr.len;
1579 if (total_length > QLA_MAX_TSO_FRAME_SIZE) {
1581 __func__, total_length);
1671 tx_cmd->data_len_lo = (uint8_t)(total_length & 0xFF);
1672 tx_cmd->data_len_hi = qla_host_to_le16(((uint16_t)(total_length >> 8)));
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dstabsread.c2166 int total_length = 0;
2563 total_length += has_destructor;
2612 total_length += length;
2624 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
2160 int total_length = 0; local
H A Ddwarf2read.c111 unsigned int total_length; /* byte length of the statement member in struct:statement_prologue
268 unsigned int total_length; member in struct:line_header
2965 int total_length = 0; local
2985 total_length += flp->length;
2989 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
5211 /* Make sure that at least there's room for the total_length field. That
5227 lh->total_length = read_initial_length (abfd, line_ptr, &cu->header, &bytes_read);
5229 if (line_ptr + lh->total_length > dwarf_line_buffer + dwarf_line_size)
5234 lh->statement_program_end = line_ptr + lh->total_length;
/freebsd-10.0-release/sys/dev/nxge/include/
H A Dxgehal-device.h269 int total_length; member in struct:lro
/freebsd-10.0-release/sys/dev/oce/
H A Doce_hw.h2393 uint32_t total_length:16; member in struct:oce_nic_hdr_wqe::__anon9212::__anon9213
2419 uint32_t total_length:16;
H A Doce_if.c939 nichdr->u0.s.total_length = m->m_pkthdr.len;

Completed in 330 milliseconds