Searched refs:dists (Results 1 - 9 of 9) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | aaccoder_twoloop.h | 81 float dists[128] = { 0 }, qenergies[128] = { 0 }, uplims[128], euplims[128], energies[128]; in search_for_quantizers_twoloop() local 409 dists[w*16+g] = dist - bits; in search_for_quantizers_twoloop() 490 dists[w*16+g] = dist - bits; in search_for_quantizers_twoloop() 508 if (!sce->zeroes[w*16+g] && sce->sf_idx[w*16+g] > SCALE_ONE_POS && dists[w*16+g] > uplims[w*16+g]*ovrfactor) { in search_for_quantizers_twoloop() 509 float ovrdist = dists[w*16+g] / FFMAX(uplims[w*16+g],euplims[w*16+g]); in search_for_quantizers_twoloop() 559 && (dists[w*16+g] > loopovrfactor*uplims[w*16+g] || !(mcb = find_min_book(maxvals[w*16+g], sce->sf_idx[w*16+g])) in search_for_quantizers_twoloop() 560 || (mcb <= 1 && dists[w*16+g] > FFMIN(uplims[w*16+g], euplims[w*16+g]))) ) { in search_for_quantizers_twoloop() 606 if ((!cmb || dists[w*16+g] > uplims[w*16+g]) && sce->sf_idx[w*16+g] > FFMAX(mindeltasf, minsf[w*16+g])) { in search_for_quantizers_twoloop() 622 } else if (i >= depth && dists[w*16+g] < euplims[w*16+g]) { in search_for_quantizers_twoloop() 629 if (!g && sce->ics.num_windows > 1 && dists[ in search_for_quantizers_twoloop() [all...] |
H A D | aaccoder.c | 401 float dists[128] = { 0 }, uplims[128] = { 0 }; in search_for_quantizers_fast() local 496 dists[w*16+g] = dist - bits; in search_for_quantizers_fast() 525 if (dists[w*16+g] > uplims[w*16+g] && sce->sf_idx[w*16+g] > 60) { in search_for_quantizers_fast()
|
/third_party/python/Lib/test/test_importlib/ |
H A D | test_zip.py | 46 dists = list(distributions(path=sys.path[:1])) 47 assert len(dists) == 1
|
H A D | test_main.py | 179 dists = list(distributions()) 180 assert all(isinstance(dist, Distribution) for dist in dists) 181 assert any(dist.metadata['Name'] == 'egginfo-pkg' for dist in dists) 182 assert any(dist.metadata['Name'] == 'distinfo-pkg' for dist in dists)
|
H A D | test_metadata_api.py | 320 dists = Distribution.discover(path=[str(self.site_dir)]) 321 assert any(dist.metadata['Name'] == 'distinfo-pkg' for dist in dists)
|
/third_party/ltp/testcases/kernel/fs/scsi/ltpscsi/ |
H A D | Makefile | 37 dists="$(EXECS)"; \ 38 @set -e; for name in $$dists; do \
|
/third_party/skia/third_party/externals/freetype/src/sdf/ |
H A D | ftsdf.c | 3209 SDF_Signed_Distance* dists = NULL; in sdf_generate_bounding_box() local 3233 if ( FT_ALLOC( dists, in sdf_generate_bounding_box() 3234 bitmap->width * bitmap->rows * sizeof ( *dists ) ) ) in sdf_generate_bounding_box() 3324 if ( dists[index].sign == 0 ) in sdf_generate_bounding_box() 3325 dists[index] = dist; in sdf_generate_bounding_box() 3326 else if ( dists[index].distance > dist.distance ) in sdf_generate_bounding_box() 3327 dists[index] = dist; in sdf_generate_bounding_box() 3328 else if ( FT_ABS( dists[index].distance - dist.distance ) in sdf_generate_bounding_box() 3330 dists[index] = resolve_corner( dists[inde in sdf_generate_bounding_box() [all...] |
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
H A D | libcpuset.c | 1427 * into array dists[] of each nodes distance from the specified node. 1433 * distmap[c][n] = dists[n] 1442 distmap_entry_t *dists = NULL; in parse_distmap_line() local 1447 if ((dists = calloc(nmems, sizeof(*dists))) == NULL) in parse_distmap_line() 1450 dists[n] = DISTMAP_MAX; in parse_distmap_line() 1461 dists[n] = (distmap_entry_t) d; in parse_distmap_line() 1475 distmap[I(c, n)] = dists[n]; in parse_distmap_line() 1481 free(dists); in parse_distmap_line() 1565 * of distances, which is parsed into array dists[] o 1581 distmap_entry_t *dists = NULL; parse_distmap_line_sn() local [all...] |
/third_party/zlib/contrib/puff/ |
H A D | puff.c | 449 static const short dists[30] = { /* Offset base for distance codes 0..29 */ in codes() local 483 dist = dists[symbol] + bits(s, dext[symbol]); in codes()
|
Completed in 13 milliseconds