Home
last modified time | relevance | path

Searched refs:dist (Results 1 – 25 of 51) sorted by relevance

123

/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
Dgpclip.c63 Word16 dist, dist_min; in Gp_clip_test_isf() local
70 dist = vo_sub(isf[i], isf[i - 1]); in Gp_clip_test_isf()
71 if(dist < dist_min) in Gp_clip_test_isf()
73 dist_min = dist; in Gp_clip_test_isf()
77 dist = extract_h(L_mac(vo_L_mult(26214, mem[0]), 6554, dist_min)); in Gp_clip_test_isf()
79 if (dist > DIST_ISF_MAX) in Gp_clip_test_isf()
81 dist = DIST_ISF_MAX; in Gp_clip_test_isf()
83 mem[0] = dist; in Gp_clip_test_isf()
Dqpisf_2s.c453 Word32 dist_min, dist; in Sub_VQ() local
461 dist = 0; in Sub_VQ()
466 dist += (temp * temp)<<1; in Sub_VQ()
469 if(dist < dist_min) in Sub_VQ()
471 dist_min = dist; in Sub_VQ()
500 Word32 dist_min[N_SURV_MAX], dist; in VQ_stage1() local
515 dist = 0; in VQ_stage1()
519 dist += (temp * temp)<<1; in VQ_stage1()
524 if(dist < dist_min[k]) in VQ_stage1()
531 dist_min[k] = dist; in VQ_stage1()
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
Dton_stab.cpp531 Word16 dist; in check_lsp() local
545 dist = *(p_lsp++) - *(p_lsp_1++); in check_lsp()
547 if (dist < dist_min1) in check_lsp()
549 dist_min1 = dist; in check_lsp()
559 dist = *(p_lsp++) - *(p_lsp_1++); in check_lsp()
561 if (dist < dist_min2) in check_lsp()
563 dist_min2 = dist; in check_lsp()
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
Dq_plsf_3.cpp289 Word32 dist; in Vq_subvec4() local
320 dist = ((Word32) temp) * temp; in Vq_subvec4()
324 dist += ((Word32) temp) * temp; in Vq_subvec4()
328 dist += ((Word32) temp) * temp; in Vq_subvec4()
332 dist += ((Word32) temp) * temp; in Vq_subvec4()
334 if (dist < dist_min) in Vq_subvec4()
336 dist_min = dist; in Vq_subvec4()
619 Word32 dist; in Vq_subvec3() local
651 dist = ((Word32) temp) * temp; in Vq_subvec3()
655 dist += ((Word32) temp) * temp; in Vq_subvec3()
[all …]
Dq_plsf_5.cpp220 Word32 dist; in Vq_subvec() local
248 dist = ((Word32)temp * temp); in Vq_subvec()
250 if (dist >= dist_min) in Vq_subvec()
257 dist += ((Word32)temp * temp); in Vq_subvec()
259 if (dist >= dist_min) in Vq_subvec()
266 dist += ((Word32)temp * temp); in Vq_subvec()
268 if (dist >= dist_min) in Vq_subvec()
275 dist += ((Word32)temp * temp); in Vq_subvec()
278 if (dist < dist_min) in Vq_subvec()
280 dist_min = dist; in Vq_subvec()
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
Dmath_agree.rs59 int dist = float_dist(actual, expected);
65 rsDebug("ULP difference", dist);
69 int2 dist;
70 dist.x = float_dist(actual.x, expected.x);
71 dist.y = float_dist(actual.y, expected.y);
81 rsDebug("ULP difference .x", dist.x);
82 rsDebug("ULP difference .y", dist.y);
86 int3 dist;
87 dist.x = float_dist(actual.x, expected.x);
88 dist.y = float_dist(actual.y, expected.y);
[all …]
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
Dmath_agree.rs59 int dist = float_dist(actual, expected);
65 rsDebug("ULP difference", dist);
69 int2 dist;
70 dist.x = float_dist(actual.x, expected.x);
71 dist.y = float_dist(actual.y, expected.y);
81 rsDebug("ULP difference .x", dist.x);
82 rsDebug("ULP difference .y", dist.y);
86 int3 dist;
87 dist.x = float_dist(actual.x, expected.x);
88 dist.y = float_dist(actual.y, expected.y);
[all …]
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
Dmath_agree.rs59 int dist = float_dist(actual, expected);
65 rsDebug("ULP difference", dist);
69 int2 dist;
70 dist.x = float_dist(actual.x, expected.x);
71 dist.y = float_dist(actual.y, expected.y);
81 rsDebug("ULP difference .x", dist.x);
82 rsDebug("ULP difference .y", dist.y);
86 int3 dist;
87 dist.x = float_dist(actual.x, expected.x);
88 dist.y = float_dist(actual.y, expected.y);
[all …]
/frameworks/base/core/java/android/text/
DLayout.java1208 float dist = Math.abs(getHorizontal(low, primary) - horiz); in getOffsetForHorizontal() local
1212 if (other < dist) { in getOffsetForHorizontal()
1213 dist = other; in getOffsetForHorizontal()
1218 if (dist < bestdist) { in getOffsetForHorizontal()
1219 bestdist = dist; in getOffsetForHorizontal()
1225 float dist = Math.abs(getHorizontal(here, primary) - horiz); in getOffsetForHorizontal() local
1227 if (dist < bestdist) { in getOffsetForHorizontal()
1228 bestdist = dist; in getOffsetForHorizontal()
1233 float dist = Math.abs(getHorizontal(max, primary) - horiz); in getOffsetForHorizontal() local
1235 if (dist <= bestdist) { in getOffsetForHorizontal()
[all …]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
Dquantize.c332 Word32 dist; in calcSfbDist() local
342 dist = 0; in calcSfbDist()
391 dist = L_add(dist, distSingle); in calcSfbDist()
439 dist = L_add(dist, distSingle); in calcSfbDist()
444 return dist; in calcSfbDist()
/frameworks/opt/setupwizard/library/
Dself.gradle5 apply plugin: 'dist'
26 def distTask = tasks.findByName('dist')
29 // Make the dist task depend on the test variant, so the test APK will be built
/frameworks/data-binding/internal-prebuilts/com/android/databinding/localizemaven/1.1/
Dlocalizemaven-1.1.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/ ...
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
DPoint.java40 public float dist(Point a) { in dist() method in Point
67 float dist1 = dist(a); in getAngle()
68 float dist2 = dist(b); in getAngle()
DStroke.java43 mLength += mPoints.get(mPoints.size() - 1).dist(point); in addPoint()
57 return mPoints.get(0).dist(mPoints.get(mPoints.size() - 1)); in getEndPointLength()
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Dartistic1.rs50 float dist = dot(xyDist, xyDist) * 1.4f;
51 float pdist = native_powr(dist, 2.7f * 0.5f);
55 v1 = mix(v1, v2, dist * 2.f);
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Dartistic1.rs50 float dist = dot(xyDist, xyDist) * 1.4f;
51 float pdist = native_powr(dist, 2.7f * 0.5f);
55 v1 = mix(v1, v2, dist * 2.f);
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Dartistic1.rs50 float dist = dot(xyDist, xyDist) * 1.4f;
51 float pdist = native_powr(dist, 2.7f * 0.5f);
55 v1 = mix(v1, v2, dist * 2.f);
/frameworks/base/core/jni/android/graphics/
DPathMeasure.cpp93 …static jboolean getPosTan(JNIEnv* env, jobject clazz, jlong pairHandle, jfloat dist, jfloatArray p… in getPosTan() argument
99 if (!pair->fMeasure.getPosTan(dist, (SkPoint*)posPtr, (SkVector*)tanPtr)) { in getPosTan()
112 static jboolean getMatrix(JNIEnv* env, jobject clazz, jlong pairHandle, jfloat dist, in getMatrix() argument
116 bool result = pair->fMeasure.getMatrix(dist, matrix, (SkPathMeasure::MatrixFlags)flags); in getMatrix()
/frameworks/rs/java/tests/RsCameraDemo/src/com/android/example/rscamera/
DCameraView.java287 public void setFocusInMeters(float dist) { in setFocusInMeters() argument
289 float d = 10 / (dist + 10 / min); in setFocusInMeters()
293 public void setFocusDist(float dist) { in setFocusDist() argument
294 mCameraOps.setFocusDistance(dist); in setFocusDist()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DPathInterpolatorBuilder.java89 float dist = (float) Math.sqrt(dx * dx + dy * dy); in initPath() local
90 mDist[i] = mDist[i - 1] + dist; in initPath()
/frameworks/native/opengl/tests/angeles/
Dcams.h42 unsigned char dist; // if >0, cam rotates around eye xy on dist * 0.1 member
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
DMaterial.java222 float dist = mOpacity[k + 1].mPos - mOpacity[k].mPos; in buildOpacityTable() local
223 float t = (i - mOpacity[k].mPos) / dist; in buildOpacityTable()
261 float dist = m[k + 1].mPos - m[k].mPos; in buildMaterialProp() local
262 float t2 = (i - m[k].mPos) / dist; in buildMaterialProp()
/frameworks/data-binding/
DsupportBundle.gradle31 …e build server does not pass the build number so we infer it from the last folder of the dist path.
35 project.ext.distDir = file('../../out/dist')
45 println "dist dir ${project.ext.distDir}"
/frameworks/base/tools/layoutlib/create/tests/
DAndroid.mk32 $(call dist-for-goals, sdk win_sdk, $(LOCAL_INSTALLED_MODULE))
/frameworks/base/tools/layoutlib/bridge/tests/
DAndroid.mk36 $(call dist-for-goals, sdk win_sdk, $(LOCAL_INSTALLED_MODULE))

123