/third_party/ffmpeg/libavcodec/ |
D | bmvaudio.c | 47 int blocks = 0, total_blocks, i; in bmv_aud_decode_frame() local 52 total_blocks = *buf++; in bmv_aud_decode_frame() 53 if (buf_size < total_blocks * 65 + 1) { in bmv_aud_decode_frame() 55 total_blocks * 65 + 1, buf_size); in bmv_aud_decode_frame() 60 frame->nb_samples = total_blocks * 32; in bmv_aud_decode_frame() 65 for (blocks = 0; blocks < total_blocks; blocks++) { in bmv_aud_decode_frame()
|
D | msvideo1.c | 89 int total_blocks; in msvideo1_decode_8bit() local 109 total_blocks = blocks_wide * blocks_high; in msvideo1_decode_8bit() 120 total_blocks--; in msvideo1_decode_8bit() 132 if ((byte_a == 0) && (byte_b == 0) && (total_blocks == 0)) in msvideo1_decode_8bit() 177 total_blocks--; in msvideo1_decode_8bit() 189 int total_blocks; in msvideo1_decode_16bit() local 209 total_blocks = blocks_wide * blocks_high; in msvideo1_decode_16bit() 220 total_blocks--; in msvideo1_decode_16bit() 232 if ((byte_a == 0) && (byte_b == 0) && (total_blocks == 0)) { in msvideo1_decode_16bit() 290 total_blocks--; in msvideo1_decode_16bit()
|
D | rpza.c | 56 if (total_blocks < 1) { \ 70 total_blocks--; \ 87 int total_blocks; in rpza_decode_stream() local 106 total_blocks = ((s->avctx->width + 3) / 4) * ((s->avctx->height + 3) / 4); in rpza_decode_stream() 108 if (total_blocks / 32 > bytestream2_get_bytes_left(&s->gb)) in rpza_decode_stream() 136 n_blocks = FFMIN(n_blocks, total_blocks); in rpza_decode_stream()
|
D | smc.c | 72 total_blocks--; \ 73 if (total_blocks < !!n_blocks) \ 106 int total_blocks; in smc_decode_stream() local 124 total_blocks = ((s->avctx->width + 3) / 4) * ((s->avctx->height + 3) / 4); in smc_decode_stream() 127 while (total_blocks) { in smc_decode_stream() 441 int total_blocks = ((s->avctx->width + 3) / 4) * ((s->avctx->height + 3) / 4); in smc_decode_frame() local 443 if (total_blocks / 1024 > avpkt->size) in smc_decode_frame()
|
D | rpzaenc.c | 83 int total_blocks; member 554 int total_blocks; in rpza_encode_stream() local 570 total_blocks = ((s->frame_width + 3) / 4) * ((s->frame_height + 3) / 4); in rpza_encode_stream() 578 while (block_counter < total_blocks) { in rpza_encode_stream() 586 while (n_blocks < 32 && block_counter + n_blocks < total_blocks) { in rpza_encode_stream() 657 while (n_blocks < 32 && block_counter + n_blocks < total_blocks) { in rpza_encode_stream()
|
D | escape130.c | 203 unsigned total_blocks = avctx->width * avctx->height / 4, in escape130_decode_frame() local 235 for (block_index = 0; block_index < total_blocks; block_index++) { in escape130_decode_frame()
|
/third_party/libsnd/src/ |
D | sds.c | 49 int samplesperblock, total_blocks ; member 294 psds->total_blocks = blockcount ; in sds_read_header() 713 if (newblock > psds->total_blocks) in sds_seek() 731 if (newblock > psds->total_blocks) in sds_seek() 803 if (psds->write_block > psds->total_blocks) in sds_2byte_write() 804 psds->total_blocks = psds->write_block ; in sds_2byte_write() 805 psds->frames = psds->total_blocks * psds->samplesperblock ; in sds_2byte_write() 845 if (psds->write_block > psds->total_blocks) in sds_3byte_write() 846 psds->total_blocks = psds->write_block ; in sds_3byte_write() 847 psds->frames = psds->total_blocks * psds->samplesperblock ; in sds_3byte_write() [all …]
|
/third_party/python/Python/ |
D | pyarena.c | 70 size_t total_blocks; member 150 arena->total_blocks = 1; in _PyArena_New() 194 arena->total_blocks++; in _PyArena_Malloc()
|
/third_party/openssl/crypto/ |
D | param_build.c | 46 size_t total_blocks; member 68 bld->total_blocks += pd->alloc_blocks; in param_push() 360 const size_t total = OSSL_PARAM_ALIGN_SIZE * (p_blks + bld->total_blocks); in OSSL_PARAM_BLD_to_param() 381 bld->total_blocks = 0; in OSSL_PARAM_BLD_to_param()
|
/third_party/libwebsockets/lib/misc/lwsac/ |
D | private-lib-misc-lwsac.h | 60 int total_blocks; member
|
D | lwsac.c | 184 lachead->total_blocks++; in _lwsac_use() 291 (int)(lachead->total_alloc_size >> 10), lachead->total_blocks); in lwsac_info()
|
/third_party/ffmpeg/libavformat/ |
D | ape.c | 151 int total_blocks, final_size = 0; in ape_read_header() local 335 …total_blocks = (ape->totalframes == 0) ? 0 : ((ape->totalframes - 1) * ape->blocksperframe) + ape-… in ape_read_header() 346 st->duration = total_blocks; in ape_read_header()
|
/third_party/gstreamer/gstplugins_good/gst/avi/ |
D | gstavidemux.h | 98 guint32 total_blocks; member
|
D | gstavidemux.c | 1358 entry->total = stream->total_blocks; in gst_avi_demux_add_index() 1364 stream->total_blocks += DIV_ROUND_UP (entry->size, blockalign); in gst_avi_demux_add_index() 1366 stream->total_blocks++; in gst_avi_demux_add_index() 2433 stream->total_blocks = 0; in gst_avi_demux_parse_stream()
|
/third_party/libcoap/src/ |
D | block.c | 770 check_all_blocks_in(coap_rblock_t *rec_blocks, size_t total_blocks) { in check_all_blocks_in() argument 781 if (block + 1 < total_blocks) in check_all_blocks_in()
|
/third_party/rust/crates/libc/src/unix/haiku/ |
D | native.rs | 336 pub total_blocks: ::off_t,
|