Home
last modified time | relevance | path

Searched refs:pad_size (Results 1 - 5 of 5) sorted by relevance

/third_party/ffmpeg/libavfilter/dnn/
H A Ddnn_backend_native_layer_conv2d.c128 int pad_size = (conv_params->padding_method == VALID) ? (conv_params->kernel_size - 1) / 2 * conv_params->dilation : 0; in dnn_execute_layer_conv2d_thread() local
131 output += (conv_params->output_num) * (width - 2 * pad_size) * (thread_param->thread_start - pad_size); in dnn_execute_layer_conv2d_thread()
136 for (int x = pad_size; x < width - pad_size; ++x) { in dnn_execute_layer_conv2d_thread()
202 int pad_size = (conv_params->padding_method == VALID) ? (conv_params->kernel_size - 1) / 2 * conv_params->dilation : 0; in ff_dnn_execute_layer_conv2d() local
207 output_operand->dims[1] = height - pad_size * 2; in ff_dnn_execute_layer_conv2d()
208 output_operand->dims[2] = width - pad_size * 2; in ff_dnn_execute_layer_conv2d()
233 thread_stride = (height - pad_size * 2) / thread_num; in ff_dnn_execute_layer_conv2d()
238 thread_param[i].thread_start = thread_stride * i + pad_size; in ff_dnn_execute_layer_conv2d()
[all...]
/third_party/libsnd/src/
H A Drf64.c638 { sf_count_t current, pad_size ; in rf64_write_header() local
745 pad_size = psf->dataoffset - 16 - psf->header.indx ; in rf64_write_header()
746 if (pad_size >= 0) in rf64_write_header()
747 psf_binheader_writef (psf, "m4z", BHWm (PAD_MARKER), BHW4 ((unsigned int) pad_size), BHWz (pad_size)) ; in rf64_write_header()
/third_party/backends/lib/
H A Dalloca.c303 long pad_size; /* Stack pad size. */ member
/third_party/ffmpeg/libavutil/x86/
H A Dx86inc.asm487 %assign %%pad_size 0
501 %assign %%pad_size stack_size_padded
505 movaps xmm7, [rsp + stack_offset - %%pad_size + 24]
508 movaps xmm6, [rsp + stack_offset - %%pad_size + 8]
/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativeS390X.c1433 sljit_uw pad_size; in sljit_generate_code() local
1506 pad_size = ((ins_size + 7UL) & ~7UL) - ins_size; in sljit_generate_code()
1507 SLJIT_ASSERT(pad_size < 8UL); in sljit_generate_code()
1510 code = SLJIT_MALLOC_EXEC(ins_size + pad_size + pool_size, in sljit_generate_code()
1521 pool = (sljit_uw *)((sljit_uw)code + ins_size + pad_size); in sljit_generate_code()

Completed in 10 milliseconds