Home
last modified time | relevance | path

Searched refs:length_bytes (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/wasm/
Dstreaming-decoder.h89 Vector<const uint8_t> length_bytes) in SectionBuffer() argument
92 length_(1 + length_bytes.length() + payload_length), in SectionBuffer()
94 payload_offset_(1 + length_bytes.length()) { in SectionBuffer()
96 memcpy(bytes_.get() + 1, &length_bytes.first(), length_bytes.length()); in SectionBuffer()
190 Vector<const uint8_t> length_bytes) { in CreateNewBuffer() argument
200 new SectionBuffer(module_offset, id, length, length_bytes)); in CreateNewBuffer()
/external/protobuf/conformance/
Dconformance_python.py92 length_bytes = sys.stdin.read(4)
93 if len(length_bytes) == 0:
95 elif len(length_bytes) != 4:
101 length = struct.unpack("<I", length_bytes)[0]
Dconformance_ruby.rb88 length_bytes = STDIN.read(4)
89 return false if length_bytes.nil?
91 length = length_bytes.unpack('V').first
/external/boringssl/src/crypto/cipher_extra/
Dtls_cbc.c398 uint8_t length_bytes[MAX_HASH_BIT_COUNT_BYTES]; in EVP_tls_cbc_digest_record() local
399 OPENSSL_memset(length_bytes, 0, md_length_size - 4); in EVP_tls_cbc_digest_record()
400 length_bytes[md_length_size - 4] = (uint8_t)(bits >> 24); in EVP_tls_cbc_digest_record()
401 length_bytes[md_length_size - 3] = (uint8_t)(bits >> 16); in EVP_tls_cbc_digest_record()
402 length_bytes[md_length_size - 2] = (uint8_t)(bits >> 8); in EVP_tls_cbc_digest_record()
403 length_bytes[md_length_size - 1] = (uint8_t)bits; in EVP_tls_cbc_digest_record()
458 is_block_b, length_bytes[j - (md_block_size - md_length_size)], b); in EVP_tls_cbc_digest_record()
De_chacha20poly1305.c146 uint8_t length_bytes[8]; in poly1305_update_length() local
148 for (unsigned i = 0; i < sizeof(length_bytes); i++) { in poly1305_update_length()
149 length_bytes[i] = data_len; in poly1305_update_length()
153 CRYPTO_poly1305_update(poly1305, length_bytes, sizeof(length_bytes)); in poly1305_update_length()
/external/elfutils/libdw/
Ddwarf_getaranges.c114 unsigned int length_bytes = 4; in dwarf_getaranges() local
121 length_bytes = 8; in dwarf_getaranges()
148 length_bytes, &offset, IDX_debug_info, 4)) in dwarf_getaranges()
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtp_format_vp8.cc604 size_t length_bytes = PictureIdLength(); in PayloadDescriptorExtraLength() local
606 ++length_bytes; in PayloadDescriptorExtraLength()
608 ++length_bytes; in PayloadDescriptorExtraLength()
609 if (length_bytes > 0) in PayloadDescriptorExtraLength()
610 ++length_bytes; // Include the extension field. in PayloadDescriptorExtraLength()
611 return length_bytes; in PayloadDescriptorExtraLength()
/external/u-boot/tools/
Dsocfpgaimage.c122 uint32_t length_bytes) in sfp_build_header() argument
128 .length_u32 = cpu_to_le16(length_bytes / 4), in sfp_build_header()
137 .length_u8 = cpu_to_le32(length_bytes), in sfp_build_header()
/external/libtextclassifier/utils/
Dtoken-feature-extractor.cc300 const int length_bytes = in ExtractCharactergramFeaturesUnicode() local
303 StringPiece(it_chargram_start.utf8_data(), length_bytes))); in ExtractCharactergramFeaturesUnicode()
/external/autotest/server/site_tests/firmware_Cr50U2fCommands/
Dfirmware_Cr50U2fCommands.py84 length_bytes = len(str) / 2
86 return hex(length_bytes + additional_len)[2:]
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dpayload_splitter_unittest.cc562 size_t length_bytes = expected_size_ms[i] * bytes_per_ms_; in TEST_P() local
565 VerifyPacket((*it), length_bytes, kPayloadType, kSequenceNumber, in TEST_P()
/external/Microsoft-GSL/include/gsl/
Dstring_span297 constexpr index_type length_bytes() const noexcept { return span_.length_bytes(); }
Dmulti_span1517 constexpr size_type length_bytes() const noexcept { return this->size_bytes(); }
/external/elfutils/src/
Dreadelf.c5419 unsigned int length_bytes = 4; in print_debug_aranges_section() local
5425 length_bytes = 8; in print_debug_aranges_section()
5450 if (readp + length_bytes > readendp) in print_debug_aranges_section()
5452 if (length_bytes == 8) in print_debug_aranges_section()