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

  /frameworks/base/tests/JankBench/scripts/external/
statistics.py 71 stdev Sample standard deviation of data.
76 >>> stdev([2.5, 3.25, 5.5, 11.25, 11.75]) #doctest: +ELLIPSIS
96 'pstdev', 'pvariance', 'stdev', 'variance',
609 def stdev(data, xbar=None): function
614 >>> stdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])
  /external/libxcam/modules/ocl/
cl_video_stabilizer.h 86 XCamReturn set_motion_filter (uint32_t radius, float stdev);
129 MotionFilter (uint32_t radius = 15, float stdev = 10);
132 void set_filters (uint32_t radius, float stdev);
137 float stdev () const { function in class:XCam::MotionFilter
  /external/libxcam/plugins/smart/dvs/libdvs/
libdvs.h 57 float stdev; member in struct:DvsConfig
67 stdev = 10.0f;
  /external/python/cpython3/Lib/
statistics.py 55 stdev Sample standard deviation of data.
60 >>> stdev([2.5, 3.25, 5.5, 11.25, 11.75]) #doctest: +ELLIPSIS
80 'pstdev', 'pvariance', 'stdev', 'variance',
641 def stdev(data, xbar=None): function
646 >>> stdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])
  /tools/tradefederation/core/src/com/android/tradefed/util/
SimpleStats.java 139 public Double stdev() { method in class:SimpleStats
155 * return the average value of the samples that are within one stdev
158 * average: 40.45, stdev: 15.54
159 * average of the values within one stdev is: 44.67
167 Double std = stdev();
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
SimpleStatsTest.java 44 assertNull(mStats.stdev());
64 assertEquals(2.872281, mStats.stdev(), 0.000001);
84 assertEquals(3.162278, mStats.stdev(), 0.000001);
104 assertEquals(1.247219, mStats.stdev(), 0.000001);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
MediaPerfUtils.java 128 long stdev = Math.round(statsUs.getStdev()); local
131 log.addValue(prefix + "_stdev", stdev / 1000., ResultType.LOWER_BETTER, ResultUnit.MS);
132 message += " num=" + num + " avg=" + avg + " stdev=" + stdev;
  /external/lisa/libs/utils/
results.py 194 std = Stats.stdev(data)
203 def stdev(values): member in class:Stats
  /external/toybox/toys/lsb/
mount.c 162 struct stat stdev, stdir; local
165 if (!stat(dev, &stdev) && !stat(dir, &stdir)
166 && ((S_ISREG(stdev.st_mode) && S_ISREG(stdir.st_mode))
167 || (S_ISDIR(stdev.st_mode) && S_ISDIR(stdir.st_mode))))
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
LocationVerifier.java 119 double stdev = computeStdev(mean, deltas); local
129 if (stdev > maxStdev) {
130 fail (provider + " provider stdev too big: "
131 + stdev + " (max: " + maxStdev + ")");
136 mCb.log(provider + " provider stdev: " + stdev);
  /external/libxcam/tests/
test-video-stabilization.cpp 199 float stdev = 10; local
200 video_stab->set_motion_filter (radius, stdev);
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
Utils.java 83 public static double stdev(double[] a) { method in class:Utils
137 return Utils.stdev(laserY);
  /external/walt/android/WALT/app/src/test/java/org/chromium/latency/walt/
UtilsTest.java 98 assertThat(Utils.stdev(new double[]{10,12,14,18}), is(Math.sqrt(8.75)));
103 assertThat(Utils.stdev(new double[]{}), is(NaN));
108 assertThat(Utils.stdev(new double[]{42}), is(0d));
113 assertThat(Utils.stdev(new double[]{-1,0,1}), is(Math.sqrt(2d/3d)));
  /external/ltp/testcases/misc/math/fptests/
fptest01.c 338 static double stdev; variable
345 stdev = s;
367 return (mean + stdev * x1);
371 return (mean + stdev * x2);
fptest02.c 319 static double stdev; variable
328 stdev = s;
342 return (mean + stdev * x1);
346 return (mean + stdev * x2);
  /hardware/libhardware/modules/soundtrigger/
sound_trigger_hw.c 203 struct stub_sound_trigger_device* stdev, sound_model_handle_t* model_handle) {
206 struct recognition_context *last_model_context = stdev->root_model_context;
218 static sound_model_handle_t* get_model_handle_with_uuid(struct stub_sound_trigger_device* stdev,
221 struct recognition_context *last_model_context = stdev->root_model_context;
234 struct stub_sound_trigger_device *stdev = (struct stub_sound_trigger_device *)dev; local
235 int new_id = stdev->next_sound_model_id;
236 ++stdev->next_sound_model_id;
237 if (stdev->next_sound_model_id == 0) {
238 stdev->next_sound_model_id = 1;
243 bool parse_socket_data(int conn_socket, struct stub_sound_trigger_device* stdev);
412 struct stub_sound_trigger_device *stdev = (struct stub_sound_trigger_device *)context; local
598 struct stub_sound_trigger_device *stdev = (struct stub_sound_trigger_device *)dev; local
612 struct stub_sound_trigger_device *stdev = (struct stub_sound_trigger_device *)dev; local
695 struct stub_sound_trigger_device *stdev = (struct stub_sound_trigger_device *)dev; local
735 struct stub_sound_trigger_device *stdev = (struct stub_sound_trigger_device *)dev; local
769 struct stub_sound_trigger_device *stdev = (struct stub_sound_trigger_device *)dev; local
793 struct stub_sound_trigger_device *stdev = (struct stub_sound_trigger_device *)dev; local
843 struct stub_sound_trigger_device *stdev; local
    [all...]
  /external/toolchain-utils/cros_utils/
stats.py 100 stdev
447 sd = stdev(inlist)
636 N for the denominator (i.e., DESCRIBES the sample stdev only).
686 using N-1 in the denominator (i.e., to estimate population stdev).
700 return stdev(inlist) / float(math.sqrt(len(inlist)))
706 values in the passed list. sem = stdev / sqrt(n)
710 sd = stdev(inlist)
1943 stdev = Dispatch((lstdev, (ListType, TupleType)),) variable
4428 stdev = Dispatch((lstdev, (ListType, TupleType)), (astdev, (N.ndarray,))) variable
    [all...]

Completed in 518 milliseconds