HomeSort by relevance Sort by last modified time
    Searched refs:dist (Results 276 - 300 of 584) sorted by null

<<11121314151617181920>>

  /external/qemu-pc-bios/vgabios/
Makefile 31 dist-clean: clean
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 58 raise DistutilsOptionError("No dist file created in earlier command")
122 dist, version, id = platform.dist()
123 if dist:
124 comment = 'built for %s %s' % (dist, version)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 58 raise DistutilsOptionError("No dist file created in earlier command")
122 dist, version, id = platform.dist()
123 if dist:
124 comment = 'built for %s %s' % (dist, version)
  /external/chromium_org/chrome/installer/setup/
setup_util_unittest.cc 442 BrowserDistribution* dist = BrowserDistribution::GetSpecificDistribution( local
445 base::win::RegKey(kRootKey, dist->GetVersionKey().c_str(),
449 base::win::RegKey(kRootKey, dist->GetStateKey().c_str(),
453 base::win::RegKey(kRootKey, dist->GetStateKey().c_str(),
457 dist = BrowserDistribution::GetSpecificDistribution(
460 base::win::RegKey(kRootKey, dist->GetVersionKey().c_str(),
464 base::win::RegKey(kRootKey, dist->GetStateKey().c_str(),
install_worker.cc 214 string16 GetRegCommandKey(BrowserDistribution* dist,
216 string16 cmd_key(dist->GetVersionKey());
736 BrowserDistribution* dist = product.distribution(); local
986 BrowserDistribution* dist = (*scan)->distribution(); local
1009 BrowserDistribution* dist = (*scan)->distribution(); local
1067 BrowserDistribution* dist = products[i]->distribution(); local
1115 BrowserDistribution* dist = products[i]->distribution(); local
1311 BrowserDistribution* dist = local
    [all...]
install_worker.h 43 BrowserDistribution* dist,
130 BrowserDistribution* dist,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 108 dist = os.path.join(tmpdir, 'dist')
109 os.mkdir(dist)
110 self.write_file([dist, 'file1'], 'xxx')
111 self.write_file([dist, 'file2'], 'xxx')
112 os.mkdir(os.path.join(dist, 'sub'))
113 self.write_file([dist, 'sub', 'file3'], 'xxx')
114 os.mkdir(os.path.join(dist, 'sub2'))
127 make_tarball(base_name, 'dist')
137 tar_cmd = ['tar', '-cf', 'archive2.tar', 'dist']
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 108 dist = os.path.join(tmpdir, 'dist')
109 os.mkdir(dist)
110 self.write_file([dist, 'file1'], 'xxx')
111 self.write_file([dist, 'file2'], 'xxx')
112 os.mkdir(os.path.join(dist, 'sub'))
113 self.write_file([dist, 'sub', 'file3'], 'xxx')
114 os.mkdir(os.path.join(dist, 'sub2'))
127 make_tarball(base_name, 'dist')
137 tar_cmd = ['tar', '-cf', 'archive2.tar', 'dist']
    [all...]
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkRadialGradient.cpp 115 SkFixed dist = SkFloatToFixed(fdist); local
121 SkFixed dist = SkFixedSqrt(magnitudeSquared);
123 unsigned fi = mirror_tileproc(dist);
141 SkFixed dist = SkFixedSqrt(SkFixedSquare(fx) + SkFixedSquare(fy)); local
142 unsigned fi = repeat_tileproc(dist);
377 SkFixed dist = SkFloatToFixed(fdist); local
383 SkFixed dist = SkFixedSqrt(magnitudeSquared);
385 unsigned fi = mirror_tileproc(dist);
407 SkFixed dist = SkFixedSqrt(magnitudeSquared); local
408 unsigned fi = repeat_tileproc(dist);
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadIntersection.cpp 307 double dist[3][3];
310 dist[1][1] = t1[1].distanceSquared(t2[1]);
317 dist[i][j] = t1[i].distanceSquared(t2[j]);
318 if (dist[best_i][best_j] > dist[i][j]) {
495 double dist[4];
498 dist[index] = DBL_MAX;
507 if (dist[index] <= distance) {
514 if (dist[outer] < distance) {
519 dist[index] = distance
    [all...]
SkDCubicToQuads.cpp 71 double dist = sqrt(dx * dx + dy * dy); local
72 double tDiv3 = precision / (adjust * dist);
SkPathOpsLine.cpp 83 double dist = sqrt(distSq); // OPTIMIZATION: can we compare against distSq instead ? local
88 if (!AlmostEqualUlps(largest, largest + dist)) { // is the dist within ULPS tolerance?
  /external/libvpx/libvpx/build/make/
Makefile 36 dist:
72 DIST_DIR?=dist
97 .PHONY: dist
98 dist:
327 ifeq ($(MAKECMDGOALS),dist)
328 INSTALL-DOCS+=$(call cond_enabled,CONFIG_INSTALL_DOCS,DIST-DOCS)
341 ifeq ($(MAKECMDGOALS),dist)
342 INSTALL-BINS+=$(call cond_enabled,CONFIG_INSTALL_BINS,DIST-BINS)
358 ifeq ($(MAKECMDGOALS),dist)
359 INSTALL-LIBS+=$(call cond_enabled,CONFIG_INSTALL_LIBS,DIST-LIBS
    [all...]
  /external/skia/src/effects/gradients/
SkRadialGradient.cpp 115 SkFixed dist = SkFloatToFixed(fdist); local
121 SkFixed dist = SkFixedSqrt(magnitudeSquared);
123 unsigned fi = mirror_tileproc(dist);
141 SkFixed dist = SkFixedSqrt(SkFixedSquare(fx) + SkFixedSquare(fy)); local
142 unsigned fi = repeat_tileproc(dist);
377 SkFixed dist = SkFloatToFixed(fdist); local
383 SkFixed dist = SkFixedSqrt(magnitudeSquared);
385 unsigned fi = mirror_tileproc(dist);
407 SkFixed dist = SkFixedSqrt(magnitudeSquared); local
408 unsigned fi = repeat_tileproc(dist);
    [all...]
  /external/skia/src/pathops/
SkDQuadIntersection.cpp 307 double dist[3][3];
310 dist[1][1] = t1[1].distanceSquared(t2[1]);
317 dist[i][j] = t1[i].distanceSquared(t2[j]);
318 if (dist[best_i][best_j] > dist[i][j]) {
495 double dist[4];
498 dist[index] = DBL_MAX;
507 if (dist[index] <= distance) {
514 if (dist[outer] < distance) {
519 dist[index] = distance
    [all...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttpload.c 128 FT_Long dist = 0x7FFFFFFFL; local
137 if ( diff > 0 && diff < dist )
138 dist = diff;
144 dist = stream->size - pos;
147 if ( new_loca_len <= dist )
  /external/freetype/src/truetype/
ttpload.c 128 FT_Long dist = 0x7FFFFFFFL; local
137 if ( diff > 0 && diff < dist )
138 dist = diff;
144 dist = stream->size - pos;
147 if ( new_loca_len <= dist )
  /external/valgrind/main/VEX/useful/
smchash.c 270 Int dist, totDist = 0, nNoDist = 0; local
281 dist = nSetBits(hRunning ^ hInit);
282 totDist += dist;
283 if (dist == 0) nNoDist++;
291 byteIx, bitIx, hRunning ^ hInit, dist);
299 printf("%4d measurements, %5.2f avg dist, %2d zeroes\n",
302 printf("%4d measurements, %5.2f avg dist\n",
  /external/zlib/src/contrib/puff/
puff.c 415 * corresponding number of extra bits are below in the static arrays dist[]
442 unsigned dist; /* distance for copy */ local
483 dist = dists[symbol] + bits(s, dext[symbol]);
485 if (dist > s->outcnt)
496 dist > s->outcnt ?
499 s->out[s->outcnt - dist];
    [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/opencv/cv/src/
cvinpaint.cpp 239 float dist; local
255 dist = min4(FastMarching_solve(i-1,j,i,j-1,f,t),
259 CV_MAT_ELEM(*t,float,i,j) = dist;
261 Heap->Push(i,j,dist);
282 float dist; local
297 dist = min4(FastMarching_solve(i-1,j,i,j-1,f,t),
301 CV_MAT_ELEM(*t,float,i,j) = dist;
392 Heap->Push(i,j,dist);
410 dist = min4(FastMarching_solve(i-1,j,i,j-1,f,t),
414 CV_MAT_ELEM(*t,float,i,j) = dist;
516 float dist; local
    [all...]
  /external/clang/utils/
FindSpecRefs 624 dist = spec - target
625 if best is None or dist < best[0]:
626 best = (dist, (section, name, page))
640 dist = abs(line - target)
641 if best is None or dist < best[0]:
642 best = (dist,'l'+m.group(1))
    [all...]
  /build/core/tasks/
collect_gpl_sources.mk 27 # Dist the tgz only if we are doing a full build
29 $(call dist-for-goals, droidcore, $(gpl_source_tgz))
  /external/blktrace/
Makefile 64 dist: btrace.spec
72 rpm: dist
  /external/chromium_org/chrome/installer/util/
installer_state.cc 283 // For a single-install, the current browser dist is the operand.
357 // Returns the Chrome binaries directory for multi-install or |dist|'s directory
360 BrowserDistribution* dist) const {
361 DCHECK(dist);
365 return GetChromeInstallPath(system_install(), dist);
750 BrowserDistribution* dist = NULL; local
753 dist = multi_package_distribution_;
759 dist = product->distribution();
761 result = state_key.Create(root_key_, dist->GetStateKey().c_str(),
768 LOG(ERROR) << "Failed opening key " << dist->GetStateKey(
    [all...]

Completed in 2555 milliseconds

<<11121314151617181920>>