HomeSort by relevance Sort by last modified time
    Searched defs:dist (Results 201 - 225 of 256) sorted by null

1 2 3 4 5 6 7 891011

  /external/libpng/contrib/gregbook/
rpng2-x.c 1216 double angle=0.0, aoffset=0.0, maxDist, dist; local
1985 double angle=0.0, aoffset=0.0, maxDist, dist; local
    [all...]
  /external/mesa3d/src/mesa/main/
ffvertex_prog.c 948 struct ureg dist )
977 if (p->state->unit[i].light_attenuated && !is_undef(dist)) {
981 emit_op1(p, OPCODE_RCP, dist, WRITEMASK_YZ, dist);
983 emit_op2(p, OPCODE_MUL, dist, WRITEMASK_XZ, dist, swizzle1(dist,Y));
984 /* 1/dist-atten */
985 emit_op2(p, OPCODE_DP3, dist, 0, attenuation, dist);
1122 struct ureg dist = undef; local
    [all...]
  /external/opencv/cv/src/
cvcalibinit.cpp 1454 float dx, dy, dist; local
    [all...]
  /external/opencv/cvaux/src/
cvtrifocal.cpp 956 double dist=-1; local
957 dist = 0;
972 if( newDist > dist )
974 dist = newDist
1238 double dist=-1; local
    [all...]
cvepilines.cpp 1949 double dist; local
2192 float dist; local
    [all...]
cvlee.cpp 3711 float dist = _cvPPDist(pPoint, pRayPoint1); local
3841 float dist = _cvPPDist(pPoint, pRayPoint1); local
3941 float dist = Point.x - ParPoint1_img.x; local
4039 float dist = Point.x - ParPoint1_img.x; local
4192 float dist = Point.x - Par1Point1_img.x; local
4343 float dist = Point.x - Par1Point1_img.x; local
    [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 426 int a, dist = (pt1.y >> (XY_SHIFT - 5)) & 31; local
428 a = (ep_corr * icvFilterTable[dist + 32] >> 8) & 0xff;
433 a = (ep_corr * icvFilterTable[dist] >> 8) & 0xff;
438 a = (ep_corr * icvFilterTable[63 - dist] >> 8) & 0xff;
458 int a, dist = (pt1.x >> (XY_SHIFT - 5)) & 31; local
460 a = (ep_corr * icvFilterTable[dist + 32] >> 8) & 0xff;
465 a = (ep_corr * icvFilterTable[dist] >> 8) & 0xff;
470 a = (ep_corr * icvFilterTable[63 - dist] >> 8) & 0xff;
501 int a, dist = (pt1.y >> (XY_SHIFT - 5)) & 31; local
503 a = (ep_corr * icvFilterTable[dist + 32] >> 8) & 0xff
533 int a, dist = (pt1.x >> (XY_SHIFT - 5)) & 31; local
    [all...]
  /external/webp/src/dec/
vp8l.c 46 DIST = 4
146 const int dist = yoffset * xsize + xoffset; local
147 return (dist >= 1) ? dist : 1;
737 int dist_code, dist; \
740 const int dist_symbol = ReadSymbol(&htree_group->htrees_[DIST], br); \
743 dist = PlaneCodeToDistance(width, dist_code); \
744 if (src - data < dist || src_end - src < length) { \
750 for (i = 0; i < length; ++i) src[i] = src[i - dist]; \
    [all...]
  /frameworks/base/core/java/android/text/
Layout.java 1090 float dist = Math.abs(getPrimaryHorizontal(low) - horiz); local
1108 float dist = Math.abs(getPrimaryHorizontal(here) - horiz); local
1116 float dist = Math.abs(getPrimaryHorizontal(max) - horiz); local
1318 int dist = 0; local
    [all...]
  /packages/apps/Camera/src/com/android/camera/
Util.java 415 int dist = Math.abs(orientation - orientationHistory); local
416 dist = Math.min( dist, 360 - dist );
417 changeOrientation = ( dist >= 45 + ORIENTATION_HYSTERESIS );
  /packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java 463 int dist = Math.abs(orientation - orientationHistory); local
464 dist = Math.min( dist, 360 - dist );
465 changeOrientation = ( dist >= 45 + ORIENTATION_HYSTERESIS );
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 862 int dist = 0; local
864 dist = index - mEndRow + 1;
866 dist = mStartRow - index;
871 if (dist > bestDistance) {
872 bestDistance = dist;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
DeviceProfile.java 387 private float dist(PointF p0, PointF p1) { method in class:DeviceProfile
394 float d = dist(a, b);
412 return (int) (dist(xy, a.dimens) - dist(xy, b.dimens));
    [all...]
DragLayer.java 615 final float dist = (float) Math.sqrt(Math.pow(to.left - from.left, 2) + local
623 if (dist < maxDist) {
624 duration *= mCubicEaseOutInterpolator.getInterpolation(dist / maxDist);
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 787 final float dist = (float) Math.hypot(delta[0], delta[1]); local
788 final int duration = (int) (1000f * dist / mThrowSpeed);
859 float dist = (float) Math.hypot(dx, dy); local
860 int duration = (int) (1000f * dist / mThrowSpeed);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPath.cpp 1367 SkScalar dist = SkScalarMulDiv(radius, SK_Scalar1 - cosh, sinh); local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
coff-objfmt.c 74 COFF_RELOC_AMD64_REL32 = 0x4, /* 32-bit relative (0 byte dist) */
75 COFF_RELOC_AMD64_REL32_1 = 0x5, /* 32-bit relative (1 byte dist) */
76 COFF_RELOC_AMD64_REL32_2 = 0x6, /* 32-bit relative (2 byte dist) */
77 COFF_RELOC_AMD64_REL32_3 = 0x7, /* 32-bit relative (3 byte dist) */
78 COFF_RELOC_AMD64_REL32_4 = 0x8, /* 32-bit relative (4 byte dist) */
79 COFF_RELOC_AMD64_REL32_5 = 0x9, /* 32-bit relative (5 byte dist) */
455 /*@only@*/ /*@null@*/ yasm_intnum *dist = NULL; local
515 dist = yasm_calc_bc_dist(wrt_precbc, rel_precbc);
516 if (!dist) {
681 * and dist. We do all this at the end to avoid creating temporar
    [all...]
  /external/chromium_org/v8/src/mips/
assembler-mips.cc 786 int32_t dist = pos - fixup_pos; local
790 if (dist > kMaxBranchOffset) {
798 dist = pos - fixup_pos;
    [all...]
  /external/skia/src/core/
SkPath.cpp 1367 SkScalar dist = SkScalarMulDiv(radius, SK_Scalar1 - cosh, sinh); local
    [all...]
  /external/v8/src/mips/
assembler-mips.cc 792 int32_t dist = pos - fixup_pos; local
796 if (dist > kMaxBranchOffset) {
804 dist = pos - fixup_pos;
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 762 int dist = 0; local
769 && (dist = key.squaredDistanceFrom(x, y)) < mProximityThreshold)
774 if (dist < closestKeyDist) {
775 closestKeyDist = dist;
782 if (mDistances[j] > dist) {
790 mDistances[j + c] = dist;
1537 float dist = pastX[i] - oldestX; local
    [all...]
  /frameworks/base/core/java/android/widget/
CalendarView.java 1316 int dist = child.getBottom() - mListScrollTopOffset; local
    [all...]
RemoteViewsAdapter.java 689 int dist = Math.abs(i-pos); local
690 if (dist > maxDistNotVisible && !visibleWindow.contains(i)) {
694 maxDistNotVisible = dist;
696 if (dist >= maxDist) {
700 maxDist = dist;
    [all...]
  /packages/apps/Camera2/src/com/android/camera/ui/
FilmStripView.java 865 int dist = Math.abs(pointX - c); local
866 if (dist < min) {
867 min = dist;
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java 809 int dist = 0; local
816 && (dist = key.squaredDistanceFrom(x, y)) < mProximityThreshold)
820 if (dist < closestKeyDist) {
821 closestKeyDist = dist;
828 if (mDistances[j] > dist) {
835 mDistances[j + c] = dist;
1486 float dist = pastX[i] - oldestX; local
    [all...]

Completed in 706 milliseconds

1 2 3 4 5 6 7 891011