HomeSort by relevance Sort by last modified time
    Searched defs:total_length (Results 1 - 25 of 25) sorted by null

  /external/google-breakpad/src/client/linux/minidump_writer/
linux_core_dumper.cc 66 size_t total_length = procfs_path_len + 1 + node_len; local
67 if (total_length >= NAME_MAX)
73 path[total_length] = '\0';
linux_ptrace_dumper.cc 121 const size_t total_length = 6 + pid_len + 1 + node_len; local
122 if (total_length >= NAME_MAX)
129 path[total_length] = '\0';
  /frameworks/compile/mclinker/lib/Fragment/
FragmentRef.cpp 127 unsigned int total_length = region_frag->getRegion().size(); local
128 if (total_length < (total_offset + pNBytes))
129 pNBytes = total_length - total_offset;
137 unsigned int total_length = stub_frag->size(); local
138 if (total_length < (total_offset + pNBytes))
139 pNBytes = total_length - total_offset;
  /packages/apps/Gallery2/jni_jpegstream/src/
jpeg_writer.cpp 131 int32_t total_length = length; local
140 return total_length;
162 return total_length - length;
jpeg_reader.cpp 131 int32_t total_length = count; local
142 return total_length;
171 return total_length - count;
  /external/v8/test/cctest/
test-utils.cc 186 int total_length = 0; local
197 total_length += seq_length;
200 CHECK_EQ(total_length, result.length());
  /external/wpa_supplicant_8/src/wps/
ndef.c 29 u32 total_length; member in struct:ndef_record
70 record->total_length = pos - data;
71 if (record->total_length > size)
92 data += record.total_length;
93 len -= record.total_length;
  /system/bt/hci/test/
packet_fragmenter_test.cpp 136 uint16_t total_length = data_length + 2; // 2 for l2cap length; local
141 int length_to_send = (length_sent + (acl_size - 4) < total_length) ? (acl_size - 4) : (total_length - length_sent);
162 } while (length_sent < total_length);
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunication.cpp 367 size_t total_length = 0; local
375 content_length = total_length = 1; // The command is one byte long...
392 total_length = hash_pos + 3; // Skip the # and the two hex checksum bytes
441 else if (total_length > 0)
446 assert (total_length <= m_bytes.size());
447 assert (content_length <= total_length);
462 log->Printf ("<%4zu> read packet: %.*s", total_length, (int)(total_length), m_bytes.c_str());
465 m_history.AddPacket (m_bytes.c_str(), total_length, History::ePacketTypeRecv, total_length);
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugLine.h 57 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;
  /external/marisa-trie/tools/
marisa-benchmark.cc 165 std::size_t total_length = 0; local
167 total_length += (*keys)[i].first.length();
169 std::cout << "total length: " << total_length << std::endl;
  /external/marisa-trie/v0_1_5/tools/
marisa_alpha-benchmark.cc 165 std::size_t total_length = 0; local
167 total_length += (*keys)[i].first.length();
169 std::cout << "total length: " << total_length << std::endl;
  /external/ppp/pppd/plugins/radius/
sendserver.c 36 int total_length = 0; local
70 total_length += length+8;
80 total_length += length+8;
124 total_length += padded_length + 2;
151 total_length += CHAP_VALUE_LENGTH + 2;
162 total_length += length + 2;
171 total_length += sizeof (UINT4) + 2;
182 return total_length;
205 int total_length; local
268 total_length = rc_pack_list(data->send_pairs, secret, auth) + AUTH_HDR_LEN
    [all...]
  /external/vboot_reference/firmware/lib/tpm_lite/
tlcl.c 196 const int total_length = local
201 VbAssert(total_length <= TPM_LARGE_ENOUGH_COMMAND_SIZE);
202 SetTpmCommandSize(cmd.buffer, total_length);
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 188 int total_length = 0; local
192 total_length += read_length;
199 << total_length << ";\n\n"; local
  /external/google-breakpad/src/common/dwarf/
dwarf2reader.h 68 uint64 total_length; member in struct:dwarf2reader::LineInfoHeader
    [all...]
  /external/libpcap/
sf-pcap-ng.c 72 bpf_u_int32 total_length; member in struct:block_header
79 bpf_u_int32 total_length; member in struct:block_trailer
267 bhdr.total_length = SWAPLONG(bhdr.total_length);
277 if (bhdr.total_length > 16*1024*1024) {
280 bhdr.total_length, 16*1024*1024);
288 if (bhdr.total_length < sizeof(struct block_header) +
292 bhdr.total_length,
300 if (p->bufsize < bhdr.total_length) {
304 p->buffer = realloc(p->buffer, bhdr.total_length);
649 bpf_u_int32 total_length; local
    [all...]
  /external/android-clat/
clatd_test.cpp 290 size_t total_length, pos = 0; local
342 total_length = headersize;
348 total_length += payload_length;
349 ASSERT_LT(total_length, *reassembled_len) << msg << ": Reassembly buffer too small\n";
356 ASSERT_EQ(total_length, pos) << msg << ": Reassembled packet length incorrect\n";
359 ip->tot_len = htons(total_length);
366 ip6->ip6_plen = htons(total_length - sizeof(*ip6));
371 *reassembled_len = total_length;
775 size_t total_length = sizeof(reassembled); local
777 reassembled, &total_length, "Reassembly sanity check")
779 ASSERT_EQ(sizeof(kReassembledIPv4), total_length) << "IPv4 reassembly sanity check: length\\n"; local
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-linux.c 6736 int total_length = 0; local
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
wifilogger_diag.cpp 91 u32 total_length = size + sizeof(wifi_ring_buffer_entry); local
104 (u8*)rbe, total_length, 1);
    [all...]
  /external/tcpdump/
print-bgp.c 629 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);
    [all...]
print-isoclns.c 765 u_int8_t total_length[2]; member in struct:clnp_segment_header_t
855 EXTRACT_16BITS(clnp_segment_header->total_length));
    [all...]
  /external/v8/src/
gdb-jit.cc 1432 Writer::Slot<uint32_t> total_length = w->CreateSlotHere<uint32_t>(); local
    [all...]
api.cc 4477 int total_length = 0; local
    [all...]
  /external/pcre/dist/
pcre_jit_compile.c 9745 sljit_uw total_length; local
    [all...]

Completed in 4205 milliseconds