Home
last modified time | relevance | path

Searched refs:padding (Results 1 – 22 of 22) sorted by relevance

/btstack/port/stm32-f4discovery-usb/Drivers/CMSIS/NN/Source/ConvolutionFunctions/
H A Darm_convolve_HWC_q7_fast.c98 const uint16_t padding, in arm_convolve_HWC_q7_fast() argument
136 for (i_out_y = 0; i_out_y < padding; i_out_y++) in arm_convolve_HWC_q7_fast()
141 …for (i_ker_y = i_out_y * stride - padding; i_ker_y < i_out_y * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q7_fast()
143 …for (i_ker_x = i_out_x * stride - padding; i_ker_x < i_out_x * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q7_fast()
174 for (; i_out_y < dim_im_out - padding; i_out_y++) in arm_convolve_HWC_q7_fast()
178 for (i_out_x = 0; i_out_x < padding; i_out_x++) in arm_convolve_HWC_q7_fast()
181 …for (i_ker_y = i_out_y * stride - padding; i_ker_y < i_out_y * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q7_fast()
183 …for (i_ker_x = i_out_x * stride - padding; i_ker_x < i_out_x * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q7_fast()
213 for (; i_out_x < dim_im_out - padding; i_out_x++) in arm_convolve_HWC_q7_fast()
216 …for (i_ker_y = i_out_y * stride - padding; i_ker_y < i_out_y * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q7_fast()
[all …]
H A Darm_convolve_HWC_q15_basic.c81 const uint16_t padding, in arm_convolve_HWC_q15_basic() argument
109 …for (i_ker_y = i_out_y * stride - padding; i_ker_y < i_out_y * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q15_basic()
111 …for (i_ker_x = i_out_x * stride - padding; i_ker_x < i_out_x * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q15_basic()
180 in_row = stride * j + m - padding; in arm_convolve_HWC_q15_basic()
181 in_col = stride * k + n - padding; in arm_convolve_HWC_q15_basic()
H A Darm_convolve_HWC_q7_basic.c80 const uint16_t padding, in arm_convolve_HWC_q7_basic() argument
108 …for (i_ker_y = i_out_y * stride - padding; i_ker_y < i_out_y * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q7_basic()
110 …for (i_ker_x = i_out_x * stride - padding; i_ker_x < i_out_x * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q7_basic()
203 in_row = stride * j + m - padding; in arm_convolve_HWC_q7_basic()
204 in_col = stride * k + n - padding; in arm_convolve_HWC_q7_basic()
H A Darm_convolve_HWC_q7_RGB.c86 const uint16_t padding, in arm_convolve_HWC_q7_RGB() argument
115 …for (i_ker_y = i_out_y * stride - padding; i_ker_y < i_out_y * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q7_RGB()
117 …for (i_ker_x = i_out_x * stride - padding; i_ker_x < i_out_x * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q7_RGB()
252 in_row = stride * j + m - padding; in arm_convolve_HWC_q7_RGB()
253 in_col = stride * k + n - padding; in arm_convolve_HWC_q7_RGB()
H A Darm_convolve_HWC_q15_fast.c86 const uint16_t padding, in arm_convolve_HWC_q15_fast() argument
117 …for (i_ker_y = i_out_y * stride - padding; i_ker_y < i_out_y * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q15_fast()
119 …for (i_ker_x = i_out_x * stride - padding; i_ker_x < i_out_x * stride - padding + dim_kernel; i_ke… in arm_convolve_HWC_q15_fast()
228 in_row = stride * j + m - padding; in arm_convolve_HWC_q15_fast()
229 in_col = stride * k + n - padding; in arm_convolve_HWC_q15_fast()
H A Darm_depthwise_separable_conv_HWC_q7.c88 const uint16_t padding, in arm_depthwise_separable_conv_HWC_q7() argument
122 …for (i_ker_y = i_out_y * stride - padding; i_ker_y < i_out_y * stride - padding + dim_kernel; i_ke… in arm_depthwise_separable_conv_HWC_q7()
124 …for (i_ker_x = i_out_x * stride - padding; i_ker_x < i_out_x * stride - padding + dim_kernel; i_ke… in arm_depthwise_separable_conv_HWC_q7()
390 int in_row = stride * i_out_y + i_ker_y - padding; in arm_depthwise_separable_conv_HWC_q7()
391 int in_col = stride * i_out_x + i_ker_x - padding; in arm_depthwise_separable_conv_HWC_q7()
/btstack/port/stm32-f4discovery-usb/Drivers/CMSIS/NN/Source/PoolingFunctions/
H A Darm_pool_q7_HWC.c168 const uint16_t padding, in arm_maxpool_q7_HWC() argument
187 if (i_x * stride - padding < 0) in arm_maxpool_q7_HWC()
192 win_start = Im_in + (i_y * dim_im_in + i_x * stride - padding) * ch_im_in; in arm_maxpool_q7_HWC()
195 if (i_x * stride - padding + dim_kernel >= dim_im_in) in arm_maxpool_q7_HWC()
200 … win_stop = Im_in + (i_y * dim_im_in + i_x * stride - padding + dim_kernel) * ch_im_in; in arm_maxpool_q7_HWC()
225 if (i_y * stride - padding < 0) in arm_maxpool_q7_HWC()
230 row_start = Im_in + (i_y * stride - padding) * dim_im_in * ch_im_in; in arm_maxpool_q7_HWC()
233 if (i_y * stride - padding + dim_kernel >= dim_im_in) in arm_maxpool_q7_HWC()
238 row_end = Im_in + (i_y * stride - padding + dim_kernel) * dim_im_in * ch_im_in; in arm_maxpool_q7_HWC()
267 for (k_y = i_y * stride - padding; k_y < i_y * stride - padding + dim_kernel; k_y++) in arm_maxpool_q7_HWC()
[all …]
/btstack/port/stm32-f4discovery-usb/Drivers/CMSIS/NN/NN_Lib_Tests/nn_test/Ref_Implementations/
H A Darm_pool_ref.c25 const uint16_t padding, // padding sizes in arm_avepool_q7_HWC_ref() argument
42 for (k_y = i_y * stride - padding; k_y < i_y * stride - padding + dim_kernel; k_y++) in arm_avepool_q7_HWC_ref()
44 … for (k_x = i_x * stride - padding; k_x < i_x * stride - padding + dim_kernel; k_x++) in arm_avepool_q7_HWC_ref()
63 const uint16_t padding, // padding sizes in arm_maxpool_q7_HWC_ref() argument
79 for (k_y = i_y * stride - padding; k_y < i_y * stride - padding + dim_kernel; k_y++) in arm_maxpool_q7_HWC_ref()
81 … for (k_x = i_x * stride - padding; k_x < i_x * stride - padding + dim_kernel; k_x++) in arm_maxpool_q7_HWC_ref()
H A Darm_depthwise_separable_conv_HWC_q7_ref.c27 const uint16_t padding, // padding sizes in arm_depthwise_separable_conv_HWC_q7_ref() argument
56 int in_row = stride * i_out_y + i_ker_y - padding; in arm_depthwise_separable_conv_HWC_q7_ref()
57 int in_col = stride * i_out_x + i_ker_x - padding; in arm_depthwise_separable_conv_HWC_q7_ref()
H A Darm_convolve_HWC_q15_ref.c27 const uint16_t padding, // padding sizes in arm_convolve_HWC_q15_ref() argument
55 in_row = stride * j + m - padding; in arm_convolve_HWC_q15_ref()
56 in_col = stride * k + n - padding; in arm_convolve_HWC_q15_ref()
H A Darm_convolve_HWC_q7_ref.c27 const uint16_t padding, // padding sizes in arm_convolve_HWC_q7_ref() argument
56 in_row = stride * j + m - padding; in arm_convolve_HWC_q7_ref()
57 in_col = stride * k + n - padding; in arm_convolve_HWC_q7_ref()
H A Dref_functions.h44 const uint16_t padding, // padding sizes
79 const uint16_t padding, // padding sizes
114 const uint16_t padding, // padding sizes
216 const uint16_t padding, // padding sizes
226 const uint16_t padding, // padding sizes
/btstack/port/stm32-wb55xx-nucleo-freertos/Drivers/STM32WBxx_HAL_Driver/_htmresc/
H A Dmini-st.css23 --universal-padding: 0.125rem;
80 padding: 0.1em 0.5em 0.2em 0.5em;
85 padding-left: calc(2 * var(--universal-margin));
91 padding-left: calc(4 * var(--universal-margin)); }
104 padding-left: calc(6 * var(--universal-margin)); }
123 padding: calc(3 * var(--universal-padding));
129 top: calc(0rem - var(--universal-padding));
150 padding: calc(var(--universal-padding) / 4) calc(var(--universal-padding) / 2); }
156 padding: calc(var(--universal-padding) / 4) calc(var(--universal-padding) / 2); }
161 padding: calc(1.5 * var(--universal-padding));
[all …]
/btstack/port/stm32-f4discovery-usb/Drivers/CMSIS/NN/Include/
H A Darm_nnfunctions.h151 const uint16_t padding,
234 const uint16_t padding,
276 const uint16_t padding,
424 const uint16_t padding,
466 const uint16_t padding,
571 const uint16_t padding,
946 const uint16_t padding,
971 const uint16_t padding,
/btstack/3rd-party/lc3-google/python/
H A Dlc3.py266 padding = max(pcm_len - frame_samples, 0)
267 pcm_buffer.extend(array.array('f', [0] * padding))
270 padding = max(pcm_len * ctypes.sizeof(pcm_t) - len(pcm), 0)
271 pcm_buffer = bytearray(pcm) + bytearray(padding)
/btstack/3rd-party/lwip/core/src/include/lwip/prot/
H A Dethernet.h78 PACK_STRUCT_FLD_8(u8_t padding[ETH_PAD_SIZE]);
/btstack/src/classic/
H A Davdtp_source.c173 uint8_t padding = 0; in avdtp_source_setup_media_header() local
181 media_packet[pos++] = (rtp_version << 6) | (padding << 5) | (extension << 4) | csrc_count; in avdtp_source_setup_media_header()
H A Davdtp.h371 uint8_t padding; member
/btstack/example/
H A Da2dp_sink_demo.c632 media_header->padding = get_bit16(packet[pos],2); in read_media_data_header()
/btstack/3rd-party/lwip/core/
H A DCHANGELOG2626 padding is included.
4118 is to prefix the 14-bit Ethernet headers with two padding bytes.
/btstack/port/mtk/LEScan/libs/
HDandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/ ...
/btstack/port/mtk/SPPClient/libs/
HDandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/ ...