Home
last modified time | relevance | path

Searched refs:population (Results 1 – 25 of 92) sorted by relevance

1234

/external/cldr/tools/java/org/unicode/cldr/util/data/external/
Dother_country_data.txt4 # the population MUST be set before gdp occurs!
12 AX;Aland Islands;population;26,200;www.aland.ax
13 GF;French Guiana;population;199,509;www.countryreports.org
14 GP;Guadeloupe;population;452,776;www.countryreports.org
15 MQ;Martinique;population;436,131;www.countryreports.org
16 RE;Reunion;population;787,584;www.countryreports.org
71 AQ;Antarctica;population;300;uninhabited
72 BV;Bouvet Island;population;1;uninhabited
73 GS;South Georgia and the South Sandwich Islands;population;20;uninhabited
74 HM;Heard Island and McDonald Islands;population;1;uninhabited
[all …]
/external/icu/icu4j/samples/src/com/ibm/icu/samples/iuc/
DPopulationData.java30 private double population; field in PopulationData.TerritoryEntry
31 public TerritoryEntry(String displayCountry, double population) { in TerritoryEntry() argument
33 this.population = population; in TerritoryEntry()
38 public double population() { in population() method in PopulationData.TerritoryEntry
39 return population; in population()
47 if (rc==0) rc = ((Double)population).compareTo(o.population()); in compareTo()
76 System.out.println(" "+ te.territoryName() + " = " + nf.format(te.population())); in main()
/external/brotli/c/enc/
Dbit_cost.h22 const uint32_t* population, size_t size, size_t* total) { in ShannonEntropy() argument
25 const uint32_t* population_end = population + size; in ShannonEntropy()
30 while (population < population_end) { in ShannonEntropy()
31 p = *population++; in ShannonEntropy()
35 p = *population++; in ShannonEntropy()
45 const uint32_t* population, size_t size) { in BitsEntropy() argument
47 double retval = ShannonEntropy(population, size, &sum); in BitsEntropy()
/external/harfbuzz_ng/src/
Dhb-map.hh62 unsigned int population; /* Not including tombstones. */ member
71 population = occupancy = 0; in init_shallow()
88 population = occupancy = 0; in fini()
99 unsigned int power = hb_bit_storage (population * 2 + 8); in resize()
113 population = occupancy = 0; in resize()
143 population--; in set()
151 population++; in set()
174 population = occupancy = 0; in clear()
177 bool is_empty () const { return population == 0; } in is_empty()
179 unsigned int get_population () const { return population; } in get_population()
Dhb-set.hh188 mutable unsigned int population; member
195 population = 0; in init_shallow()
206 population = 0; in fini_shallow()
235 population = 0; in clear()
248 void dirty () { population = (unsigned int) -1; } in dirty()
379 population = other->population; in set()
641 if (population != (unsigned int) -1) in get_population()
642 return population; in get_population()
649 population = pop; in get_population()
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
DTournamentSelection.java56 public ChromosomePair select(Population population) { in select() argument
58 tournament((ListPopulation) population), in select()
59 tournament((ListPopulation)population) in select()
72 private Chromosome tournament(ListPopulation population) { in tournament() argument
73 if (population.getPopulationSize() < this.arity) in tournament()
84 List<Chromosome> chromosomes = new ArrayList<Chromosome> (population.getChromosomes()); in tournament()
DChromosome.java89 protected Chromosome findSameChromosome(Population population) { in findSameChromosome() argument
90 for (Chromosome anotherChr : population) { in findSameChromosome()
104 public void searchForFitnessUpdate(Population population) { in searchForFitnessUpdate() argument
105 Chromosome sameChromosome = findSameChromosome(population); in searchForFitnessUpdate()
DStoppingCondition.java34 boolean isSatisfied(Population population); in isSatisfied() argument
DSelectionPolicy.java31 ChromosomePair select(Population population); in select() argument
DFixedGenerationCount.java55 public boolean isSatisfied(Population population) { in isSatisfied() argument
/external/python/cpython3/Lib/
Drandom.py286 def sample(self, population, k): argument
314 if isinstance(population, _Set):
315 population = tuple(population)
316 if not isinstance(population, _Sequence):
319 n = len(population)
328 pool = list(population)
341 result[i] = population[j]
344 def choices(self, population, weights=None, *, cum_weights=None, k=1): argument
355 total = len(population)
356 return [population[_int(random() * total)] for i in range(k)]
[all …]
/external/python/cpython3/Doc/library/
Dstatistics.rst37 These functions calculate an average or typical value from a population
53 These functions calculate a measure of how much the population or sample
107 The sample mean gives an unbiased estimate of the true population mean,
109 ``mean(sample)`` converges on the true mean of the entire population. If
110 *data* represents the entire population rather than a sample, then
111 ``mean(data)`` is equivalent to calculating the true population mean μ.
298 Return the population standard deviation (the square root of the population
309 Return the population variance of *data*, a non-empty iterable of real-valued
319 Use this function to calculate the variance from the entire population. To
360 When called with the entire population, this gives the population variance
[all …]
Drandom.rst142 .. function:: choices(population, weights=None, *, cum_weights=None, k=1)
144 Return a *k* sized list of elements chosen from the *population* with replacement.
145 If the *population* is empty, raises :exc:`IndexError`.
158 the same length as the *population* sequence. It is a :exc:`TypeError`
192 .. function:: sample(population, k)
194 Return a *k* length list of unique elements chosen from the population sequence
197 Returns a new list containing elements from the population while leaving the
198 original population unchanged. The resulting list is in selection order so that
203 Members of the population need not be :term:`hashable` or unique. If the population
208 population: ``sample(range(10000000), k=60)``.
[all …]
/external/cldr/tools/java/org/unicode/cldr/tool/
DScriptPopulations.java45 long population = (long) languageInfo.getLiteratePopulation(); in main() local
46 langScriptLitPop.add(lang, population); in main()
47 scriptLitPop.add(script, population); in main()
DAddPopulationData.java62 private static Counter2<String> population = new Counter2<String>(); field in AddPopulationData.CountryData
147 CountryData.population.getCount(country)); in getPopulation()
274 CountryData.population.add(code, number.parse(data).doubleValue()); in handle()
425 double population = getPopulation(territory);
433 if (population == 0) {
/external/python/cpython2/Lib/
Drandom.py295 def sample(self, population, k): argument
323 n = len(population)
332 if n <= setsize or hasattr(population, "keys"):
335 pool = list(population)
349 result[i] = population[j]
351 if isinstance(population, list):
353 return self.sample(tuple(population), k)
/external/cldr/tools/java/org/unicode/cldr/util/data/
Dcountry_language_population_raw.txt6 …,000,000" official Pashto ps 43% http://en.wikipedia.org/wiki/Pashto_language 42.6% of population
31 …ara/vtour/mcmurdo/ http://www.usap.gov/videoclipsandmaps/mcmwebcam.cfm Winter population is listed.
39 …z 1 http://en.wikipedia.org/wiki/Census_in_Armenia - near-zero Azeri population in last census h…
78 …www.ethnologue.com/show_country.asp?name=NL The figure includes 'Vlaams' population from Ethnologue
82 …% of the total population of Wallonia or between 300,000 and 600,000 people. For languages not cus…
98 …livia1.html Spanish is the official language, only about 60-70% of the population speaks it at all…
99 …livia1.html Spanish is the official language, only about 60-70% of the population speaks it at all…
105 …sr_Latn 10% 5% "While Cyrillic is customary, the vast majority of the population can read both.Fo…
171 …recognized Atikamekw atj "5,650" "Canadian census shows 97,230 total population for all Cree lan…
172 …00" recognized Chipewyan chp 770 "Canadian census shows 97,230 total population for all Cree lan…
[all …]
/external/python/cpython3/Lib/test/
Dtest_random.py114 population = range(N)
116 s = self.gen.sample(population, k)
120 self.assertTrue(uniq <= set(population))
123 self.assertRaises(ValueError, self.gen.sample, population, N+1)
164 choices(k=5, population=data, weights=range(4)),
165 choices(k=5, population=data, cum_weights=range(4)),
236 choices(population=[1, 2], weights=[1e-323, 1e-323], k=5000)
711 population = ['Red', 'Black', 'Green']
720 b = self.gen.choices(population, weights, k=10000)
724 c = self.gen.choices(population, cum_weights=cum_weights, k=10000)
/external/cldr/tools/java/org/unicode/cldr/icu/
Dldml2icu_supplemental.txt106 …oryInfo/territory[@type="(%W)"][@gdp="(%N)"][@literacyPercent="(%N)"][@population="(%N)"]/language…
112 …oryInfo/territory[@type="(%W)"][@gdp="(%N)"][@literacyPercent="(%N)"][@population="(%N)"]/language…
117 …oryInfo/territory[@type="(%W)"][@gdp="(%N)"][@literacyPercent="(%N)"][@population="(%N)"]/language…
123 …oryInfo/territory[@type="(%W)"][@gdp="(%N)"][@literacyPercent="(%N)"][@population="(%N)"]/language…
128 …oryInfo/territory[@type="(%W)"][@gdp="(%N)"][@literacyPercent="(%N)"][@population="(%N)"]/language…
133 …oryInfo/territory[@type="(%W)"][@gdp="(%N)"][@literacyPercent="(%N)"][@population="(%N)"]/language…
137 …ata/territoryInfo/territory[@type="(%W)"][@gdp="(%N)"][@literacyPercent="(%N)"][@population="(%N)"]
/external/webp/src/dsp/
Dlossless_enc_mips32.c107 static double ExtraCost_MIPS32(const uint32_t* const population, int length) { in ExtraCost_MIPS32() argument
109 const uint32_t* pop = &population[4]; in ExtraCost_MIPS32()
110 const uint32_t* const LoopEnd = &population[length]; in ExtraCost_MIPS32()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_FusedBatchNorm.pbtxt24 A 1D Tensor for population mean. Used for inference only;
31 A 1D Tensor for population variance. Used for inference only;
Dapi_def_FusedBatchNormV2.pbtxt24 A 1D Tensor for population mean. Used for inference only;
31 A 1D Tensor for population variance. Used for inference only;
Dapi_def_FusedBatchNormGrad.pbtxt26 False, a 1D Tensor for the population mean to be reused in both
36 for the population variance to be reused in both 1st and 2nd
/external/llvm/lib/Target/SystemZ/
DSystemZProcessors.td48 "population-count", "PopulationCount",
49 "Assume that the population-count facility is installed"
/external/python/cpython2/Doc/library/
Drandom.rst172 .. function:: sample(population, k)
174 Return a *k* length list of unique elements chosen from the population sequence.
179 Returns a new list containing elements from the population while leaving the
180 original population unchanged. The resulting list is in selection order so that
185 Members of the population need not be :term:`hashable` or unique. If the population
190 population: ``sample(xrange(10000000), 60)``.

1234