Searched defs:fragmentation (Results 1 - 25 of 34) sorted by last modified time

12

/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-kmem.c333 static double fragmentation(unsigned long n_req, unsigned long n_alloc) function
383 fragmentation(data->bytes_req, data->bytes_alloc));
399 printf("Total bytes wasted on internal fragmentation: %lu\n",
401 printf("Internal fragmentation: %f%%\n",
402 fragmentation(total_requested, total_allocated));
576 x = fragmentation(l->bytes_req, l->bytes_alloc);
577 y = fragmentation(r->bytes_req, r->bytes_alloc);
/external/chromium_org/v8/src/heap/
H A Dmark-compact.cc717 // Returns zero for pages that have so little fragmentation that it is not
719 // estimate of fragmentation on an arbitrary scale.
787 int fragmentation() { return fragmentation_; } function in class:v8::internal::Candidate
837 int fragmentation = 0; local
850 if ((counter & 1) == (page_number & 1)) fragmentation = 1;
871 fragmentation = free_pct;
873 fragmentation = 0;
881 (fragmentation > 0) ? "[fragmented]" : "");
884 fragmentation = FreeListFragmentation(space, p);
887 if (fragmentation !
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dsession_info.cc300 RTPFragmentationHeader* fragmentation) {
303 fragmentation->VerifyAndAllocateFragmentationHeader(kMaxVP8Partitions);
304 fragmentation->fragmentationVectorSize = 0;
305 memset(fragmentation->fragmentationLength, 0,
314 fragmentation->fragmentationOffset[partition_id] =
316 assert(fragmentation->fragmentationOffset[partition_id] <
318 fragmentation->fragmentationLength[partition_id] =
320 assert(fragmentation->fragmentationLength[partition_id] <=
322 new_length += fragmentation->fragmentationLength[partition_id];
325 if (partition_id + 1 > fragmentation
297 BuildVP8FragmentationHeader( uint8_t* frame_buffer, int frame_buffer_length, RTPFragmentationHeader* fragmentation) argument
[all...]
H A Dvideo_coding_impl.cc64 const RTPFragmentationHeader* fragmentation) {
68 encoded_image, codec_specific_info, fragmentation);
62 Encoded(EncodedImage& encoded_image, const CodecSpecificInfo* codec_specific_info, const RTPFragmentationHeader* fragmentation) argument
/external/chromium_org/third_party/webrtc/test/
H A Dconfigurable_frame_size_encoder.cc53 RTPFragmentationHeader* fragmentation = NULL; local
56 callback_->Encoded(encodedImage, &specific, fragmentation);
H A Dfake_decoder.cc35 const RTPFragmentationHeader* fragmentation,
62 const RTPFragmentationHeader* fragmentation,
81 fragmentation,
33 Decode(const EncodedImage& input, bool missing_frames, const RTPFragmentationHeader* fragmentation, const CodecSpecificInfo* codec_specific_info, int64_t render_time_ms) argument
60 Decode(const EncodedImage& input, bool missing_frames, const RTPFragmentationHeader* fragmentation, const CodecSpecificInfo* codec_specific_info, int64_t render_time_ms) argument
H A Dfake_encoder.cc139 RTPFragmentationHeader fragmentation; local
143 fragmentation.VerifyAndAllocateFragmentationHeader(kNumSlices);
144 fragmentation.fragmentationOffset[0] = 0;
145 fragmentation.fragmentationLength[0] = kSpsSize;
146 fragmentation.fragmentationOffset[1] = kSpsSize;
147 fragmentation.fragmentationLength[1] = kPpsSize;
148 fragmentation.fragmentationOffset[2] = kSpsSize + kPpsSize;
149 fragmentation.fragmentationLength[2] =
154 encoded_image._buffer[fragmentation.fragmentationOffset[0]] = kSpsNalHeader;
155 encoded_image._buffer[fragmentation
[all...]
/external/chromium_org/third_party/webrtc/video/
H A Dencoded_frame_callback_adapter.cc27 const RTPFragmentationHeader* fragmentation) {
24 Encoded( EncodedImage& encodedImage, const CodecSpecificInfo* codecSpecificInfo, const RTPFragmentationHeader* fragmentation) argument
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel.cc116 const RTPFragmentationHeader* fragmentation)
120 " payloadSize=%u, fragmentation=0x%x)",
121 frameType, payloadType, timeStamp, payloadSize, fragmentation);
143 fragmentation) == -1)
111 SendData(FrameType frameType, uint8_t payloadType, uint32_t timeStamp, const uint8_t* payloadData, uint16_t payloadSize, const RTPFragmentationHeader* fragmentation) argument
/external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
H A Dmedia_codec_video_decoder.cc53 const RTPFragmentationHeader* fragmentation,
51 Decode( const EncodedImage& inputImage, bool missingFrames, const RTPFragmentationHeader* fragmentation, const CodecSpecificInfo* codecSpecificInfo, int64_t renderTimeMs) argument
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dacm_send_test.cc98 const RTPFragmentationHeader* fragmentation) {
93 SendData(FrameType frame_type, uint8_t payload_type, uint32_t timestamp, const uint8_t* payload_data, uint16_t payload_len_bytes, const RTPFragmentationHeader* fragmentation) argument
H A Dacm_send_test_oldapi.cc102 const RTPFragmentationHeader* fragmentation) {
96 SendData( FrameType frame_type, uint8_t payload_type, uint32_t timestamp, const uint8_t* payload_data, uint16_t payload_len_bytes, const RTPFragmentationHeader* fragmentation) argument
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A DChannel.cc24 const RTPFragmentationHeader* fragmentation) {
48 // Treat fragmentation separately
49 if (fragmentation != NULL) {
51 if ((fragmentation->fragmentationTimeDiff[1] <= 0x3fff) &&
52 (fragmentation->fragmentationVectorSize == 2)) {
54 _payloadData[0] = 0x80 + fragmentation->fragmentationPlType[1];
55 uint32_t REDheader = (((uint32_t) fragmentation->fragmentationTimeDiff[1])
56 << 10) + fragmentation->fragmentationLength[1];
61 _payloadData[4] = fragmentation->fragmentationPlType[0];
64 payloadData + fragmentation
21 SendData(const FrameType frameType, const uint8_t payloadType, const uint32_t timeStamp, const uint8_t* payloadData, const uint16_t payloadSize, const RTPFragmentationHeader* fragmentation) argument
[all...]
H A DTestAllCodecs.cc58 const RTPFragmentationHeader* fragmentation) {
55 SendData(FrameType frame_type, uint8_t payload_type, uint32_t timestamp, const uint8_t* payload_data, uint16_t payload_size, const RTPFragmentationHeader* fragmentation) argument
H A DTestStereo.cc52 const RTPFragmentationHeader* fragmentation) {
47 SendData(const FrameType frame_type, const uint8_t payload_type, const uint32_t timestamp, const uint8_t* payload_data, const uint16_t payload_size, const RTPFragmentationHeader* fragmentation) argument
H A Ddual_stream_unittest.cc42 const RTPFragmentationHeader* fragmentation) OVERRIDE;
300 const RTPFragmentationHeader* fragmentation) {
305 if (fragmentation == NULL) {
309 // As the oldest payloads are in the higher indices of fragmentation,
312 for (int n = fragmentation->fragmentationVectorSize - 1; n >= 0; --n) {
313 if (fragmentation->fragmentationPlType[n] == primary_encoder_.pltype) {
316 } else if (fragmentation->fragmentationPlType[n]
334 - fragmentation->fragmentationTimeDiff[n];
335 payload_len_dual_[stream_index][position] = fragmentation
339 &payload_data[fragmentation
296 SendData(FrameType frameType, uint8_t payload_type, uint32_t timestamp, const uint8_t* payload_data, uint16_t payload_size, const RTPFragmentationHeader* fragmentation) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_h264.cc111 const RTPFragmentationHeader* fragmentation) {
113 assert(fragmentation);
116 fragmentation_.CopyFrom(*fragmentation);
108 SetPayloadData( const uint8_t* payload_data, size_t payload_size, const RTPFragmentationHeader* fragmentation) argument
H A Drtp_format_h264_unittest.cc87 RTPFragmentationHeader fragmentation; local
88 fragmentation.VerifyAndAllocateFragmentationHeader(1);
89 fragmentation.fragmentationOffset[0] = 0;
90 fragmentation.fragmentationLength[0] = frame_size;
93 packetizer->SetPayloadData(frame.get(), frame_size, &fragmentation);
109 size_t GetExpectedNaluOffset(const RTPFragmentationHeader& fragmentation, argument
112 assert(nalu_index < fragmentation.fragmentationVectorSize);
116 kLengthFieldLength + fragmentation.fragmentationLength[i];
121 void VerifyStapAPayload(const RTPFragmentationHeader& fragmentation,
129 GetExpectedNaluOffset(fragmentation, first_stapa_inde
184 RTPFragmentationHeader fragmentation; local
222 RTPFragmentationHeader fragmentation; local
257 RTPFragmentationHeader fragmentation; local
296 RTPFragmentationHeader fragmentation; local
[all...]
H A Drtp_format_video_generic.cc34 const RTPFragmentationHeader* fragmentation) {
31 SetPayloadData( const uint8_t* payload_data, size_t payload_size, const RTPFragmentationHeader* fragmentation) argument
H A Drtp_format_vp8.cc280 const RTPFragmentationHeader* fragmentation) {
283 if (fragmentation) {
284 part_info_.CopyFrom(*fragmentation);
285 num_partitions_ = fragmentation->fragmentationVectorSize;
277 SetPayloadData( const uint8_t* payload_data, size_t payload_size, const RTPFragmentationHeader* fragmentation) argument
H A Drtp_format_vp8_test_helper.h43 RTPFragmentationHeader* fragmentation() const { return fragmentation_; } function in class:webrtc::test::RtpFormatVp8TestHelper
H A Drtp_rtcp_impl.cc510 const RTPFragmentationHeader* fragmentation,
525 fragmentation,
560 fragmentation,
573 fragmentation,
503 SendOutgoingData( FrameType frame_type, int8_t payload_type, uint32_t time_stamp, int64_t capture_time_ms, const uint8_t* payload_data, uint32_t payload_size, const RTPFragmentationHeader* fragmentation, const RTPVideoHeader* rtp_video_hdr) argument
H A Drtp_sender.cc408 const RTPFragmentationHeader *fragmentation,
433 payload_data, payload_size, fragmentation);
445 fragmentation, codec_info,
404 SendOutgoingData( const FrameType frame_type, const int8_t payload_type, const uint32_t capture_timestamp, int64_t capture_time_ms, const uint8_t *payload_data, const uint32_t payload_size, const RTPFragmentationHeader *fragmentation, VideoCodecInformation *codec_info, const RTPVideoTypeHeader *rtp_type_hdr) argument
H A Drtp_sender_audio.cc237 const RTPFragmentationHeader* fragmentation) {
350 if (_REDPayloadType >= 0 && fragmentation && !markerBit &&
351 fragmentation->fragmentationVectorSize > 1) {
375 fragmentation &&
376 fragmentation->fragmentationVectorSize > 1 &&
379 if(fragmentation->fragmentationVectorSize != 2) {
385 fragmentation->fragmentationPlType[1];
386 uint32_t blockLength = fragmentation->fragmentationLength[1];
397 dataBuffer[rtpHeaderLength++] = fragmentation->fragmentationPlType[0];
400 payloadData + fragmentation
231 SendAudio( const FrameType frameType, const int8_t payloadType, const uint32_t captureTimeStamp, const uint8_t* payloadData, const uint32_t dataSize, const RTPFragmentationHeader* fragmentation) argument
[all...]
H A Drtp_sender_video.cc275 const RTPFragmentationHeader* fragmentation,
299 fragmentation,
324 const RTPFragmentationHeader* fragmentation,
338 (videoType == kRtpVideoVp8) ? NULL : fragmentation;
268 SendVideo(const RtpVideoCodecTypes videoType, const FrameType frameType, const int8_t payloadType, const uint32_t captureTimeStamp, int64_t capture_time_ms, const uint8_t* payloadData, const uint32_t payloadSize, const RTPFragmentationHeader* fragmentation, VideoCodecInformation* codecInfo, const RTPVideoTypeHeader* rtpTypeHdr) argument
317 Send(const RtpVideoCodecTypes videoType, const FrameType frameType, const int8_t payloadType, const uint32_t captureTimeStamp, int64_t capture_time_ms, const uint8_t* payloadData, const uint32_t payloadSize, const RTPFragmentationHeader* fragmentation, const RTPVideoTypeHeader* rtpTypeHdr) argument

Completed in 232 milliseconds

12