Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/inc/platform/stm32f4xx/cmsis/
Darm_math.h7145 int32_t xIndex, yIndex, index; in arm_bilinear_interp_f32() local
7150 yIndex = (int32_t) Y; in arm_bilinear_interp_f32()
7154 if(xIndex < 0 || xIndex > (S->numRows - 1) || yIndex < 0 in arm_bilinear_interp_f32()
7155 || yIndex > (S->numCols - 1)) in arm_bilinear_interp_f32()
7161 index = (xIndex - 1) + (yIndex - 1) * S->numCols; in arm_bilinear_interp_f32()
7169 index = (xIndex - 1) + (yIndex) * S->numCols; in arm_bilinear_interp_f32()
7186 ydiff = Y - yIndex; in arm_bilinear_interp_f32()