Home
last modified time | relevance | path

Searched refs:extra_bytes (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/
Dscoped_allocator.cc109 size_t extra_bytes = field->bytes_allocated - field->bytes_requested; in AllocateRaw() local
111 field->bytes_allocated - extra_bytes); in AllocateRaw()
115 << field->bytes_allocated << ". Annotating " << extra_bytes in AllocateRaw()
118 TF_ANNOTATE_MEMORY_IS_INITIALIZED(extra_buf, extra_bytes); in AllocateRaw()
/external/libwebm/m2ts/
Dwebm2pes.cc464 std::size_t extra_bytes = 0; in WritePesPacket() local
466 extra_bytes = packet_payload_range.length - kMaxPayloadSize; in WritePesPacket()
476 packet_payload_range.length - extra_bytes + BCMVHeader::size(); in WritePesPacket()
492 const std::size_t bytes_to_copy = packet_payload_range.length - extra_bytes; in WritePesPacket()
500 while (extra_bytes) { in WritePesPacket()
504 std::min(kMaxPayloadSize, extra_bytes); in WritePesPacket()
505 extra_bytes -= extra_bytes_to_copy; in WritePesPacket()
/external/e2fsprogs/lib/ext2fs/
Dinode.c592 int extra_bytes = 0; in ext2fs_get_next_inode_full() local
647 extra_bytes = scan->bytes_left; in ext2fs_get_next_inode_full()
672 if (extra_bytes) { in ext2fs_get_next_inode_full()
673 memcpy(scan->temp_buffer+extra_bytes, scan->ptr, in ext2fs_get_next_inode_full()
674 scan->inode_size - extra_bytes); in ext2fs_get_next_inode_full()
675 scan->ptr += scan->inode_size - extra_bytes; in ext2fs_get_next_inode_full()
676 scan->bytes_left -= scan->inode_size - extra_bytes; in ext2fs_get_next_inode_full()
/external/rust/crates/quiche/deps/boringssl/src/crypto/bytestring/
Dcbb.c257 size_t extra_bytes = len_len - 1; in CBB_flush() local
258 if (!cbb_buffer_add(cbb->base, NULL, extra_bytes)) { in CBB_flush()
261 OPENSSL_memmove(cbb->base->buf + child_start + extra_bytes, in CBB_flush()
/external/boringssl/src/crypto/bytestring/
Dcbb.c257 size_t extra_bytes = len_len - 1; in CBB_flush() local
258 if (!cbb_buffer_add(cbb->base, NULL, extra_bytes)) { in CBB_flush()
261 OPENSSL_memmove(cbb->base->buf + child_start + extra_bytes, in CBB_flush()
/external/mesa3d/src/gallium/drivers/radeon/
Dradeon_uvd_enc.h141 uint32_t extra_bytes; member
/external/libpng/contrib/tools/
Dpngfix.c2032 png_uint_32 extra_bytes; /* Count of extra compressed bytes */ member
2481 zlib->extra_bytes = nbytes - in_bytes; in zlib_advance()
2499 zlib->extra_bytes = 0; in zlib_run()
2541 if (zlib->global->errors && zlib->extra_bytes == 0) in zlib_run()
2569 list->lengths[i] -= zlib->extra_bytes; in zlib_run()
2601 chunk->chunk_length -= zlib->extra_bytes; in zlib_run()
/external/python/asn1crypto/asn1crypto/
Dcore.py1412 extra_bytes = contents_len - offset
1413 … raise ValueError('Extra data - %d bytes of trailing data were provided' % extra_bytes)
5670 extra_bytes = pointer + encoded_len - new_pointer
5671 raise ValueError('Extra data - %d bytes of trailing data were provided' % extra_bytes)