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

  /external/chromium_org/net/http/
http_auth_challenge_tokenizer.cc 33 int encoded_length = params_end_ - params_begin_; local
34 while (encoded_length > 0 && encoded_length % 4 != 0 &&
35 params_begin_[encoded_length - 1] == '=') {
36 --encoded_length;
38 return std::string(params_begin_, params_begin_ + encoded_length);
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
media_optimization.cc 336 int32_t MediaOptimization::UpdateWithEncodedData(int encoded_length,
346 encoded_frame_samples_.back().size_bytes += encoded_length;
350 EncodedFrameSample(encoded_length, timestamp, now_ms));
354 if (encoded_length > 0) {
357 frame_dropper_->Fill(encoded_length, delta_frame);
358 if (max_payload_size_ > 0 && encoded_length > 0) {
360 encoded_length / static_cast<float>(max_payload_size_);
371 qm_resolution_->UpdateEncodedSize(encoded_length, encoded_frame_type);
374 if (!delta_frame && encoded_length > 0) {
375 loss_prot_logic_->UpdateKeyFrameSize(static_cast<float>(encoded_length));
    [all...]
media_optimization.h 80 int32_t UpdateWithEncodedData(int encoded_length,
  /external/chromium_org/sync/internal_api/public/base/
unique_position.cc 474 uint32 encoded_length; local
476 encoded_length = 0xffffffff - length;
478 encoded_length = length;
482 output_str->append(1, 0xff & (encoded_length >> 24U));
483 output_str->append(1, 0xff & (encoded_length >> 16U));
484 output_str->append(1, 0xff & (encoded_length >> 8U));
485 output_str->append(1, 0xff & (encoded_length >> 0U));
493 uint32 encoded_length = local
501 if (encoded_length & 0x80000000) {
502 length = 0xffffffff - encoded_length;
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
mux_client_for_testing.py 265 encoded_length = _encode_number(length)
268 encoded_length + encoded_handshake)
  /external/chromium_org/content/child/
resource_dispatcher_unittest.cc 297 int encoded_length) {
300 encoded_length)));
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
mux.py 183 encoded_length = _encode_number(length)
186 encoded_length + value)
    [all...]
  /external/chromium_org/chrome/installer/util/
shell_util.cc 2254 const size_t encoded_length = (size * 8 + 4) \/ 5; local
    [all...]

Completed in 361 milliseconds