HomeSort by relevance Sort by last modified time
    Searched defs:concentration (Results 1 - 4 of 4) sorted by null

  /hardware/bsp/intel/peripheral/libupm/src/ppd42ns/
ppd42ns.h 36 double concentration; member in struct:upm::__anon30026
75 * Prints dust concentration
ppd42ns.cxx 76 double concentration = (1.1 * pow(ratio,3)) - (3.8 * pow(ratio, 2)) + (520 * ratio) + 0.62; // using spec sheet curve local
79 data.concentration = concentration;
  /external/guava/guava-tests/benchmark/com/google/common/cache/
LoadingCacheSingleThreadBenchmark.java 40 @Param("2.5") double concentration; field in class:LoadingCacheSingleThreadBenchmark
53 // power of (1/concentration) and floor()ed
54 max = Ints.checkedCast((long) Math.pow(distinctKeys, concentration));
89 * For example, if concentration=2.0, the following takes the square root of
94 return (int) Math.pow(a, 1.0 / concentration);
  /external/guava/guava-tests/benchmark/com/google/common/collect/
MapMakerSingleThreadBenchmark.java 43 @Param("2.5") double concentration; field in class:MapMakerSingleThreadBenchmark
56 // power of (1/concentration) and floor()ed
57 max = Ints.checkedCast((long) Math.pow(distinctKeys, concentration));
92 * For example, if concentration=2.0, the following takes the square root of
97 return (int) Math.pow(a, 1.0 / concentration);

Completed in 156 milliseconds