Home
last modified time | relevance | path

Searched defs:dataset (Results 1 – 25 of 185) sorted by relevance

12345678

/external/golang-protobuf/internal/benchmarks/
Dbench_test.go115 func bench(b *testing.B, name string, f func(dataset, *testing.PB)) {
128 type dataset struct { struct
129 name string
130 messageType protoreflect.MessageType
131 messages []proto.Message
132 wire [][]byte
133 text [][]byte
134 json [][]byte
/external/guava/android/guava-tests/test/com/google/common/math/
DQuantilesTest.java132 double[] dataset = Doubles.toArray(SIXTEEN_SQUARES_DOUBLES); in testMedian_computeInPlace() local
144 double[] dataset = Doubles.toArray(SIXTEEN_SQUARES_DOUBLES); in testQuartiles_index_computeInPlace() local
158 double[] dataset = Doubles.toArray(SIXTEEN_SQUARES_DOUBLES); in testQuartiles_indexes_varargs_computeInPlace() local
186 double[] dataset = Doubles.toArray(SIXTEEN_SQUARES_DOUBLES); in testScale_index_compute_doubleVarargs() local
197 long[] dataset = Longs.toArray(SIXTEEN_SQUARES_LONGS); in testScale_index_compute_longVarargs() local
205 int[] dataset = Ints.toArray(SIXTEEN_SQUARES_INTEGERS); in testScale_index_compute_intVarargs() local
213 double[] dataset = Doubles.toArray(SIXTEEN_SQUARES_DOUBLES); in testScale_index_computeInPlace() local
306 double[] dataset = Doubles.toArray(SIXTEEN_SQUARES_DOUBLES); in testScale_indexes_varargs_compute_doubleVarargs() local
322 long[] dataset = Longs.toArray(SIXTEEN_SQUARES_LONGS); in testScale_indexes_varargs_compute_longVarargs() local
335 int[] dataset = Ints.toArray(SIXTEEN_SQUARES_INTEGERS); in testScale_indexes_varargs_compute_intVarargs() local
[all …]
DQuantilesAlgorithm.java43 double singleQuantile(int index, int scale, double[] dataset) { in singleQuantile()
50 Collection<Integer> indexes, int scale, double[] dataset) { in multipleQuantiles()
59 private double singleQuantileFromSorted(int index, int scale, double[] dataset) { in singleQuantileFromSorted()
79 double singleQuantile(int index, int scale, double[] dataset) { in singleQuantile()
95 Collection<Integer> indexes, int scale, double[] dataset) { in multipleQuantiles()
108 double singleQuantile(int index, int scale, double[] dataset) { in singleQuantile()
114 Collection<Integer> indexes, int scale, double[] dataset) { in multipleQuantiles()
124 abstract double singleQuantile(int index, int scale, double[] dataset); in singleQuantile()
131 Collection<Integer> indexes, int scale, double[] dataset); in multipleQuantiles()
/external/guava/guava-tests/test/com/google/common/math/
DQuantilesTest.java132 double[] dataset = Doubles.toArray(SIXTEEN_SQUARES_DOUBLES); in testMedian_computeInPlace() local
144 double[] dataset = Doubles.toArray(SIXTEEN_SQUARES_DOUBLES); in testQuartiles_index_computeInPlace() local
158 double[] dataset = Doubles.toArray(SIXTEEN_SQUARES_DOUBLES); in testQuartiles_indexes_varargs_computeInPlace() local
186 double[] dataset = Doubles.toArray(SIXTEEN_SQUARES_DOUBLES); in testScale_index_compute_doubleVarargs() local
197 long[] dataset = Longs.toArray(SIXTEEN_SQUARES_LONGS); in testScale_index_compute_longVarargs() local
205 int[] dataset = Ints.toArray(SIXTEEN_SQUARES_INTEGERS); in testScale_index_compute_intVarargs() local
213 double[] dataset = Doubles.toArray(SIXTEEN_SQUARES_DOUBLES); in testScale_index_computeInPlace() local
306 double[] dataset = Doubles.toArray(SIXTEEN_SQUARES_DOUBLES); in testScale_indexes_varargs_compute_doubleVarargs() local
322 long[] dataset = Longs.toArray(SIXTEEN_SQUARES_LONGS); in testScale_indexes_varargs_compute_longVarargs() local
335 int[] dataset = Ints.toArray(SIXTEEN_SQUARES_INTEGERS); in testScale_indexes_varargs_compute_intVarargs() local
[all …]
DQuantilesAlgorithm.java43 double singleQuantile(int index, int scale, double[] dataset) { in singleQuantile()
50 Collection<Integer> indexes, int scale, double[] dataset) { in multipleQuantiles()
59 private double singleQuantileFromSorted(int index, int scale, double[] dataset) { in singleQuantileFromSorted()
79 double singleQuantile(int index, int scale, double[] dataset) { in singleQuantile()
95 Collection<Integer> indexes, int scale, double[] dataset) { in multipleQuantiles()
108 double singleQuantile(int index, int scale, double[] dataset) { in singleQuantile()
114 Collection<Integer> indexes, int scale, double[] dataset) { in multipleQuantiles()
124 abstract double singleQuantile(int index, int scale, double[] dataset); in singleQuantile()
131 Collection<Integer> indexes, int scale, double[] dataset); in multipleQuantiles()
/external/tensorflow/tensorflow/python/grappler/
Ddatasets_test.py160 def fn(dataset, tensor, shape): argument
168 def fn(dataset, tensor, shape): argument
176 def fn(dataset, tensor, shape): argument
184 def fn(dataset, tensor, shape): argument
192 def fn(dataset, tensor, shape): argument
200 def fn(dataset, tensor, shape): argument
208 def fn(dataset, tensor, shape): argument
216 def fn(dataset, tensor, shape): argument
224 def fn(dataset, tensor, shape): argument
/external/guava/android/guava/src/com/google/common/math/
DQuantiles.java235 public double compute(Collection<? extends Number> dataset) { in compute()
246 public double compute(double... dataset) { in compute()
258 public double compute(long... dataset) { in compute()
269 public double compute(int... dataset) { in compute()
280 public double computeInPlace(double... dataset) { in computeInPlace()
340 public Map<Integer, Double> compute(Collection<? extends Number> dataset) { in compute()
354 public Map<Integer, Double> compute(double... dataset) { in compute()
369 public Map<Integer, Double> compute(long... dataset) { in compute()
383 public Map<Integer, Double> compute(int... dataset) { in compute()
397 public Map<Integer, Double> computeInPlace(double... dataset) { in computeInPlace()
[all …]
/external/guava/guava/src/com/google/common/math/
DQuantiles.java235 public double compute(Collection<? extends Number> dataset) { in compute()
246 public double compute(double... dataset) { in compute()
258 public double compute(long... dataset) { in compute()
269 public double compute(int... dataset) { in compute()
280 public double computeInPlace(double... dataset) { in computeInPlace()
340 public Map<Integer, Double> compute(Collection<? extends Number> dataset) { in compute()
354 public Map<Integer, Double> compute(double... dataset) { in compute()
369 public Map<Integer, Double> compute(long... dataset) { in compute()
383 public Map<Integer, Double> compute(int... dataset) { in compute()
397 public Map<Integer, Double> computeInPlace(double... dataset) { in computeInPlace()
[all …]
/external/tensorflow/tensorflow/core/data/service/
Dtest_util_test.cc70 std::unique_ptr<standalone::Dataset> dataset; in TEST() local
87 std::unique_ptr<standalone::Dataset> dataset; in TEST() local
104 std::unique_ptr<standalone::Dataset> dataset; in TEST() local
122 std::unique_ptr<standalone::Dataset> dataset; in TEST() local
135 std::unique_ptr<standalone::Dataset> dataset; in TEST() local
153 std::unique_ptr<standalone::Dataset> dataset; in TEST() local
171 std::unique_ptr<standalone::Dataset> dataset; in TEST() local
Dauto_shard_rewriter_test.cc87 DatasetDef dataset = RangeSquareDataset(10); in TEST() local
103 DatasetDef dataset = RangeSquareDataset(10); in TEST() local
119 DatasetDef dataset = RangeSquareDataset(10); in TEST() local
131 DatasetDef dataset = RangeDatasetWithShardHint(10); in TEST() local
147 DatasetDef dataset = RangeSquareDataset(10); in TEST() local
159 DatasetDef dataset = RangeSquareDataset(0); in TEST() local
176 DatasetDef dataset = RangeSquareDataset(10); in TEST() local
188 DatasetDef dataset = RangeSquareDataset(10); in TEST() local
200 DatasetDef dataset = RangeSquareDataset(10); in TEST() local
/external/protobuf/benchmarks/cpp/
Dcpp_benchmark.cc54 Fixture(const BenchmarkDataset& dataset, const std::string& suffix) { in Fixture()
97 ParseNewFixture(const BenchmarkDataset& dataset) in ParseNewFixture()
118 ParseNewArenaFixture(const BenchmarkDataset& dataset) in ParseNewArenaFixture()
141 ParseReuseFixture(const BenchmarkDataset& dataset) in ParseReuseFixture()
162 SerializeFixture(const BenchmarkDataset& dataset) in SerializeFixture()
205 void RegisterBenchmarksForType(const BenchmarkDataset& dataset) { in RegisterBenchmarksForType()
217 BenchmarkDataset dataset; in RegisterBenchmarks() local
/external/cronet/third_party/protobuf/benchmarks/cpp/
Dcpp_benchmark.cc54 Fixture(const BenchmarkDataset& dataset, const std::string& suffix) { in Fixture()
97 ParseNewFixture(const BenchmarkDataset& dataset) in ParseNewFixture()
118 ParseNewArenaFixture(const BenchmarkDataset& dataset) in ParseNewArenaFixture()
141 ParseReuseFixture(const BenchmarkDataset& dataset) in ParseReuseFixture()
162 SerializeFixture(const BenchmarkDataset& dataset) in SerializeFixture()
205 void RegisterBenchmarksForType(const BenchmarkDataset& dataset) { in RegisterBenchmarksForType()
217 BenchmarkDataset dataset; in RegisterBenchmarks() local
/external/openthread/src/core/meshcop/
Ddataset_local.cpp134 Dataset dataset; in Read() local
148 Dataset dataset; in Read() local
163 Dataset dataset; in Save() local
174 Dataset dataset; in Save() local
200 Dataset dataset; in Save() local
319 Dataset dataset; in EmplaceSecurelyStoredKeys() local
Ddataset_manager.cpp76 Dataset dataset; in Restore() local
100 Dataset dataset; in ApplyConfiguration() local
233 Dataset dataset; in GetChannelMask() local
259 Dataset dataset; in SendSet() local
416 Dataset dataset; in SendGetResponse() local
463 Dataset dataset; in AppendDatasetToMessage() local
682 Dataset dataset; in Save() local
726 Dataset dataset; in ClearNetwork() local
772 Dataset dataset; in Save() local
786 Dataset dataset; in StartDelayTimer() local
[all …]
/external/tensorflow/tensorflow/python/data/util/
Dtraverse.py28 def _traverse(dataset, op_filter_fn): argument
46 def obtain_capture_by_value_ops(dataset): argument
67 def obtain_all_variant_tensor_ops(dataset): argument
/external/tensorflow/tensorflow/python/eager/
Dwrap_function_device_test.py28 def _dataset_reduce_sum(dataset): argument
33 def _loop_dataset_sum(dataset): argument
40 def _iter_dataset_sum(dataset): argument
/external/tensorflow/tensorflow/python/data/experimental/ops/
Dtesting.py40 def _apply_fn(dataset): argument
78 def _apply_fn(dataset): argument
93 def _apply_fn(dataset): argument
112 def _apply_fn(dataset): argument
Dbatching.py90 def _apply_fn(dataset): argument
142 def _apply_fn(dataset): argument
200 def _apply_fn(dataset): argument
264 def _apply_fn(dataset): argument
295 def _apply_fn(dataset): argument
Dlookup_ops.py75 def __init__(self, dataset): argument
103 def table_from_dataset(dataset=None, argument
191 def index_table_from_dataset(dataset=None, argument
Dcardinality.py34 def cardinality(dataset): argument
93 def _apply_fn(dataset): argument
/external/tensorflow/tensorflow/core/data/
Dsplit_utils.cc121 IteratorContext* ctx, const DatasetBase* dataset) { in GetSingleSplitProvider()
132 const DatasetBase* dataset) { in GetSplitProviders()
147 IteratorContext* ctx, const DatasetBase* dataset) { in CreateInputIteratorContexts()
186 IteratorContext* ctx, const DatasetBase* dataset) { in GetSingleSplitProvider()
197 const DatasetBase* dataset) { in GetSplitProviders()
212 IteratorContext* ctx, const DatasetBase* dataset) { in CreateInputIteratorContexts()
/external/tensorflow/tensorflow/python/data/kernel_tests/
Dtest_base.py92 def getNext(self, dataset, requires_initialization=False, shared_name=None): argument
151 def getDatasetOutput(self, dataset, requires_initialization=False): argument
167 dataset, argument
308 def verifyRandomAccess(self, dataset, expected): argument
313 def verifyRandomAccessInfiniteCardinality(self, dataset, expected): argument
367 def graphRoundTrip(self, dataset, allow_stateful=False): argument
/external/tensorflow/tensorflow/python/distribute/
Dinput_ops.py26 def auto_shard_dataset(dataset, num_shards, index, num_replicas_in_sync=None): argument
58 def _clone_dataset(dataset): argument
/external/tensorflow/tensorflow/python/data/benchmarks/
Dmeta_benchmark.py102 def run_benchmark_in_eager(self, dataset): argument
110 def run_benchmark_with_session_run(self, dataset, make_callable=False): argument
129 def run_benchmark_with_only_cpp_iterations(self, dataset): argument
/external/openthread/src/cli/
Dcli_dataset.cpp160 otOperationalDataset dataset; in Process() local
167 otOperationalDatasetTlvs dataset; in Process() local
183 otOperationalDataset dataset; in Process() local
190 otOperationalDatasetTlvs dataset; in Process() local
446 otOperationalDataset dataset; in Process() local
851 MeshCoP::Dataset dataset; in Process() local

12345678