Home
last modified time | relevance | path

Searched refs:src (Results 1 – 12 of 12) sorted by relevance

/cmsis-nn-latest/Source/NNSupportFunctions/
Darm_q7_to_q15_with_offset.c42 void arm_q7_to_q15_with_offset(const int8_t *src, int16_t *dst, int32_t block_size, int16_t offset) in arm_q7_to_q15_with_offset() argument
54 source = vldrbq_s16(src); in arm_q7_to_q15_with_offset()
58 src += 8; in arm_q7_to_q15_with_offset()
80 in_q7x4 = arm_nn_read_s8x4_ia(&src); in arm_q7_to_q15_with_offset()
105 *dst++ = (int16_t)*src++ + offset; in arm_q7_to_q15_with_offset()
Darm_s8_to_s16_unordered_with_offset.c42 void arm_s8_to_s16_unordered_with_offset(const int8_t *src, int16_t *dst, int32_t block_size, int16… in arm_s8_to_s16_unordered_with_offset() argument
53 in_s8x4 = arm_nn_read_s8x4_ia(&src); in arm_s8_to_s16_unordered_with_offset()
68 *dst++ = (int16_t)*src++ + offset; in arm_s8_to_s16_unordered_with_offset()
/cmsis-nn-latest/Source/PoolingFunctions/
Darm_max_pool_s16.c51 const int16_t *src = target; in compare_and_replace_if_larger()
59 comp_max.word = arm_nn_read_q15x2_ia(&src); in compare_and_replace_if_larger()
77 if (*src > *dst) in compare_and_replace_if_larger()
79 *dst = *src; in compare_and_replace_if_larger()
96 const int16x8_t src = vldrhq_z_s16(source, p); in clamp_output() local
97 int16x8_t res = vmaxq_x_s16(src, min, p); in clamp_output()
148 const int16_t *src, in arm_max_pool_s16() argument
198 … const int16_t *start = src + channel_in * (k_x + base_idx_x + (k_y + base_idx_y) * input_x); in arm_max_pool_s16()
218 src += batch_size; in arm_max_pool_s16()
Darm_max_pool_s8.c51 const int8_t *src = target; in compare_and_replace_if_larger_q7()
59 comp_max.word = arm_nn_read_s8x4_ia(&src); in compare_and_replace_if_larger_q7()
86 if (*src > *dst) in compare_and_replace_if_larger_q7()
88 *dst = *src; in compare_and_replace_if_larger_q7()
91 src++; in compare_and_replace_if_larger_q7()
108 const int8x16_t src = vldrbq_z_s8(source, p); in clamp_output() local
109 int8x16_t res = vmaxq_x_s8(src, vmin, p); in clamp_output()
165 const int8_t *src, in arm_max_pool_s8() argument
214 … const int8_t *start = src + channel_in * (k_x + base_idx_x + (k_y + base_idx_y) * input_x); in arm_max_pool_s8()
234 src += batch_size; in arm_max_pool_s8()
Darm_avgpool_s16.c76 const int16_t *src, in arm_avgpool_s16() argument
119 const int16_t *src_base = src; in arm_avgpool_s16()
194 src += batch_input; in arm_avgpool_s16()
233 … const int16_t *start = src + ch_src * (k_x + idx_x + (k_y + idx_y) * input_x); in arm_avgpool_s16()
263 src += batch_input; in arm_avgpool_s16()
297 … sum += src[i_ch_in + ch_src * (k_x + base_idx_x + (k_y + base_idx_y) * input_x)]; in arm_avgpool_s16()
316 src += batch_input; in arm_avgpool_s16()
Darm_avgpool_s8.c77 const int8_t *src, in arm_avgpool_s8() argument
117 const int8_t *src_base = src; in arm_avgpool_s8()
226 src += batch_input; in arm_avgpool_s8()
239 const int8_t *src, in arm_avgpool_s8() argument
297 … const int8_t *start = src + ch_src * (k_x + idx_x + (k_y + idx_y) * input_x); in arm_avgpool_s8()
327 src += batch_size; in arm_avgpool_s8()
355 sum += src[i_ch_in + ch_src * (k_x + k_y * input_x)]; in arm_avgpool_s8()
375 src += batch_input; in arm_avgpool_s8()
/cmsis-nn-latest/
D.gitignore11 Documentation/DoxyGen/src/history.txt
/cmsis-nn-latest/Documentation/Doxygen/
Dgen_doc.sh98 git_changelog -f html -p "v" > src/history.txt
Dnn.dxy.in933 # directories like /usr/src/myproject. Separate the files or directories with
937 INPUT = ./src/mainpage.md \
938 ./src/history.md \
939 ./src/history.txt \
1105 IMAGE_PATH = ./src/images
/cmsis-nn-latest/Include/
Darm_nnsupportfunctions.h157 void arm_q7_to_q15_with_offset(const int8_t *src, int16_t *dst, int32_t block_size, int16_t offset);
182 void arm_s8_to_s16_unordered_with_offset(const int8_t *src, int16_t *dst, int32_t block_size, int16…
1444 __STATIC_FORCEINLINE void arm_memcpy_s8(int8_t *__RESTRICT dst, const int8_t *__RESTRICT src, uint3… in arm_memcpy_s8() argument
1453 : [in] "+r"(src), [out] "+r"(dst) in arm_memcpy_s8()
1457 memcpy(dst, src, block_size); in arm_memcpy_s8()
1468 __STATIC_FORCEINLINE void arm_memcpy_q15(int16_t *__RESTRICT dst, const int16_t *__RESTRICT src, ui… in arm_memcpy_q15() argument
1470 memcpy(dst, src, block_size); in arm_memcpy_q15()
1720 __STATIC_FORCEINLINE void arm_nn_write_s8x2_ia(int8_t **dst, int16_t src) in arm_nn_write_s8x2_ia() argument
1722 memcpy(*dst, &src, 2); in arm_nn_write_s8x2_ia()
Darm_nnfunctions.h2071 const int16_t *src,
/cmsis-nn-latest/Documentation/Doxygen/style_template/
Dnavtree.js104 script.src = scriptName+'.js';