HomeSort by relevance Sort by last modified time
    Searched refs:dists (Results 1 - 15 of 15) sorted by null

  /frameworks/data-binding/integration-tests/App With Spaces/gradle/wrapper/
gradle-wrapper.properties 19 distributionPath=wrapper/dists
21 zipStorePath=wrapper/dists
  /frameworks/data-binding/integration-tests/IndependentLibrary/gradle/wrapper/
gradle-wrapper.properties 18 distributionPath=wrapper/dists
20 zipStorePath=wrapper/dists
  /frameworks/data-binding/integration-tests/MultiModuleTestApp/gradle/wrapper/
gradle-wrapper.properties 19 distributionPath=wrapper/dists
21 zipStorePath=wrapper/dists
  /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...]
  /cts/apps/CameraITS/tests/sensor_fusion/
test_sensor_fusion.py 140 dists = []
144 dists.append(scipy.spatial.distance.correlation(cam_rots,gyro_rots))
145 best_corr_dist = min(dists)
146 best_shift = candidates[dists.index(best_corr_dist)]
154 i = len(dists)/2 + best_shift
156 dists = dists[i-20:i+21]
157 a,b,c = numpy.polyfit(candidates, dists, 2)
166 pylab.plot(candidates, dists, 'r', label="data")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/shortest_paths/
weighted.py 699 dists = [{}, {}]# dictionary of final distances
721 if v in dists[dir]:
725 dists[dir][v] = dist #equal to seen[dir][v]
726 if v in dists[1-dir]:
738 vwLength = dists[dir][v] + minweight #G[v][w].get(weight,1)
745 vwLength = dists[dir][v] + minweight #G[w][v].get(weight,1)
747 if w in dists[dir]:
748 if vwLength < dists[dir][w]:
  /external/elfutils/src/po/
Makefile 447 dists="$(DISTFILES)"; \
449 dists="$$dists Makevars.template"; \
452 dists="$$dists $(DOMAIN).pot stamp-po"; \
455 dists="$$dists ChangeLog"; \
459 dists="$$dists ChangeLog.$$i"; \
462 if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi;
    [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...]
  /cts/apps/CtsVerifier/libs/
opencv-android.jar 

Completed in 633 milliseconds