Home
last modified time | relevance | path

Searched refs:maxs (Results 1 – 11 of 11) sorted by relevance

/external/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
Dtest_min_max.pass.cpp36 std::string maxs = maxiss.str(); in check_limits() local
38 istringstream maxoss(maxs), minoss(mins); in check_limits()
47 maxs[maxs.size() - 1]++; in check_limits()
48 assert(check_stream_failed<T>(maxs)); in check_limits()
/external/tensorflow/tensorflow/tools/graph_transforms/
Dfreeze_requantization_ranges.cc149 std::vector<float> maxs; in FreezeRequantizationRanges() local
152 maxs.push_back(record.max); in FreezeRequantizationRanges()
155 std::sort(maxs.begin(), maxs.end()); in FreezeRequantizationRanges()
161 std::round(maxs.size() * (1.0f - (max_percentile / 100.0f))); in FreezeRequantizationRanges()
162 if (max_index > (maxs.size() - 1)) { in FreezeRequantizationRanges()
163 max_index = maxs.size() - 1; in FreezeRequantizationRanges()
166 const float max = maxs[max_index]; in FreezeRequantizationRanges()
/external/brotli/research/
Ddraw_histogram.cc137 int maxs = 0; in ConvertToPixels() local
140 if (maxs < histo[i][j]) maxs = histo[i][j]; in ConvertToPixels()
145 double max_histo = static_cast<double>(maxs); in ConvertToPixels()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dscalar_sse_minmax.ll31 ; CHECK: maxs
39 ; CHECK: maxs
48 ; CHECK: maxs
/external/llvm/test/CodeGen/X86/
Dscalar_sse_minmax.ll31 ; CHECK: maxs
39 ; CHECK: maxs
48 ; CHECK: maxs
/external/tensorflow/tensorflow/compiler/mlir/lite/quantization/
Dquantization_utils.cc105 auto maxs = max.dyn_cast<DenseFPElementsAttr>(); in GetQuantizedTypeAttr() local
106 if (mins && maxs) { in GetQuantizedTypeAttr()
108 max_value.reserve(maxs.getNumElements()); in GetQuantizedTypeAttr()
112 for (auto it = maxs.begin(), e = maxs.end(); it != e; ++it) { in GetQuantizedTypeAttr()
Dquantization_utils.h89 SmallVector<double, 4> mins, maxs; in matchAndRewrite() local
99 maxs.push_back(FloatAttr::getValueAsDouble(*it)); in matchAndRewrite()
102 op.getLoc(), num_bits, op.axis()->getSExtValue(), mins, maxs, in matchAndRewrite()
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnvfx_fragprog.c630 struct nvfx_src maxs = nvfx_src(nvfx_fp_imm(fpc, 0, FLT_MIN, 0, 0)); in nvfx_fragprog_parse_instruction() local
633 … nvfx_fp_emit(fpc, arith(0, MOV, tmp.reg, NVFX_FP_MASK_X | NVFX_FP_MASK_Y, maxs, none, none)); in nvfx_fragprog_parse_instruction()
634 maxs = tmp; in nvfx_fragprog_parse_instruction()
636 …X, tmp.reg, NVFX_FP_MASK_Y | NVFX_FP_MASK_W, swz(src[0], X, X, X, Y), swz(maxs, X, X, Y, Y), none)… in nvfx_fragprog_parse_instruction()
/external/scapy/scapy/
Dplist.py378 mins, maxs = minmax(x for x, _ in six.itervalues(sl))
386 n,l = sl[s]; n = 1+float(n-mins)/(maxs-mins)
/external/tensorflow/tensorflow/compiler/mlir/lite/
Dflatbuffer_import.cc242 auto maxs = tensor.quantization->max; in ConvertMinMaxToStatsOp() local
243 if (mins.size() != maxs.size() || mins.empty()) return nullptr; in ConvertMinMaxToStatsOp()
249 llvm::APFloat max(maxs[i]); in ConvertMinMaxToStatsOp()
/external/deqp/framework/common/
DtcuTextureUtil.cpp1272 int maxs = deFloorFloatToInt32(maxc / e + 0.5f); in packRGB999E5() local
1274 if (maxs == (1<<mBits)) in packRGB999E5()