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

  /external/brotli/include/brotli/
encode.h 285 * @p *encoded_size to the compressed length.
296 * @param[in, out] encoded_size @b in: size of @p encoded_buffer; \n
307 size_t* encoded_size,
308 uint8_t encoded_buffer[BROTLI_ARRAY_PARAM(*encoded_size)]);
decode.h 161 * @param encoded_size size of @p encoded_buffer
162 * @param encoded_buffer compressed data buffer with at least @p encoded_size
173 size_t encoded_size,
174 const uint8_t encoded_buffer[BROTLI_ARRAY_PARAM(encoded_size)],
  /external/v8/src/wasm/
function-body-decoder.h 80 uint32_t encoded_size; // size of encoded declarations member in struct:v8::internal::wasm::BodyLocalDecls
85 explicit BodyLocalDecls(Zone* zone) : encoded_size(0), type_list(zone) {}
wasm-interpreter.cc     [all...]
wasm-objects.cc 208 DCHECK_LT(0, locals.encoded_size);
    [all...]
function-body-decoder.cc     [all...]
  /external/v8/src/
eh-frame.cc 408 int* encoded_size) {
419 DCHECK_NOT_NULL(encoded_size);
420 *encoded_size = static_cast<int>(current - encoded);
426 int32_t EhFrameIterator::DecodeSLeb128(const byte* encoded, int* encoded_size) {
444 DCHECK_NOT_NULL(encoded_size);
445 *encoded_size = static_cast<int>(current - encoded);
eh-frame.h 256 static uint32_t DecodeULeb128(const byte* encoded, int* encoded_size);
257 static int32_t DecodeSLeb128(const byte* encoded, int* encoded_size);
  /external/skia/src/core/
SkReadBuffer.cpp 284 uint32_t encoded_size = this->getArrayCount(); local
285 if (encoded_size == 0) {
287 (void)this->readUInt(); // Swallow that encoded_size == 0 sentinel.
290 if (encoded_size == 1) {
292 (void)this->readUInt(); // Swallow that encoded_size == 1 sentinel.
  /external/brotli/enc/
encode.c     [all...]
  /external/webrtc/webrtc/modules/video_coding/
qm_select_unittest.cc 48 void UpdateQmEncodedFrame(size_t* encoded_size, size_t num_updates);
317 size_t encoded_size[] = {200, 100, 50, 30, 60, 40, 20, 30, 20, 40}; local
318 UpdateQmEncodedFrame(encoded_size, GTEST_ARRAY_SIZE_(encoded_size));
361 size_t encoded_size[] = {40, 10, 10, 16, 18, 20, 17, 20, 16, 15}; local
362 UpdateQmEncodedFrame(encoded_size, GTEST_ARRAY_SIZE_(encoded_size));
    [all...]
qm_select.h 202 void UpdateEncodedSize(size_t encoded_size);
qm_select.cc 240 void VCMQmResolution::UpdateEncodedSize(size_t encoded_size) {
243 float encoded_size_kbits = 8.0f * static_cast<float>(encoded_size) / 1000.0f;
    [all...]
  /external/webrtc/webrtc/base/
natsocketfactory.cc 148 size_t encoded_size = size + addrlength; variable
150 int result = socket_->SendTo(buf.get(), encoded_size, server_addr_);
152 ASSERT(result == static_cast<int>(encoded_size));
  /external/nanopb-c/generator/
nanopb_generator.py 372 def encoded_size(self, allmsgs): member in class:Field
383 encsize = msg.encoded_size(allmsgs)
446 def encoded_size(self, allmsgs): member in class:ExtensionRange
580 def encoded_size(self, allmsgs): member in class:Message
586 fsize = field.encoded_size(allmsgs)
769 msize = msg.encoded_size(messages)
    [all...]
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 2677 size_t encoded_size; local
    [all...]
  /external/webrtc/webrtc/video/
video_quality_test.cc 341 size_t encoded_size = it == encoded_frame_sizes_.end() ? 0 : it->second; local
353 render_time_ms, encoded_size));
    [all...]
  /external/brotli/dec/
decode.c     [all...]

Completed in 563 milliseconds