HomeSort by relevance Sort by last modified time
    Searched defs:stat (Results 126 - 150 of 571) sorted by null

1 2 3 4 56 7 8 91011>>

  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/gen-1240/
loc_api_rpc_glue.c 49 #include <sys/stat.h>
89 #define LOC_GLUE_CHECK_RESULT(stat, ret_type) \
90 if (stat != RPC_SUCCESS) { return (ret_type) RPC_LOC_API_RPC_FAILURE; }
200 enum clnt_stat stat = RPC_SUCCESS; local
202 stat = RPC_FUNC_VERSION(rpc_loc_open_, /* LOC_APIVERS */ 0x00040001)(&args, &rets, loc_api_clnt);
203 LOC_GLUE_CHECK_RESULT(stat, int32);
216 enum clnt_stat stat = RPC_SUCCESS; local
218 stat = RPC_FUNC_VERSION(rpc_loc_close_, /* LOC_APIVERS */ 0x00040001)(&args, &rets, loc_api_clnt);
219 LOC_GLUE_CHECK_RESULT(stat, int32);
232 enum clnt_stat stat = RPC_SUCCESS local
248 enum clnt_stat stat = RPC_SUCCESS; local
319 enum clnt_stat stat = RPC_SUCCESS; local
333 enum clnt_stat stat = RPC_SUCCESS; local
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/gen-3200/
loc_api_rpc_glue.c 49 #include <sys/stat.h>
89 #define LOC_GLUE_CHECK_RESULT(stat, ret_type) \
90 if (stat != RPC_SUCCESS) { return (ret_type) RPC_LOC_API_RPC_FAILURE; }
200 enum clnt_stat stat = RPC_SUCCESS; local
202 stat = RPC_FUNC_VERSION(rpc_loc_open_, LOC_APIVERS)(&args, &rets, loc_api_clnt);
203 LOC_GLUE_CHECK_RESULT(stat, int32);
216 enum clnt_stat stat = RPC_SUCCESS; local
218 stat = RPC_FUNC_VERSION(rpc_loc_close_, LOC_APIVERS)(&args, &rets, loc_api_clnt);
219 LOC_GLUE_CHECK_RESULT(stat, int32);
232 enum clnt_stat stat = RPC_SUCCESS local
248 enum clnt_stat stat = RPC_SUCCESS; local
319 enum clnt_stat stat = RPC_SUCCESS; local
333 enum clnt_stat stat = RPC_SUCCESS; local
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc/gen-1240/
loc_api_rpc_glue.c 49 #include <sys/stat.h>
89 #define LOC_GLUE_CHECK_RESULT(stat, ret_type) \
90 if (stat != RPC_SUCCESS) { return (ret_type) RPC_LOC_API_RPC_FAILURE; }
200 enum clnt_stat stat = RPC_SUCCESS; local
202 stat = RPC_FUNC_VERSION(rpc_loc_open_, /* LOC_APIVERS */ 0x00040001)(&args, &rets, loc_api_clnt);
203 LOC_GLUE_CHECK_RESULT(stat, int32);
216 enum clnt_stat stat = RPC_SUCCESS; local
218 stat = RPC_FUNC_VERSION(rpc_loc_close_, /* LOC_APIVERS */ 0x00040001)(&args, &rets, loc_api_clnt);
219 LOC_GLUE_CHECK_RESULT(stat, int32);
232 enum clnt_stat stat = RPC_SUCCESS local
248 enum clnt_stat stat = RPC_SUCCESS; local
319 enum clnt_stat stat = RPC_SUCCESS; local
333 enum clnt_stat stat = RPC_SUCCESS; local
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc/gen-3200/
loc_api_rpc_glue.c 49 #include <sys/stat.h>
89 #define LOC_GLUE_CHECK_RESULT(stat, ret_type) \
90 if (stat != RPC_SUCCESS) { return (ret_type) RPC_LOC_API_RPC_FAILURE; }
200 enum clnt_stat stat = RPC_SUCCESS; local
202 stat = RPC_FUNC_VERSION(rpc_loc_open_, LOC_APIVERS)(&args, &rets, loc_api_clnt);
203 LOC_GLUE_CHECK_RESULT(stat, int32);
216 enum clnt_stat stat = RPC_SUCCESS; local
218 stat = RPC_FUNC_VERSION(rpc_loc_close_, LOC_APIVERS)(&args, &rets, loc_api_clnt);
219 LOC_GLUE_CHECK_RESULT(stat, int32);
232 enum clnt_stat stat = RPC_SUCCESS local
248 enum clnt_stat stat = RPC_SUCCESS; local
319 enum clnt_stat stat = RPC_SUCCESS; local
333 enum clnt_stat stat = RPC_SUCCESS; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
CacheStorageUsageInfo.java 63 StatFs stat = new StatFs(path); local
64 long blockSize = stat.getBlockSize();
65 long availableBlocks = stat.getAvailableBlocks();
66 long totalBlocks = stat.getBlockCount();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
stat.h 10 * stat is the same structure layout on 64-bit, without the 'long long'
13 * By convention, 64 bit architectures use the stat interface, while
23 struct stat { struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
stat.h 7 struct stat { struct
68 struct stat { struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
stat.h 7 struct stat { struct
68 struct stat { struct
  /system/core/libutils/
Tokenizer.cpp 21 #include <sys/stat.h>
57 struct stat stat; local
58 if (fstat(fd, &stat)) {
62 size_t length = size_t(stat.st_size);
75 // The length we obtained from stat is wrong too (it will always be 4096)
  /test/vti/dashboard/src/main/java/com/android/vts/util/
ProfilingPointSummary.java 110 StatSummary stat = local
119 statSummaries.add(stat);
127 * Gets an iterator that returns stat summaries in the ordered the labels were specified in the
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
KMeansPlusPlusClusterer.java 18 package org.apache.commons.math.stat.clustering;
27 import org.apache.commons.math.stat.descriptive.moment.Variance;
215 final Variance stat = new Variance(); local
217 stat.increment(point.distanceFrom(center));
219 final double variance = stat.getResult();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
AggregateSummaryStatistics.java 18 package org.apache.commons.math.stat.descriptive;
402 AggregatingSummaryStatistics stat = (AggregatingSummaryStatistics)object; local
403 return super.equals(stat) &&
404 aggregateStatistics.equals(stat.aggregateStatistics);
  /bionic/libc/kernel/uapi/asm-x86/asm/
stat.h 24 struct stat { struct
71 struct stat { struct
  /cts/hostsidetests/ui/src/android/ui/cts/
InstallTimeTest.java 28 import com.android.compatibility.common.util.Stat;
109 Stat.StatResult stat = Stat.getStatWithOutlierRejection(result, OUTLIER_THRESHOLD); local
110 if (stat.mDataCount != result.length) {
111 Log.w(TAG, "rejecting " + (result.length - stat.mDataCount) + " outliers");
113 report.setSummary("install_time_average", stat.mAverage, ResultType.LOWER_BETTER,
  /cts/tests/filesystem/src/android/filesystem/cts/
SequentialRWTest.java 29 import com.android.compatibility.common.util.Stat;
78 double[] mbps = Stat.calcRatePerSecArray((double)BUFFER_SIZE / 1024 / 1024, times);
81 Stat.StatResult stat = Stat.getStat(mbps); local
82 report.setSummary("write_throughput_average", stat.mAverage, ResultType.HIGHER_BETTER,
114 Stat.calcRatePerSec((double)fileSize / 1024 / 1024, finish - start),
133 double[] mbps = Stat.calcRatePerSecArray((double)fileSize / 1024 / 1024, times);
135 Stat.StatResult stat = Stat.getStat(mbps) local
    [all...]
  /cts/tests/simplecpu/src/android/simplecpu/cts/
SimpleCpuTest.java 25 import com.android.compatibility.common.util.Stat;
106 Stat.StatResult stat = Stat.getStatWithOutlierRejection(result, OUTLIER_THRESHOLD); local
107 if (stat.mDataCount != result.length) {
108 Log.w(TAG, "rejecting " + (result.length - stat.mDataCount) + " outliers");
110 report.setSummary("sorting_time_average", stat.mAverage, ResultType.LOWER_BETTER, ResultUnit.MS);
131 Stat.StatResult stat = Stat.getStatWithOutlierRejection(result, OUTLIER_THRESHOLD) local
    [all...]
  /device/google/wahoo/power-libperfmgr/
power-helper.h 88 enum stats_type stat; member in struct:stat_pair
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
poplib.py 45 STAT stat()
192 def stat(self): member in class:POP3
197 retval = self._shortcmd('STAT')
199 if self._debugging: print '*stat*', repr(rets)
410 (numMsgs, totalSize) = a.stat()
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
StatUtils.java 17 package org.apache.commons.math.stat;
21 import org.apache.commons.math.stat.descriptive.DescriptiveStatistics;
22 import org.apache.commons.math.stat.descriptive.UnivariateStatistic;
23 import org.apache.commons.math.stat.descriptive.moment.GeometricMean;
24 import org.apache.commons.math.stat.descriptive.moment.Mean;
25 import org.apache.commons.math.stat.descriptive.moment.Variance;
26 import org.apache.commons.math.stat.descriptive.rank.Max;
27 import org.apache.commons.math.stat.descriptive.rank.Min;
28 import org.apache.commons.math.stat.descriptive.rank.Percentile;
29 import org.apache.commons.math.stat.descriptive.summary.Product
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
Covariance.java 17 package org.apache.commons.math.stat.correlation;
23 import org.apache.commons.math.stat.descriptive.moment.Mean;
24 import org.apache.commons.math.stat.descriptive.moment.Variance;
PearsonsCorrelation.java 17 package org.apache.commons.math.stat.correlation;
28 import org.apache.commons.math.stat.regression.SimpleRegression;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
Kurtosis.java 17 package org.apache.commons.math.stat.descriptive.moment;
23 import org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic;
SemiVariance.java 18 package org.apache.commons.math.stat.descriptive.moment;
23 import org.apache.commons.math.stat.descriptive.AbstractUnivariateStatistic;
Skewness.java 17 package org.apache.commons.math.stat.descriptive.moment;
21 import org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic;
Variance.java 17 package org.apache.commons.math.stat.descriptive.moment;
23 import org.apache.commons.math.stat.descriptive.WeightedEvaluation;
24 import org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic;

Completed in 563 milliseconds

1 2 3 4 56 7 8 91011>>