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

  /external/ImageMagick/Magick++/lib/
Blob.cpp 81 encoded_length; local
89 encoded_length=0;
91 &encoded_length);
95 result=std::string(encoded,encoded_length);
  /external/grpc-grpc/test/core/slice/
percent_encoding_test.cc 38 size_t encoded_length, const uint8_t* dict) {
41 gpr_dump(encoded, encoded_length, GPR_DUMP_HEX | GPR_DUMP_ASCII);
48 grpc_slice_from_copied_buffer(encoded, encoded_length);
82 size_t encoded_length,
90 gpr_dump(encoded, encoded_length, GPR_DUMP_HEX | GPR_DUMP_ASCII);
99 grpc_slice_from_copied_buffer(encoded, encoded_length);
  /external/grpc-grpc/test/core/tsi/alts/handshaker/
transport_security_common_api_test.cc 65 size_t encoded_length = local
67 uint8_t* encoded_bytes = static_cast<uint8_t*>(gpr_malloc(encoded_length));
69 &version, encoded_bytes, encoded_length));
74 GPR_ASSERT(encoded_length == GRPC_SLICE_LENGTH(encoded_slice));
76 encoded_length) == 0);
98 size_t encoded_length = local
100 uint8_t* encoded_bytes = static_cast<uint8_t*>(gpr_malloc(encoded_length));
102 nullptr, encoded_bytes, encoded_length));
104 &version, nullptr, encoded_length));
alts_handshaker_service_api_test_lib.cc 292 size_t encoded_length = size_stream.bytes_written; local
293 *slice = grpc_slice_malloc(encoded_length);
295 pb_ostream_from_buffer(GRPC_SLICE_START_PTR(*slice), encoded_length);
  /external/grpc-grpc/src/core/tsi/alts/handshaker/
transport_security_common_api.cc 100 size_t encoded_length = local
102 if (encoded_length == 0) return false;
103 *slice = grpc_slice_malloc(encoded_length);
105 versions, GRPC_SLICE_START_PTR(*slice), encoded_length);
alts_handshaker_service_api.cc 448 size_t encoded_length = size_stream.bytes_written; local
449 *slice = grpc_slice_malloc(encoded_length);
451 pb_ostream_from_buffer(GRPC_SLICE_START_PTR(*slice), encoded_length);
  /external/webrtc/webrtc/modules/video_coding/
media_optimization.cc 338 size_t encoded_length = encoded_image._length; local
348 encoded_frame_samples_.back().size_bytes += encoded_length;
352 EncodedFrameSample(encoded_length, timestamp, now_ms));
356 if (encoded_length > 0) {
359 frame_dropper_->Fill(encoded_length, delta_frame);
360 if (max_payload_size_ > 0 && encoded_length > 0) {
362 encoded_length / static_cast<float>(max_payload_size_);
373 qm_resolution_->UpdateEncodedSize(encoded_length);
376 if (!delta_frame && encoded_length > 0) {
377 loss_prot_logic_->UpdateKeyFrameSize(static_cast<float>(encoded_length));
    [all...]
  /external/grpc-grpc/src/core/ext/filters/client_channel/lb_policy/grpclb/
load_balancer_api.cc 136 size_t encoded_length; local
142 encoded_length = sizestream.bytes_written;
144 slice = GRPC_SLICE_MALLOC(encoded_length);
146 pb_ostream_from_buffer(GRPC_SLICE_START_PTR(slice), encoded_length);

Completed in 329 milliseconds