Searched defs:stat (Results 1 - 25 of 165) sorted by relevance

1234567

/external/libpcap/
H A Ddlpisubs.h23 struct pcap_stat stat; member in struct:pcap_dlpi
/external/clang/test/CodeGenCXX/
H A Ddebug-info-global-ctor-dtor.cpp16 static A stat; local
/external/clang/test/Index/
H A Dprint-bitwidth.c13 union S stat; member in struct:X
25 // CHECK-NOT: stat
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_stat.cc25 void StatOutput(u64 *stat) { argument
26 stat[StatShadowNonZero] = stat[StatShadowProcessed] - stat[StatShadowZero];
173 Printf("%s: %16zu\n", name[i], (uptr)stat[i]);
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
H A DClusterable.java18 package org.apache.commons.math.stat.clustering;
H A DCluster.java18 package org.apache.commons.math.stat.clustering;
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
H A DMedian.java17 package org.apache.commons.math.stat.descriptive.rank;
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/ranking/
H A DRankingAlgorithm.java18 package org.apache.commons.math.stat.ranking;
H A DNaNStrategy.java18 package org.apache.commons.math.stat.ranking;
H A DTiesStrategy.java18 package org.apache.commons.math.stat.ranking;
/external/bison/lib/
H A Dfstat.c17 /* If the user's config.h happens to include <sys/stat.h>, let it include only
18 the system's <sys/stat.h> here, so that orig_fstat doesn't recurse to
25 #include <sys/stat.h>
27 # undef stat /* avoid warning on mingw64 with _FILE_OFFSET_BITS=64 */ macro
28 # define stat _stati64 macro
35 orig_fstat (int fd, struct stat *buf)
41 /* Write "sys/stat.h" here, not <sys/stat.h>, otherwise OSF/1 5.1 DTK cc
42 eliminates this include because of the preliminary #include <sys/stat.h>
44 #include "sys/stat
[all...]
H A Dstat.c1 /* Work around platform bugs in stat.
19 /* If the user's config.h happens to include <sys/stat.h>, let it include only
20 the system's <sys/stat.h> here, so that orig_stat doesn't recurse to
25 /* Get the original definition of stat. It might be defined as a macro. */
27 #include <sys/stat.h>
32 # undef stat /* avoid warning on mingw64 with _FILE_OFFSET_BITS=64 */ macro
33 # define stat _stati64 macro
37 /* mingw64 has a broken stat() function, based on _stat(), in libmingwex.a.
39 # define stat _stat macro
46 orig_stat (const char *filename, struct stat *bu
[all...]
/external/toybox/toys/posix/
H A Dtime.c33 int stat; local
37 wait4(pid, &stat, 0, &ru);
47 toys.exitval = WIFEXITED(stat) ? WEXITSTATUS(stat) : WTERMSIG(stat);
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DSynchronizedDescriptiveStatistics.java17 package org.apache.commons.math.stat.descriptive;
21 * {@link org.apache.commons.math.stat.descriptive.DescriptiveStatistics} that
73 public synchronized double apply(UnivariateStatistic stat) { argument
74 return super.apply(stat);
H A DStatisticalSummary.java17 package org.apache.commons.math.stat.descriptive;
H A DUnivariateStatistic.java17 package org.apache.commons.math.stat.descriptive;
H A DWeightedEvaluation.java17 package org.apache.commons.math.stat.descriptive;
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
H A DChiSquareTest.java17 package org.apache.commons.math.stat.inference;
H A DOneWayAnova.java17 package org.apache.commons.math.stat.inference;
28 * the {@link org.apache.commons.math.stat.inference.TTest}.
H A DUnknownDistributionChiSquareTest.java17 package org.apache.commons.math.stat.inference;
H A DTTestImpl.java17 package org.apache.commons.math.stat.inference;
24 import org.apache.commons.math.stat.StatUtils;
25 import org.apache.commons.math.stat.descriptive.StatisticalSummary;
1057 * @param stat statistical summary
1060 private void checkSampleData(final StatisticalSummary stat) argument
1062 if ((stat == null) || (stat.getN() < 2)) {
1065 (stat == null) ? 0 : stat.getN());
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/regression/
H A DMultipleLinearRegression.java17 package org.apache.commons.math.stat.regression;
/external/clang/tools/scan-build/
H A Dset-xcode-analyzer17 import stat namespace
55 os.chmod(path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IROTH)
/external/gtest/test/
H A Dgtest_premature_exit_test.cc55 StatStruct stat; local
56 return Stat(filepath, &stat) == 0;
/external/toybox/toys/other/
H A Dstat.c0 /* stat.c : display file or file system status
5 USE_STAT(NEWTOY(stat, "c:f", TOYFLAG_BIN))
8 bool stat
11 usage: stat [-f] [-c FORMAT] FILE...
42 struct stat st;
44 } stat;
50 // Note: the atime, mtime, and ctime fields in struct stat are the start
63 struct stat *stat = (struct stat *) local
143 struct stat *stat = (struct stat*)&TT.stat; local
[all...]

Completed in 5326 milliseconds

1234567