/third_party/ffmpeg/libavformat/ |
D | spdifenc.c | 67 int out_bytes; ///< amount of outgoing bytes member 146 ctx->out_bytes = ctx->hd_buf_filled; in spdif_header_eac3() 232 ctx->out_bytes = sizeof(dtshd_start_code) + 2 + pkt_size; in spdif_header_dts4() 236 ctx->length_code = FFALIGN(ctx->out_bytes + 0x8, 0x10) - 0x8; in spdif_header_dts4() 238 av_fast_malloc(&ctx->hd_buf[0], &ctx->hd_buf_size, ctx->out_bytes); in spdif_header_dts4() 309 ctx->out_bytes = core_size; in spdif_header_dts() 315 if (ctx->out_bytes == ctx->pkt_offset) { in spdif_header_dts() 320 } else if (ctx->out_bytes > ctx->pkt_offset - BURST_HEADER_SIZE) { in spdif_header_dts() 563 ctx->out_bytes = MAT_FRAME_SIZE; in spdif_header_truehd() 630 ctx->out_bytes = pkt->size; in spdif_write_packet() [all …]
|
/third_party/lwip/src/apps/snmp/ |
D | snmpv3_mbedtls.c | 124 u8_t out_bytes[8]; in snmpv3_crypt() local 154 out_len = LWIP_ARRAYSIZE(out_bytes) ; in snmpv3_crypt() 162 … if (mbedtls_cipher_update(&ctx, in_bytes, LWIP_ARRAYSIZE(in_bytes), out_bytes, &out_len) != 0) { in snmpv3_crypt() 166 if (snmp_pbuf_stream_writebuf(&write_stream, out_bytes, (u16_t)out_len) != ERR_OK) { in snmpv3_crypt() 171 out_len = LWIP_ARRAYSIZE(out_bytes); in snmpv3_crypt() 172 if (mbedtls_cipher_finish(&ctx, out_bytes, &out_len) != 0) { in snmpv3_crypt() 176 if (snmp_pbuf_stream_writebuf(&write_stream, out_bytes, (u16_t)out_len) != ERR_OK) { in snmpv3_crypt()
|
/third_party/ffmpeg/libavcodec/ |
D | ttaenc.c | 90 int ret, i, out_bytes, cur_chan, res, samples; in tta_encode_frame() local 185 out_bytes = put_bits_count(&pb) >> 3; in tta_encode_frame() 186 put_bits32(&pb, av_crc(s->crc_table, UINT32_MAX, avpkt->data, out_bytes) ^ UINT32_MAX); in tta_encode_frame() 190 avpkt->size = out_bytes + 4; in tta_encode_frame()
|
D | alacenc.c | 608 int out_bytes, max_frame_size, ret; in alac_encode_frame() local 630 out_bytes = write_frame(s, avpkt, frame->extended_data); in alac_encode_frame() 632 if (out_bytes > max_frame_size) { in alac_encode_frame() 636 out_bytes = write_frame(s, avpkt, frame->extended_data); in alac_encode_frame() 639 avpkt->size = out_bytes; in alac_encode_frame()
|
D | flacenc.c | 1363 int frame_bytes, out_bytes, ret; local 1426 out_bytes = write_frame(s, avpkt); 1434 if (out_bytes > s->max_encoded_framesize) 1435 s->max_encoded_framesize = out_bytes; 1436 if (out_bytes < s->min_framesize) 1437 s->min_framesize = out_bytes; 1441 avpkt->size = out_bytes;
|
/third_party/lwip/src/apps/http/makefsdata/ |
D | makefsdata.c | 567 size_t out_bytes = OUT_BUF_SIZE; in get_file_data() local 581 … status = tdefl_compress(&g_deflator, next_in, &in_bytes, next_out, &out_bytes, TDEFL_FINISH); in get_file_data() 586 LWIP_ASSERT("out_bytes <= COPY_BUFSIZE", out_bytes <= OUT_BUF_SIZE); in get_file_data() 587 if (out_bytes < fsize) { in get_file_data() 588 ret_buf = (u8_t *)malloc(out_bytes); in get_file_data() 590 memcpy(ret_buf, s_outbuf, out_bytes); in get_file_data() 595 size_t dec_in_bytes = out_bytes; in get_file_data() 609 *file_size = out_bytes; in get_file_data() 610 …te: %d bytes -> %d bytes (%.02f%%)" NEWLINE, (int)fsize, (int)out_bytes, (float)((out_bytes * 100.… in get_file_data() 611 deflatedBytesReduced += (size_t)(fsize - out_bytes); in get_file_data() [all …]
|
/third_party/node/deps/brotli/c/enc/ |
D | encode.c | 1694 size_t out_bytes = storage_ix >> 3; in BrotliEncoderCompressStreamFast() local 1695 BROTLI_DCHECK(out_bytes <= *available_out); in BrotliEncoderCompressStreamFast() 1696 BROTLI_DCHECK((storage_ix & 7) == 0 || out_bytes < *available_out); in BrotliEncoderCompressStreamFast() 1697 *next_out += out_bytes; in BrotliEncoderCompressStreamFast() 1698 *available_out -= out_bytes; in BrotliEncoderCompressStreamFast() 1699 s->total_out_ += out_bytes; in BrotliEncoderCompressStreamFast() 1702 size_t out_bytes = storage_ix >> 3; in BrotliEncoderCompressStreamFast() local 1704 s->available_out_ = out_bytes; in BrotliEncoderCompressStreamFast()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
D | encode.c | 1694 size_t out_bytes = storage_ix >> 3; in BrotliEncoderCompressStreamFast() local 1695 BROTLI_DCHECK(out_bytes <= *available_out); in BrotliEncoderCompressStreamFast() 1696 BROTLI_DCHECK((storage_ix & 7) == 0 || out_bytes < *available_out); in BrotliEncoderCompressStreamFast() 1697 *next_out += out_bytes; in BrotliEncoderCompressStreamFast() 1698 *available_out -= out_bytes; in BrotliEncoderCompressStreamFast() 1699 s->total_out_ += out_bytes; in BrotliEncoderCompressStreamFast() 1702 size_t out_bytes = storage_ix >> 3; in BrotliEncoderCompressStreamFast() local 1704 s->available_out_ = out_bytes; in BrotliEncoderCompressStreamFast()
|
/third_party/flutter/skia/third_party/externals/libpng/contrib/tools/ |
D | pngfix.c | 2291 png_uint_32 out_bytes; in zlib_advance() local 2364 out_bytes = 0; in zlib_advance() 2373 ++out_bytes) in zlib_advance() 2376 out_bytes -= zlib->z.avail_out; in zlib_advance() 2434 zlib->uncompressed_digits, out_bytes); in zlib_advance()
|
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
D | pngfix.c | 2291 png_uint_32 out_bytes; in zlib_advance() local 2364 out_bytes = 0; in zlib_advance() 2373 ++out_bytes) in zlib_advance() 2376 out_bytes -= zlib->z.avail_out; in zlib_advance() 2434 zlib->uncompressed_digits, out_bytes); in zlib_advance()
|