HomeSort by relevance Sort by last modified time
    Searched refs:allocated_bytes (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
packet.h 32 // |packet_memory|. The length of |packet_memory| is |allocated_bytes|.
38 size_t allocated_bytes,
46 // including the now discarded payload, whereas |allocated_bytes| is the
49 size_t allocated_bytes,
58 Packet(uint8_t* packet_memory, size_t allocated_bytes, double time_ms);
61 size_t allocated_bytes,
packet.cc 22 size_t allocated_bytes,
27 packet_length_bytes_(allocated_bytes),
29 virtual_packet_length_bytes_(allocated_bytes),
36 size_t allocated_bytes,
42 packet_length_bytes_(allocated_bytes),
50 Packet::Packet(uint8_t* packet_memory, size_t allocated_bytes, double time_ms)
53 packet_length_bytes_(allocated_bytes),
55 virtual_packet_length_bytes_(allocated_bytes),
63 size_t allocated_bytes,
68 packet_length_bytes_(allocated_bytes),
    [all...]
  /art/runtime/
runtime_stats.h 72 allocated_bytes = 0;
94 uint64_t allocated_bytes; variable
runtime.cc     [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_send_test.cc 110 size_t allocated_bytes = last_payload_vec_.size() + kRtpHeaderSize; local
111 uint8_t* packet_memory = new uint8_t[allocated_bytes];
134 new Packet(packet_memory, allocated_bytes, clock_.TimeInMilliseconds());
acm_send_test_oldapi.cc 114 size_t allocated_bytes = last_payload_vec_.size() + kRtpHeaderSize; local
115 uint8_t* packet_memory = new uint8_t[allocated_bytes];
138 new Packet(packet_memory, allocated_bytes, clock_.TimeInMilliseconds());
  /external/chromium_org/base/allocator/
allocator_shim.cc 201 size_t heap_size, allocated_bytes, unmapped_bytes; local
205 &allocated_bytes) &&
208 *size = heap_size - allocated_bytes - unmapped_bytes;
  /art/runtime/gc/
heap-inl.h 139 thread_stats->allocated_bytes += bytes_allocated;
142 global_stats->allocated_bytes += bytes_allocated;
  /external/chromium_org/content/app/
content_main_runner.cc 460 size_t heap_size, allocated_bytes, unmapped_bytes; local
464 &allocated_bytes) &&
467 *size = heap_size - allocated_bytes - unmapped_bytes;
  /external/protobuf/src/google/protobuf/
repeated_field.h 715 int allocated_bytes = local
718 allocated_bytes += TypeHandler::SpaceUsed(*cast<TypeHandler>(elements_[i]));
720 return allocated_bytes;
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
repeated_field.h 909 int allocated_bytes = local
912 allocated_bytes += TypeHandler::SpaceUsed(*cast<TypeHandler>(elements_[i]));
914 return allocated_bytes;
    [all...]
  /external/chromium_org/v8/src/heap/
incremental-marking.cc 895 void IncrementalMarking::Step(intptr_t allocated_bytes, CompletionAction action,
903 allocated_ += allocated_bytes;
    [all...]

Completed in 1334 milliseconds