/external/python/setuptools/pkg_resources/tests/ |
test_find_distributions.py | 33 dists = pkg_resources.find_distributions(target_dir) 34 assert not list(dists) 47 dists = pkg_resources.find_distributions(target_dir) 48 assert [dist.project_name for dist in dists] == ['my-test-package'] 49 dists = pkg_resources.find_distributions(target_dir, only=True) 50 assert not list(dists) 63 dists = pkg_resources.find_distributions(target_dir) 64 assert [dist.project_name for dist in dists] == ['my-test-package'] 65 dists = pkg_resources.find_distributions(target_dir, only=True) 66 assert not list(dists) [all...] |
/external/python/setuptools/setuptools/tests/ |
test_dist_info.py | 55 dists = dict( 60 assert len(dists) == 2, dists 62 unversioned = dists['UnversionedDistribution'] 63 versioned = dists['VersionedDistribution']
|
test_packageindex.py | 221 dists = list(setuptools.package_index.distros_for_url( 223 assert dists[0].version == '' 224 assert dists[1].version == vc
|
/external/zopfli/src/zopfli/ |
lz77.h | 37 Parameter dists: Contains the distances. A value is 0 to indicate that there is 39 Parameter size: The size of both the litlens and dists arrays. 46 unsigned short* dists; /* If 0: indicates literal in corresponding litlens, member in struct:ZopfliLZ77Store 106 dists: ll77 distances 107 start: where to begin counting in litlens and dists 108 end: where to stop counting in litlens and dists (not inclusive) 114 const unsigned short* dists,
|
blocksplitter.c | 102 dists: ll77 distances 107 const unsigned short* dists, 109 return ZopfliCalculateBlockSize(litlens, dists, lstart, lend, 2); 114 const unsigned short* dists; member in struct:SplitCostContext 128 return EstimateCost(c->litlens, c->dists, c->start, i) + 129 EstimateCost(c->litlens, c->dists, i, c->end); 151 const unsigned short* dists, 162 size_t length = dists[i] == 0 ? 1 : litlens[i]; 220 const unsigned short* dists, 246 c.dists = dists [all...] |
deflate.h | 74 dists: ll77 distances 79 const unsigned short* dists,
|
blocksplitter.h | 40 dists: lz77 distances 41 llsize: size of litlens and dists 46 const unsigned short* dists,
|
squeeze.c | 34 /* The 32 unique dist symbols, not the 32768 possible dists. */ 35 size_t dists[32]; member in struct:SymbolStats 44 memset(stats->dists, 0, 32 * sizeof(stats->dists[0])); 52 memcpy(dest->dists, source->dists, 32 * sizeof(dest->dists[0])); 69 result->dists[i] = 70 (size_t) (stats1->dists[i] * w1 + stats2->dists[i] * w2) [all...] |
lz77.c | 30 store->dists = 0; 35 free(store->dists); 44 dest->dists = (unsigned short*)malloc(sizeof(*dest->dists) * source->size); 46 if (!dest->litlens || !dest->dists) exit(-1); /* Allocation failed. */ 51 dest->dists[i] = source->dists[i]; 63 ZOPFLI_APPEND_DATA(dist, &store->dists, &size2); 460 const unsigned short* dists, 473 if (dists[i] == 0) [all...] |
deflate.c | 298 const unsigned short* dists, 309 unsigned dist = dists[i]; 351 const unsigned short* dists, 356 if (dists[i] == 0) { 360 result += d_lengths[ZopfliGetDistSymbol(dists[i])]; 362 result += ZopfliGetDistExtraBits(dists[i]); 474 const unsigned short* dists, 480 ZopfliLZ77Counts(litlens, dists, lstart, lend, ll_counts, d_counts); 489 const unsigned short* dists, 501 GetDynamicLengths(litlens, dists, lstart, lend, ll_lengths, d_lengths) [all...] |
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/ |
Makefile | 37 dists="$(EXECS)"; \ 38 @set -e; for name in $$dists; do \
|
/cts/apps/CameraITS/tests/sensor_fusion/ |
test_sensor_fusion.py | 205 dists = [] 209 dists.append(scipy.spatial.distance.correlation(cam_rots, gyro_rots)) 210 best_corr_dist = min(dists) 211 best_shift = candidates[dists.index(best_corr_dist)] 221 i = dists.index(best_corr_dist) 223 dists = dists[i-20:i+21] 224 a, b, c = numpy.polyfit(candidates, dists, 2) 235 pylab.plot(candidates, dists, "r", label="data")
|
/external/python/setuptools/setuptools/ |
package_index.py | 329 dists = list(distros_for_url(url)) 330 if dists: 335 if dists or not retrieve or url in self.fetched_urls: 336 list(map(self.add, dists)) 382 dists = distros_for_filename(fn) 383 if dists: 385 list(map(self.add, dists)) 680 dists = match and [ 685 if len(dists) == 1: # unambiguous ``#egg`` fragment 701 dists[0].project_name, dists[0].version [all...] |
/external/zlib/src/contrib/puff/ |
puff.c | 449 static const short dists[30] = { /* Offset base for distance codes 0..29 */ local 483 dist = dists[symbol] + bits(s, dext[symbol]); [all...] |
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
libcpuset.c | 1442 distmap_entry_t *dists = NULL; local 1581 distmap_entry_t *dists = NULL; local [all...] |
/external/python/setuptools/pkg_resources/ |
__init__.py | 589 dists = ws.resolve(reqs, Environment()) 590 for dist in dists: [all...] |
/external/python/setuptools/setuptools/command/ |
easy_install.py | 185 self.install_platlib = None # non-pure (dists w/ extensions) 669 # .egg-info dists don't need installing, just process deps 699 dists = self.install_eggs(spec, download, tmpdir) 700 for dist in dists: 703 dists = [self.egg_distribution(download)] 704 self.process_distribution(spec, dists[0], deps, "Using") 707 for dist in dists: [all...] |
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
binner.cpp | 1455 float dists[8]; local [all...] |