Home
last modified time | relevance | path

Searched refs:countV (Results 1 – 3 of 3) sorted by relevance

/third_party/cmsis/CMSIS/DSP/Source/StatisticsFunctions/
Darm_max_f32.c165 uint32x4_t countV; in arm_max_f32() local
171 countV = vld1q_u32(countVInit); in arm_max_f32()
216 countV = vbslq_u32(idxV, index,countV ); in arm_max_f32()
229 countV = vbslq_u32(idxV, countV,maxIdx); in arm_max_f32()
231 countV2 = vpmin_u32(vget_low_u32(countV),vget_high_u32(countV)); in arm_max_f32()
Darm_min_f32.c166 uint32x4_t countV; in arm_min_f32() local
172 countV = vld1q_u32(countVInit); in arm_min_f32()
216 countV = vbslq_u32(idxV, index,countV ); in arm_min_f32()
229 countV = vbslq_u32(idxV, countV,maxIdx); in arm_min_f32()
231 countV2 = vpmin_u32(vget_low_u32(countV),vget_high_u32(countV)); in arm_min_f32()
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_area_task.cpp144 uint32 countV = (repeatV + tileSize.v - 1) / tileSize.v; in FindTileSize() local
147 tileSize.v = (repeatV + countV - 1) / countV; in FindTileSize()