Home
last modified time | relevance | path

Searched refs:buffer (Results 1 – 20 of 20) sorted by relevance

/cmsis-dsp-latest/Testing/Source/Tests/
DInterpolationTestsF16.cpp67 float16_t *buf = buffer.ptr(); // ((2*4-1)*sizeof(float16_t))
74 ASSERT_EMPTY_TAIL(buffer);
86 float16_t *buf = buffer.ptr(); // ((2*9-1)*sizeof(float16_t))
93 ASSERT_EMPTY_TAIL(buffer);
105 float16_t *buf = buffer.ptr(); // ((2*3-1)*sizeof(float16_t))
112 ASSERT_EMPTY_TAIL(buffer);
165 buffer.create(2*4-1,InterpolationTestsF16::TEMP_SPLINE_F16_ID,mgr); in setUp()
176 buffer.create(2*9-1,InterpolationTestsF16::TEMP_SPLINE_F16_ID,mgr); in setUp()
187 buffer.create(2*3-1,InterpolationTestsF16::TEMP_SPLINE_F16_ID,mgr); in setUp()
DInterpolationTestsF32.cpp65 float32_t *buf = buffer.ptr(); // ((2*4-1)*sizeof(float32_t)) in test_spline_square_f32()
72 ASSERT_EMPTY_TAIL(buffer); in test_spline_square_f32()
84 float32_t *buf = buffer.ptr(); // ((2*9-1)*sizeof(float32_t)) in test_spline_sine_f32()
91 ASSERT_EMPTY_TAIL(buffer); in test_spline_sine_f32()
103 float32_t *buf = buffer.ptr(); // ((2*3-1)*sizeof(float32_t)) in test_spline_ramp_f32()
110 ASSERT_EMPTY_TAIL(buffer); in test_spline_ramp_f32()
163 buffer.create(2*4-1,InterpolationTestsF32::TEMP_SPLINE_F32_ID,mgr); in setUp()
174 buffer.create(2*9-1,InterpolationTestsF32::TEMP_SPLINE_F32_ID,mgr); in setUp()
185 buffer.create(2*3-1,InterpolationTestsF32::TEMP_SPLINE_F32_ID,mgr); in setUp()
DSupportTestsF32.cpp309 float32_t *buf = buffer.ptr(); in test_merge_sort_out_f32()
326 float32_t *buf = buffer.ptr(); in test_merge_sort_const_f32()
/cmsis-dsp-latest/Source/BayesFunctions/
Darm_gaussian_naive_bayes_predict_f32.c67 float32_t *buffer = pOutputProbabilities; in arm_gaussian_naive_bayes_predict_f32() local
133 *buffer = tmp + *pLogPrior++; in arm_gaussian_naive_bayes_predict_f32()
134 buffer++; in arm_gaussian_naive_bayes_predict_f32()
164 float32_t *buffer = pOutputProbabilities; in arm_gaussian_naive_bayes_predict_f32() local
261 *buffer++ = tmp; in arm_gaussian_naive_bayes_predict_f32()
262 *buffer++ = tmp1; in arm_gaussian_naive_bayes_predict_f32()
323 *buffer++ = tmp; in arm_gaussian_naive_bayes_predict_f32()
345 float32_t *buffer = pOutputProbabilities; in arm_gaussian_naive_bayes_predict_f32() local
382 *buffer = tmp + logf(*pPrior++); in arm_gaussian_naive_bayes_predict_f32()
383 buffer++; in arm_gaussian_naive_bayes_predict_f32()
Darm_gaussian_naive_bayes_predict_f16.c68 float16_t *buffer = pOutputProbabilities; in arm_gaussian_naive_bayes_predict_f16() local
134 *buffer = (_Float16)tmp + (_Float16)*pLogPrior++; in arm_gaussian_naive_bayes_predict_f16()
135 buffer++; in arm_gaussian_naive_bayes_predict_f16()
155 float16_t *buffer = pOutputProbabilities; in arm_gaussian_naive_bayes_predict_f16() local
191 *buffer = (_Float16)tmp + (_Float16)logf((float32_t)*pPrior++); in arm_gaussian_naive_bayes_predict_f16()
192 buffer++; in arm_gaussian_naive_bayes_predict_f16()
/cmsis-dsp-latest/Source/SupportFunctions/
Darm_merge_sort_init_f32.c46 …void arm_merge_sort_init_f32(arm_merge_sort_instance_f32 * S, arm_sort_dir dir, float32_t * buffer) in arm_merge_sort_init_f32() argument
49 S->buffer = buffer; in arm_merge_sort_init_f32()
Darm_merge_sort_f32.c121 memcpy(S->buffer, pSrc, blockSize*sizeof(float32_t)); in arm_merge_sort_f32()
123 arm_merge_sort_core_f32(S->buffer, 0, blockSize, pA, S->dir); in arm_merge_sort_f32()
/cmsis-dsp-latest/PythonWrapper/examples/kws_example/kws/
DGenericNodes.h65 FIFO(T *buffer,int delay=0):mBuffer(buffer),readPos(0),writePos(delay) {};
66 FIFO(uint8_t *buffer,int delay=0):mBuffer((T*)buffer),readPos(0),writePos(delay) {};
Dkws.ino95 // Get free remaining bytes in the buffer
102 // Read into the sample buffer
110 // Read into the sample buffer
/cmsis-dsp-latest/Include/dsp/
Dsupport_functions.h347 float32_t * buffer; /**< Working buffer */ member
370 float32_t * buffer);
/cmsis-dsp-latest/PythonWrapper/examples/kws_example/
Dappnodes.py54 def __init__(self,outputSize,fifoout,buffer): argument
57 self._buffer=np.array(buffer)
/cmsis-dsp-latest/Testing/Include/Tests/
DInterpolationTestsF16.h30 Client::LocalPattern<float16_t> buffer; variable
DInterpolationTestsF32.h30 Client::LocalPattern<float32_t> buffer; variable
DSupportTestsF32.h17 Client::LocalPattern<float32_t> buffer; variable
DSupportTestsF64.h17 Client::LocalPattern<float64_t> buffer; variable
DSupportTestsF16.h21 Client::LocalPattern<float16_t> buffer; variable
/cmsis-dsp-latest/Documentation/Doxygen/src/
Dmainpage.md29buffer (3 words) because the vectorized code may read a little bit after the end of a buffer. You …
Dintroduction.md59 …tor operations (`+`,`*`) are done in one pass with one loop. There is no more any temporary buffer.
Dvector.md17 * `Vector_Base<P>` is providing the storage. A vector owns its storage buffer.
/cmsis-dsp-latest/Testing/
DREADME.md327 …defined by virtual class Memory. An implementation ArrayMemory is provided which is using a buffer.
330 …r can provide new buffer, free all the already allocated buffers and give a generation number whic…
673 In tearDown we have to clean the test. No need to free the buffer since the memory manager will do …