Home
last modified time | relevance | path

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

/aosp12/system/media/audio_utils/
H A Dpower.cpp165 const size_t vectorLength = sizeof(Vector) / sizeof(Scalar); // typically 4 (a const) in energyMonoVector() local
189 for (i = 0; i < size - size % vectorLength /* compiler optimized */; i += vectorLength) { in energyMonoVector()
/aosp12/frameworks/base/core/java/android/gesture/
H A DGestureUtils.java270 int vectorLength = numPoints * 2; in temporalSampling() local
271 float[] vector = new float[vectorLength]; in temporalSampling()
317 for (i = index; i < vectorLength; i += 2) { in temporalSampling()
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DCropMath.java122 float mag = GeometryMathUtils.vectorLength( in closestSide()
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DGeometryMathUtils.java200 public static float vectorLength(float[] a) { in vectorLength() method in GeometryMathUtils