HomeSort by relevance Sort by last modified time
    Searched defs:dist (Results 151 - 175 of 245) sorted by null

1 2 3 4 5 67 8 910

  /external/qemu/distrib/zlib-1.2.3/
trees.c 246 int dist; /* distance index */ local
274 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
275 dist = 0;
277 base_dist[code] = dist;
279 _dist_code[dist++] = (uch)code;
282 Assert (dist == 256, "tr_static_init: dist != 256");
283 dist >>= 7; /* from now on, all distances are divided by 128 */
285 base_dist[code] = dist << 7
1077 unsigned dist; \/* distance of matched string *\/ local
    [all...]
  /external/skia/src/gpu/
GrAAConvexPathRenderer.cpp 381 SkScalar dist = fanPt.distanceToLineBetween(verts[*v + 1].fPos, local
383 verts[*v + 0].fUV.set(0, dist);
  /external/skia/src/pathops/
SkPathOpsCommon.cpp 464 double dist = dx * dx + dy * dy; local
465 distances[row + iIndex] = dist; // oStart distance from iStart
  /external/zlib/src/
trees.c 242 int dist; /* distance index */ local
272 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
273 dist = 0;
275 base_dist[code] = dist;
277 _dist_code[dist++] = (uch)code;
280 Assert (dist == 256, "tr_static_init: dist != 256");
281 dist >>= 7; /* from now on, all distances are divided by 128 */
283 base_dist[code] = dist << 7
1065 unsigned dist; \/* distance of matched string *\/ local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterGradRepresentation.java 218 double dist = Math.hypot(point.xPos1 - x, point.yPos1 - y); local
219 if (dist < addDelta) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
EclipseControl.java 83 float dist = dx * dx + dy * dy; local
84 if (dist < min) {
85 min = dist;
96 float dist = (float) Math.sqrt(dx * dx + dy * dy); local
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureStroke.java 293 final int dist = getDistance(lastX, lastY, x, y); local
315 return dist;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
platform.py 65 # 0.5.1 - included code for slackware dist; added exception handlers
347 def dist(distname='',version='',id='', function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
platform.py 65 # 0.5.1 - included code for slackware dist; added exception handlers
347 def dist(distname='',version='',id='', function
    [all...]
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 726 if (cam->dist)
728 float dist = cam->dist * 0.1f; local
732 eX = cX - (float)cos(lerp[3]) * dist;
733 eY = cY - (float)sin(lerp[3]) * dist;
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_service.cc 551 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); local
552 std::string client_name(dist->GetSafeBrowsingName());
    [all...]
  /external/chromium_org/chrome/browser/ui/views/app_list/
app_list_controller_win.cc 159 // Using Chrome Binary dist: Chrome dist may not exist for the legacy
160 // App Launcher, and App Launcher dist may be "shadow", which does not
964 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); local
    [all...]
  /external/chromium_org/chrome/installer/setup/
setup_main.cc 329 BrowserDistribution* dist = (*scan)->distribution();
331 original_state.GetProductState(is_system_install, dist->GetType());
337 GoogleUpdateSettings::GetAppUpdatePolicy(dist->GetAppGuid(),
341 << dist->GetAppShortCutName() << " (value: " << app_policy
796 BrowserDistribution* dist = chrome->distribution(); local
    [all...]
  /external/chromium_org/chrome_frame/test/
test_with_web_server.cc 308 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); local
310 InstallUtil::GetChromeVersion(dist, true, &ver_system);
312 InstallUtil::GetChromeVersion(dist, false, &ver_system);
316 base::FilePath cf_dll_path(installer::GetChromeInstallPath(system_install, dist));
    [all...]
  /external/chromium_org/third_party/freetype/src/autofit/
afcjk.c 141 FT_Pos dist; local
144 dist = seg->pos - link->pos;
145 if ( dist < 0 )
146 dist = -dist;
149 axis->widths[num_widths++].org = dist;
607 FT_Pos dist; local
617 dist = FT_MulFix( blue->ref.org - blue->shoot.org, scale );
618 if ( dist <= 48 && dist >= -48
757 FT_Pos dist = seg2->pos - seg1->pos; local
946 FT_Pos dist; local
1226 FT_Pos dist; local
1343 FT_Pos dist; local
1385 FT_Pos dist = width; local
1503 FT_Pos dist = stem_edge->opos - base_edge->opos; local
    [all...]
aflatin.c 129 FT_Pos dist; local
132 dist = seg->pos - link->pos;
133 if ( dist < 0 )
134 dist = -dist;
137 axis->widths[ num_widths++ ].org = dist;
304 FT_Pos dist; local
319 dist = points[prev].y - best_y;
320 if ( dist < -5 || dist > 5
627 FT_Pos dist; local
981 FT_Pos dist = pos2 - pos1; local
1123 FT_Pos dist; local
1405 FT_Pos dist; local
1550 FT_Pos dist; local
1594 FT_Pos dist = width; local
1755 FT_Pos dist = stem_edge->opos - base_edge->opos; local
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
backward_references.c 57 static int DistanceToPlaneCode(int xsize, int dist) {
58 const int yoffset = dist / xsize;
59 const int xoffset = dist - yoffset * xsize;
65 return dist + 120;
733 const int dist = refs->refs[i].argb_or_distance; local
734 const int transformed_dist = DistanceToPlaneCode(xsize, dist);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/
bin-objfmt.c 498 /*@null@*/ yasm_intnum *dist; local
502 * vstart + intnum(dist).
509 (dist = yasm_calc_bc_dist(yasm_section_bcs_first(sect), precbc))) {
513 yasm_intnum_calc(dist, YASM_EXPR_ADD, bsd->ivstart);
515 e->terms[i].data.intn = dist;
    [all...]
  /external/freetype/src/autofit/
afcjk.c 141 FT_Pos dist; local
144 dist = seg->pos - link->pos;
145 if ( dist < 0 )
146 dist = -dist;
149 axis->widths[num_widths++].org = dist;
611 FT_Pos dist; local
621 dist = FT_MulFix( blue->ref.org - blue->shoot.org, scale );
622 if ( dist <= 48 && dist >= -48
761 FT_Pos dist = seg2->pos - seg1->pos; local
950 FT_Pos dist; local
1231 FT_Pos dist; local
1348 FT_Pos dist; local
1390 FT_Pos dist = width; local
1508 FT_Pos dist = stem_edge->opos - base_edge->opos; local
    [all...]
aflatin.c 136 FT_Pos dist; local
139 dist = seg->pos - link->pos;
140 if ( dist < 0 )
141 dist = -dist;
144 axis->widths[num_widths++].org = dist;
332 FT_Pos dist; local
358 dist = FT_ABS( points[prev].y - best_y );
361 if ( dist > 5 )
362 if ( FT_ABS( points[prev].x - best_x ) <= 20 * dist )
693 FT_Pos dist; local
1048 FT_Pos dist = pos2 - pos1; local
1190 FT_Pos dist; local
1472 FT_Pos dist; local
1615 FT_Pos dist; local
1659 FT_Pos dist = width; local
1820 FT_Pos dist = stem_edge->opos - base_edge->opos; local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingSphere.java 779 float dist = -a1 - root; local
780 Vector3f point = new Vector3f(ray.direction).multLocal(dist).addLocal(ray.origin);
781 results.addCollision(new CollisionResult(point, dist));
783 dist = -a1 + root;
784 point = new Vector3f(ray.direction).multLocal(dist).addLocal(ray.origin);
785 results.addCollision(new CollisionResult(point, dist));
788 float dist = -a1; local
789 Vector3f point = new Vector3f(ray.direction).multLocal(dist).addLocal(ray.origin);
790 results.addCollision(new CollisionResult(point, dist));
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
ChaseCamera.java 330 float dist = targetDir.length(); local
333 if (offsetDistance < dist) {
  /external/libpng/contrib/gregbook/
rpng2-win.c 946 double angle=0.0, aoffset=0.0, maxDist, dist; local
    [all...]
  /external/opencv/cv/src/
cvshapedescr.cpp 193 float dist = icvDistanceL2_32f( pts[i], pts[j] ); local
195 if( max_dist < dist )
197 max_dist = dist;
    [all...]
cvstereogc.cpp 60 int dist; member in struct:GCVtx
153 v->dist = 1;
189 u->dist = v->dist + 1;
204 if( u->dist > v->dist+1 && u->ts <= v->ts )
209 u->dist = v->dist + 1;
295 d += u->dist;
307 u->dist = 1
    [all...]

Completed in 3742 milliseconds

1 2 3 4 5 67 8 910