Searched defs:dist (Results 1 - 25 of 252) sorted by relevance

1234567891011

/external/zopfli/src/zopfli/
H A Dcache.h32 Cache used by ZopfliFindLongestMatch to remember previously found length/dist
41 unsigned short* dist; member in struct:ZopfliLongestMatchCache
H A Dutil.c28 int ZopfliGetDistExtraBits(int dist) { argument
30 if (dist < 5) return 0;
31 return (31 ^ __builtin_clz(dist - 1)) - 1; /* log2(dist - 1) - 1 */
33 if (dist < 5) return 0;
34 else if (dist < 9) return 1;
35 else if (dist < 17) return 2;
36 else if (dist < 33) return 3;
37 else if (dist < 65) return 4;
38 else if (dist < 12
50 ZopfliGetDistExtraBitsValue(int dist) argument
76 ZopfliGetDistSymbol(int dist) argument
[all...]
H A Dcache.c31 lmc->dist = (unsigned short*)malloc(sizeof(unsigned short) * blocksize);
35 /* length > 0 and dist 0 is invalid combination, which indicates on purpose
38 for (i = 0; i < blocksize; i++) lmc->dist[i] = 0;
44 free(lmc->dist);
95 unsigned dist = cache[j * 3 + 1] + 256 * cache[j * 3 + 2]; local
97 sublen[i] = dist;
/external/chromium_org/chrome/installer/util/
H A Dhelper.cc18 BrowserDistribution* dist) {
29 install_path = install_path.Append(dist->GetInstallSubDir());
36 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); local
43 if (state.Initialize(system_install, dist) && state.is_multi_install()) {
47 return dist;
17 GetChromeInstallPath(bool system_install, BrowserDistribution* dist) argument
H A Deula_util.cc19 bool IsEULAAcceptanceFlagged(BrowserDistribution* dist) { argument
70 BrowserDistribution* dist = BrowserDistribution::GetSpecificDistribution( local
78 if (InstallUtil::IsFirstRunSentinelPresent() || IsEULAAcceptanceFlagged(dist))
H A Dchrome_binaries_operations.cc81 BrowserDistribution* dist,
80 AddDefaultShortcutProperties( BrowserDistribution* dist, const base::FilePath& target_exe, ShellUtil::ShortcutProperties* properties) const argument
H A Dfirewall_manager_win.cc103 BrowserDistribution* dist,
108 if (manager->Init(dist->GetDisplayName(), chrome_path))
114 if (legacy_manager->Init(dist->GetDisplayName(), chrome_path))
102 Create( BrowserDistribution* dist, const base::FilePath& chrome_path) argument
H A Dchrome_app_host_operations.cc101 BrowserDistribution* dist,
115 dist->GetIconIndex(BrowserDistribution::SHORTCUT_APP_LAUNCHER));
119 components.push_back(dist->GetBaseAppId());
100 AddDefaultShortcutProperties( BrowserDistribution* dist, const base::FilePath& target_exe, ShellUtil::ShortcutProperties* properties) const argument
H A Dchrome_browser_operations.cc106 // - icon_index: |dist|'s icon index (possibly overridden by
109 // - description: |dist|'s description.
111 BrowserDistribution* dist,
119 dist->GetIconIndex(BrowserDistribution::SHORTCUT_CHROME);
134 ShellUtil::GetBrowserModelId(dist, is_per_user_install));
138 properties->set_description(dist->GetAppDescription());
110 AddDefaultShortcutProperties( BrowserDistribution* dist, const base::FilePath& target_exe, ShellUtil::ShortcutProperties* properties) const argument
H A Dchrome_frame_operations.cc125 BrowserDistribution* dist,
124 AddDefaultShortcutProperties( BrowserDistribution* dist, const base::FilePath& target_exe, ShellUtil::ShortcutProperties* properties) const argument
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicLineSegments.cpp35 double dist = sqrt(maxX * maxX + maxY * maxY); local
36 double segments = sqrt(dist / (8 * FLT_EPSILON));
H A DQuadraticLineSegments.cpp31 double dist = sqrt(hodo2.x * hodo2.x + hodo2.y * hodo2.y); local
32 double segments = sqrt(dist / (8 * FLT_EPSILON));
/external/skia/experimental/Intersection/
H A DCubicLineSegments.cpp35 double dist = sqrt(maxX * maxX + maxY * maxY); local
36 double segments = sqrt(dist / (8 * FLT_EPSILON));
H A DQuadraticLineSegments.cpp31 double dist = sqrt(hodo2.x * hodo2.x + hodo2.y * hodo2.y); local
32 double segments = sqrt(dist / (8 * FLT_EPSILON));
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dstatic_dict.h29 void Insert(const std::string &str, int len, int dist) { argument
30 int ix = (dist << 6) + len;
51 bool Get(const std::string &str, int *len, int *dist) const {
58 *dist = v >> 6;
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dvq3.c36 int32_t dist, mindist; local
44 dist = WEBRTC_SPL_MUL_16_16(tmp, tmp);
47 dist += WEBRTC_SPL_MUL_16_16(tmp, tmp);
50 if (dist < mindist) {
51 mindist = dist;
H A Dvq4.c36 int32_t dist, mindist; local
44 dist = WEBRTC_SPL_MUL_16_16(tmp, tmp);
47 dist += WEBRTC_SPL_MUL_16_16(tmp, tmp);
50 if (dist < mindist) {
51 mindist = dist;
/external/clang/utils/
H A DCmpDriver31 def insertMinimumPadding(a, b, dist):
35 been inserted into the shorter list such that sum(map(dist, a',
38 Assumes dist(X, Y) -> int and non-negative.
42 return sum(map(dist, a + [None] * (len(b) - len(a)), b))
46 b, a = insertMinimumPadding(b, a, dist)
69 def dist(self, a, b): member in class:ZipperDiff
73 a,b = insertMinimumPadding(self.a, self.b, self.dist)
75 if self.dist(aElt, bElt):
85 def dist(self, a, b): member in class:DriverZipperDiff
88 return super(DriverZipperDiff, self).dist(
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_tapify.py13 def dist(p1,p2): function
26 return int((scale*dist(b,p)+s/2)/s)
32 sum = dist(ul,p)+dist(ur,p)+dist(ll,p)+dist(lr,p)
/external/speex/libspeex/
H A Dvq_bfin.h43 spx_word32_t dist; local
67 : "=&D" (dist), "=&a" (codebook), "=&d" (best_dist[0]), "=&d" (nbest[0]), "=&a" (E)
77 spx_word32_t dist; local
90 : "=D" (dist), "=a" (codebook)
94 if (i<N || dist<best_dist[N-1])
96 for (k=N-1; (k >= 1) && (k > used || dist < best_dist[k-1]); k--)
101 best_dist[k]=dist;
H A Dvq.c82 spx_word32_t dist=0; local
84 dist = MAC16_16(dist,in[j],*codebook++);
86 dist=SUB32(SHR32(E[i],1),dist);
88 dist=.5f*E[i]-dist;
90 if (i<N || dist<best_dist[N-1])
92 for (k=N-1; (k >= 1) && (k > used || dist < best_dist[k-1]); k--)
97 best_dist[k]=dist;
116 spx_word32_t dist=0; local
[all...]
/external/bison/
H A Dcfg.mk31 # override the _is-dist-target from GNUmakefile so that maintainer-*check*
33 _is-dist-target = $(filter-out %clean maintainer-check% maintainer-%-check, \
34 $(filter maintainer-% dist% alpha beta major,$(MAKECMDGOALS)))
H A DGNUmakefile45 # Ensure that $(VERSION) is up to date for dist-related targets, but not
50 _is-dist-target ?= $(filter-out %clean, \
51 $(filter maintainer-% dist% alpha beta stable,$(MAKECMDGOALS)))
53 ifneq (,$(_is-dist-target)$(_is-install-target))
119 dist distcheck tags ctags
/external/chromium_org/third_party/speex/libspeex/
H A Dvq.c82 spx_word32_t dist=0; local
84 dist = MAC16_16(dist,in[j],*codebook++);
86 dist=SUB32(SHR32(E[i],1),dist);
88 dist=.5f*E[i]-dist;
90 if (i<N || dist<best_dist[N-1])
92 for (k=N-1; (k >= 1) && (k > used || dist < best_dist[k-1]); k--)
97 best_dist[k]=dist;
116 spx_word32_t dist=0; local
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Duninstall_view.cc79 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); local
80 if (dist->GetDefaultBrowserControlPolicy() !=
86 ShellUtil::GetRegisteredBrowsers(dist, browsers_.get());

Completed in 4622 milliseconds

1234567891011