Home
last modified time | relevance | path

Searched refs:middle (Results 1 – 4 of 4) sorted by relevance

/cmsis-dsp-3.5.0/Source/SupportFunctions/
Darm_merge_sort_f32.c33 static void topDownMerge(float32_t * pA, uint32_t begin, uint32_t middle, uint32_t end, float32_t *… in topDownMerge() argument
41 uint32_t j = middle; in topDownMerge()
48 if (i < middle && (j >= end || dir==(pA[i] <= pA[j])) ) in topDownMerge()
65 int32_t middle = (end + begin) / 2; // Take the middle point in arm_merge_sort_core_f32() local
67 arm_merge_sort_core_f32(pA, begin, middle, pB, dir); // Sort the left part in arm_merge_sort_core_f32()
68 arm_merge_sort_core_f32(pA, middle, end, pB, dir); // Sort the right part in arm_merge_sort_core_f32()
70 topDownMerge(pB, begin, middle, end, pA, dir); in arm_merge_sort_core_f32()
/cmsis-dsp-3.5.0/Doxygen/templates/
Dnavtree.css41 vertical-align: middle;
Dextra_stylesheet.css498 vertical-align: middle;
519 vertical-align: middle;
704 vertical-align: middle;
1244 vertical-align: middle;
/cmsis-dsp-3.5.0/Testing/
DREADME.md364 But it means that no test using patterns shoudl be used in the middle of the test or some part of i…
565 So, if a test is in the middle of useful code, some part of the code will not execute.