Searched refs:blockout (Results 1 – 5 of 5) sorted by relevance
/third_party/openssl/crypto/evp/ |
D | bio_ok.c | 106 int blockout; /* output block is ready */ member 188 if (ctx->blockout) { in ok_read() 212 ctx->blockout = 0; in ok_read() 278 while (ctx->blockout && n > 0) { in ok_write() 291 ctx->blockout = 0; in ok_write() 341 ctx->blockout = 0; in ok_ctrl() 353 ret = ctx->blockout ? ctx->buf_len - ctx->buf_off : 0; in ok_ctrl() 359 if (ctx->blockout == 0) in ok_ctrl() 363 while (ctx->blockout) { in ok_ctrl() 467 ctx->blockout = 1; in sig_out() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
D | bio_ok.c | 106 int blockout; /* output block is ready */ member 188 if (ctx->blockout) { in ok_read() 212 ctx->blockout = 0; in ok_read() 278 while (ctx->blockout && n > 0) { in ok_write() 291 ctx->blockout = 0; in ok_write() 341 ctx->blockout = 0; in ok_ctrl() 353 ret = ctx->blockout ? ctx->buf_len - ctx->buf_off : 0; in ok_ctrl() 359 if (ctx->blockout == 0) in ok_ctrl() 363 while (ctx->blockout) { in ok_ctrl() 467 ctx->blockout = 1; in sig_out() [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | afir_template.c | 149 ftype *blockout = (ftype *)seg->blockout->extended_data[ch]; in fn() local 170 seg->tx_fn(seg->tx[0], blockout, blockin, sizeof(ftype)); in fn() 173 coeff[coffset + n].re = blockout[2 * n]; in fn() 174 coeff[coffset + n].im = blockout[2 * n + 1]; in fn() 273 ftype *blockin, *blockout, *buf, *ptr = (ftype *)out->extended_data[ch] + offset; in fn() local 335 … blockout = (ftype *)seg->blockout->extended_data[ch] + seg->part_index[ch] * seg->block_size; in fn() 340 seg->tx_fn(seg->tx[ch], blockout, blockin, sizeof(ftype)); in fn() 346 … const ftype *blockout = (const ftype *)seg->blockout->extended_data[ch] + i * seg->block_size; in fn() local 350 s->afirdsp.fcmul_add(sumin, blockout, (const ftype *)coeff, seg->part_size); in fn() 352 s->afirdsp.dcmul_add(sumin, blockout, (const ftype *)coeff, seg->part_size); in fn()
|
D | af_afir.h | 46 AVFrame *blockout; member
|
D | af_afir.c | 202 seg->blockout = ff_get_audio_buffer(ctx->inputs[0], seg->nb_partitions * seg->block_size); in init_segment() 207 …if (!seg->buffer || !seg->sumin || !seg->sumout || !seg->blockin || !seg->blockout || !seg->coeff … in init_segment() 235 av_frame_free(&seg->blockout); in uninit_segment()
|