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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_points.c 65 const GLfloat dist = FABSF(*eyeCoord); local
66 const GLfloat q = p0 + dist * (p1 + dist * p2);
  /external/chromium_org/third_party/skia/src/gpu/
FlingState.cpp 76 float dist = (fSpeed0 - speed) / K0; local
78 // printf("---- time %g speed %g dist %g\n", t, speed, dist);
79 float tx = fDirection.fX * dist;
80 float ty = fDirection.fY * dist;
  /external/mesa3d/src/mesa/tnl/
t_vb_points.c 65 const GLfloat dist = FABSF(*eyeCoord); local
66 const GLfloat q = p0 + dist * (p1 + dist * p2);
  /external/skia/src/gpu/
FlingState.cpp 76 float dist = (fSpeed0 - speed) / K0; local
78 // printf("---- time %g speed %g dist %g\n", t, speed, dist);
79 float tx = fDirection.fX * dist;
80 float ty = fDirection.fY * dist;
  /external/aac/libAACenc/src/
quantize.h 117 FIXP_DBL *dist);
  /external/chromium_org/chrome/common/
chrome_paths_win.cc 48 BrowserDistribution* dist = BrowserDistribution::GetDistribution();
49 *result = result->Append(dist->GetInstallSubDir());
57 BrowserDistribution* dist = BrowserDistribution::GetSpecificDistribution(
59 *result = result->Append(dist->GetInstallSubDir());
  /external/chromium_org/chrome/installer/util/
chrome_browser_operations.cc 103 // - icon_index: |dist|'s icon index (possibly overridden by
106 // - description: |dist|'s description.
108 BrowserDistribution* dist,
115 int icon_index = dist->GetIconIndex();
130 ShellUtil::GetBrowserModelId(dist, is_per_user_install));
134 properties->set_description(dist->GetAppDescription());
  /external/chromium_org/third_party/zlib/
deflate.h 299 int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
306 #define d_code(dist) \
307 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
308 /* Mapping from a distance to a distance code. dist is the distance - 1 and
333 ush dist = (distance); \
334 s->d_buf[s->last_lit] = dist; \
336 dist--; \
338 s->dyn_dtree[d_code(dist)].Freq++;
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
deflate.h 283 int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
290 #define d_code(dist) \
291 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
292 /* Mapping from a distance to a distance code. dist is the distance - 1 and
317 ush dist = (distance); \
318 s->d_buf[s->last_lit] = dist; \
320 dist--; \
322 s->dyn_dtree[d_code(dist)].Freq++;
    [all...]
  /external/zlib/src/
deflate.h 297 int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
305 #define d_code(dist) \
306 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
307 /* Mapping from a distance to a distance code. dist is the distance - 1 and
332 ush dist = (distance); \
333 s->d_buf[s->last_lit] = dist; \
335 dist--; \
337 s->dyn_dtree[d_code(dist)].Freq++;
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/
Makefile.am 4 AUTOMAKE_OPTIONS = gnits 1.10 dist-bzip2
23 dist-hook:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_scripts.py 45 dist = Distribution()
46 dist.scripts = scripts
47 dist.command_obj["build"] = support.DummyCommand(
52 return build_scripts(dist)
test_clean.py 16 pkg_dir, dist = self.create_dist()
17 cmd = clean(dist)
test_install_headers.py 25 pkg_dir, dist = self.create_dist(headers=headers)
26 cmd = install_headers(dist)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_scripts.py 45 dist = Distribution()
46 dist.scripts = scripts
47 dist.command_obj["build"] = support.DummyCommand(
52 return build_scripts(dist)
test_clean.py 16 pkg_dir, dist = self.create_dist()
17 cmd = clean(dist)
test_install_headers.py 25 pkg_dir, dist = self.create_dist(headers=headers)
26 cmd = install_headers(dist)
  /external/chromium_org/chrome/installer/setup/
install.cc 54 BrowserDistribution* dist,
90 message.append(UTF16ToUTF8(dist->GetAppShortCutName()));
113 BrowserDistribution* dist,
116 LogShortcutOperation(location, dist, properties, operation, false);
117 if (!ShellUtil::CreateOrUpdateShortcut(location, dist, properties,
119 LogShortcutOperation(location, dist, properties, operation, true);
251 BrowserDistribution* dist,
256 ShellUtil::GetShortcutPath(ShellUtil::SHORTCUT_LOCATION_START_MENU, dist,
259 dist->GetUninstallLinkName() + installer::kLnkExt);
264 ShellUtil::SHORTCUT_LOCATION_QUICK_LAUNCH, dist,
329 BrowserDistribution* dist = BrowserDistribution::GetSpecificDistribution( local
383 BrowserDistribution* dist = product.distribution(); local
470 BrowserDistribution* dist = product.distribution(); local
    [all...]
  /external/clang/utils/
CmpDriver 26 def insertMinimumPadding(a, b, dist):
30 been inserted into the shorter list such that sum(map(dist, a',
33 Assumes dist(X, Y) -> int and non-negative.
37 return sum(map(dist, a + [None] * (len(b) - len(a)), b))
41 b, a = insertMinimumPadding(b, a, dist)
64 def dist(self, a, b): member in class:ZipperDiff
68 a,b = insertMinimumPadding(self.a, self.b, self.dist)
70 if self.dist(aElt, bElt):
80 def dist(self, a, b): member in class:DriverZipperDiff
83 return super(DriverZipperDiff, self).dist(a,b)
    [all...]
  /external/elfutils/
Makefile.am 48 rpm: dist
  /external/qemu-pc-bios/
Makefile 43 $(MAKE) -C bochs/bios dist-clean
45 $(MAKE) -C vgabios dist-clean
  /external/yaffs2/
Android.mk 24 $(call dist-for-goals, dist_files, $(LOCAL_BUILT_MODULE))
  /external/zlib/src/contrib/blast/
blast.c 284 unsigned dist; /* distance for copy */ local
335 dist = decode(s, &distcode) << symbol;
336 dist += bits(s, symbol);
337 dist++;
338 if (s->first && dist > s->next)
344 from = to - dist;
346 if (s->next < dist) {
348 copy = dist;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
vignette.rs 71 float dist = strength * (sqrt(radx * radx + rady * rady) - 1.f);
72 float t = (1.f + dist / sqrt(1.f + dist* dist)) * .5f;
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
q_plsf_5.cpp 220 Word32 dist; local
248 dist = ((Word32)temp * temp);
250 if (dist >= dist_min)
257 dist += ((Word32)temp * temp);
259 if (dist >= dist_min)
266 dist += ((Word32)temp * temp);
268 if (dist >= dist_min)
275 dist += ((Word32)temp * temp);
278 if (dist < dist_min)
280 dist_min = dist;
    [all...]

Completed in 982 milliseconds

1 2 3 4 5 6 78 91011>>