HomeSort by relevance Sort by last modified time
    Searched defs:minmax (Results 1 - 25 of 36) sorted by null

1 2

  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
glUtils.h 76 template <class T> void minmax(const T *indices, int count, int *min, int *max) { function in namespace:GLUtils
91 if (!shouldExclude) return minmax(indices, count, min, max);
  /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
read_fake_quant_min_max.cc 31 const MinMax& minmax, const string& array_name) {
33 if (annotated_array.minmax) {
36 annotated_array.GetOrCreateMinMax() = minmax;
39 minmax.min, minmax.max);
55 if (!fakequant_op->minmax) {
70 fakequant_op->minmax.reset(new MinMax);
71 MinMax& minmax = *fakequant_op->minmax local
96 const MinMax& minmax = *fakequant_op->minmax; local
    [all...]
resolve_constant_concatenation.cc 111 // If the minmax is already set, use it
112 if (concatenated_array->minmax) return;
118 // If any of the input arrays minmax is not set, return.
119 // TODO(ghodrat): shall we add the logic to compute the minmax?
120 if (!input_array->minmax) return;
121 const MinMax& input_minmax = input_array->GetMinMax();
125 MinMax& minmax = concatenated_array->GetOrCreateMinMax(); local
126 minmax.min = concat_min;
127 minmax.max = concat_max
    [all...]
hardcode_min_max.cc 34 if (im2col_array.minmax) {
38 if (!input_array.minmax) {
42 CHECK(!im2col_array.minmax);
51 if (output_array.minmax) {
55 if (!input_array.minmax) {
59 CHECK(!output_array.minmax);
73 if (model->GetArray(input).minmax) {
75 const auto* minmax = model->GetArray(input).minmax.get(); local
76 if (minmax) {
85 const auto* minmax = model->GetArray(op->outputs[0]).minmax.get(); local
228 auto& minmax = input_activations.GetOrCreateMinMax(); local
237 auto& minmax = prev_output_activations.GetOrCreateMinMax(); local
246 auto& minmax = output_concat_temp.GetOrCreateMinMax(); local
255 auto& minmax = output_activations.GetOrCreateMinMax(); local
272 auto& minmax = output_activations_temp.GetOrCreateMinMax(); local
    [all...]
quantize.cc 118 const MinMax& GetOrComputeMinMax(Model* model, const string& array_name) {
120 // Normally we should have a MinMax recorded on this Array,
122 if (array.minmax != nullptr) {
123 return *array.minmax;
126 // We don't have a MinMax. That's bad news: we need
127 // the graph to provide MinMax info for all arrays in order
137 // lacks some minmax information.
141 << " lacks MinMax information. To make up for that, we will now compute"
142 << " the MinMax from actual array elements. That will result in"
157 auto& minmax = array.GetOrCreateMinMax() local
223 const MinMax& minmax = GetOrComputeMinMax(model, input); local
341 const MinMax& minmax = GetOrComputeMinMax(model, output); local
    [all...]
  /external/blktrace/
stats.h 28 struct minmax { struct
36 static inline void minmax_init(struct minmax *mm)
45 static inline void minmax_account(struct minmax *mm, __u64 value)
56 static inline void minmax_merge(struct minmax *dst, struct minmax *src)
67 static inline void minmax_to_be(struct minmax *mm)
76 static inline double minmax_avg(struct minmax *mm)
81 static inline double minmax_var(struct minmax *mm)
88 static inline int minmax_print(FILE *fp, const char *s, struct minmax *mm)
  /external/tensorflow/tensorflow/contrib/lite/toco/tflite/
operator_test.cc 158 auto* minmax = new MinMax; local
159 minmax->min = -10;
160 minmax->max = 200;
161 op.minmax.reset(minmax);
164 EXPECT_EQ(op.minmax->min, output_toco_op->minmax->min);
165 EXPECT_EQ(op.minmax->max, output_toco_op->minmax->max)
    [all...]
import.cc 80 MinMax& minmax = array.GetOrCreateMinMax(); local
81 minmax.min = quantization->min()->Get(0);
82 minmax.max = quantization->max()->Get(0);
operator.cc 256 fbb->Float("min", op.minmax->min);
257 fbb->Float("max", op.minmax->max);
260 auto* minmax = new MinMax; variable
261 minmax->min = m["min"].AsFloat();
262 minmax->max = m["max"].AsFloat();
263 op->minmax.reset(minmax);
    [all...]
  /external/clang/test/SemaCXX/
invalid-member-expr.cpp 29 template <typename _Tp> pair<_Tp, _Tp> minmax(initializer_list<_Tp> __l) {}; function in namespace:test3
32 pair<int, int> z = minmax({});
36 // expected-error@-4 {{no matching function for call to 'minmax'}}
  /external/scapy/scapy/
plist.py 369 def minmax(x): function in function:.afterglow
378 mins, maxs = minmax(x for x, _ in six.itervalues(sl))
379 mine, maxe = minmax(x for x, _ in six.itervalues(el))
380 mind, maxd = minmax(six.itervalues(dl))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_algo.h 4039 minmax(const _Tp& __a, const _Tp& __b) function
4059 minmax(const _Tp& __a, const _Tp& __b, _Compare __comp) function
4241 minmax(initializer_list<_Tp> __l) function
4250 minmax(initializer_list<_Tp> __l, _Compare __comp) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_algo.h 4039 minmax(const _Tp& __a, const _Tp& __b) function
4059 minmax(const _Tp& __a, const _Tp& __b, _Compare __comp) function
4241 minmax(initializer_list<_Tp> __l) function
4250 minmax(initializer_list<_Tp> __l, _Compare __comp) function
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/
import_tensorflow.cc 603 op->minmax.reset(new MinMax);
604 auto& minmax = *op->minmax; local
605 minmax.min = GetFloatAttr(node, "min");
606 minmax.max = GetFloatAttr(node, "max");
    [all...]
tooling_util.cc 431 if (array.minmax) {
432 VLOG(log_level) << " MinMax: " << array.minmax->min << " .. "
433 << array.minmax->max;
1325 auto& minmax = input_array.GetOrCreateMinMax(); local
1333 auto& minmax = output_array.GetOrCreateMinMax(); local
1845 auto& minmax = model->GetArray(entry.name()).GetOrCreateMinMax(); local
    [all...]
model.h 695 struct MinMax {
700 inline bool operator==(const MinMax& m1, const MinMax& m2) {
705 // - Annotate its input and output arrays with MinMax information,
708 // values from the min to the max value dictated by its MinMax info.
720 std::unique_ptr<MinMax> minmax; member in struct:toco::FakeQuantOperator
1598 std::unique_ptr<MinMax> minmax; member in struct:toco::Array
    [all...]
  /external/v8/src/asmjs/
asm-typer.cc 255 auto* minmax = AsmType::OverloadedFunction(zone_); local
256 minmax->AsOverloadedFunctionType()->AddOverload(minmax_i);
257 minmax->AsOverloadedFunctionType()->AddOverload(minmax_f);
258 minmax->AsOverloadedFunctionType()->AddOverload(minmax_d);
326 {"min", kMathMin, minmax},
327 {"max", kMathMax, minmax},
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.cc 1575 LMathMinMax* minmax = new(zone()) LMathMinMax(left, right); local
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.cc 1581 LMathMinMax* minmax = new(zone()) LMathMinMax(left, right); local
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.cc 1584 LMathMinMax* minmax = new (zone()) LMathMinMax(left, right, scratch); local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
VideoEncoderTest.java 1704 private void minmax(Encoder[] encoders, boolean flexYUV) { method in class:VideoEncoderTest
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodeframe.c 628 // Compute the minmax over the 8x8 subblocks.
1501 int minmax = compute_minmax_8x8(s, sp, d, dp, x16_idx, y16_idx, local
    [all...]
  /prebuilts/misc/common/jacoco/lib/
org.jacoco.report-0.8.0.201801022044.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.1.201405082137/
org.jacoco.report-0.7.1.201405082137.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/
org.jacoco.report-0.7.3.201501221555.jar 

Completed in 1067 milliseconds

1 2