Home
last modified time | relevance | path

Searched refs:fractional (Results 1 – 25 of 131) sorted by relevance

123456

/external/parameter-framework/upstream/test/test-fixed-point-parameter/
DMain.py64 def __init__(self, pfwClient, size, integral, fractional): argument
66 self._paramPath = '/Test/test/%d/q%d.%d' % (size, integral, fractional)
70 self._quantum = 2 ** -fractional
91 littleValue = 10 ** -(int(fractional * log10(2)))
241 for fractional in range (0, size - integral):
242 tester = FixedPointTester(pfw, size, integral, fractional)
/external/cldr/tools/scripts/uca/
Dblankweights.sed12 # fractional primary weights
16 # fractional secondary weights
19 # fractional tertiary weights
/external/sfntly/cpp/src/sfntly/math/
Dfixed1616.h34 static inline int32_t Fixed(int32_t integral, int32_t fractional) { in Fixed() argument
35 return ((integral & 0xffff) << 16) | (fractional & 0xffff); in Fixed()
/external/rust/crates/grpcio-sys/grpc/src/proto/grpc/testing/xds/v3/
Dpercent.proto21 // A fractional percentage is used in cases in which for performance reasons performing floating
23 // both a numerator and denominator that together determine the final fractional value.
50 // fractional percentage is capped at 1 (100%).
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_FractionalMaxPool.pbtxt12 output tensor after fractional max pooling.
58 The result would be [20, 16] for fractional max pooling.
83 summary: "Performs fractional max pooling on the input."
89 expect from the word "fractional", means that the overall reduction ratio N
111 For more details on fractional max pooling, see this paper:
Dapi_def_FractionalAvgPool.pbtxt12 output tensor after fractional avg pooling.
58 The result would be [41/3, 26/3] for fractional avg pooling.
83 summary: "Performs fractional average pooling on the input."
Dapi_def_TruncateDiv.pbtxt5 Truncation designates that negative numbers will round fractional quantities
Dapi_def_FractionalMaxPoolGrad.pbtxt54 The result would be [20, 16] for fractional max pooling.
Dapi_def_FractionalAvgPoolGrad.pbtxt48 The result would be [41/3, 26/3] for fractional avg pooling.
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dabseil-duration-factory-float.rst10 This check will not suggest fixes for literals which contain fractional
Dabseil-duration-division.rst7 division of two ``absl::Duration`` objects returns an ``int64`` with any fractional
/external/mtools/
Dfat_size_calculation.tex139 (including fractional clusters), which is good, as we may have under
142 size on a {\em fractional} number of clusters, rather than a rounded
160 Keeping the fractional part (0.992) allows us to round {\em up} the
163 The downside of counting the fractional part however is that we quite
/external/libcups/cups/
Dpwg-media.c1144 fractional = 0, /* Fractional value */ in pwg_scan_measurement() local
1166 fractional = fractional * 10 + (*buf++) - '0'; in pwg_scan_measurement()
1181 return (value * numer / denom + fractional * numer / denom / divisor); in pwg_scan_measurement()
/external/mesa3d/docs/drivers/openswr/
Dknobs.rst69 (DEBUG) Maximum tessellation factor for fractional-odd partitioning.
73 (DEBUG) Maximum tessellation factor for fractional-even partitioning.
/external/deqp/doc/testspecs/GLES31/
Dfunctional.tessellation.txt31 + Separate verification of fractional spacing modes
75 The tests for the fractional spacing modes (fractional_odd_spacing,
156 using a fractional spacing mode and a tessellation level that isn't already
/external/libjpeg-turbo/simd/nasm/
Djsimdcfg.inc.h119 %define IFAST_SCALE_BITS 2 ; fractional bits in scale factors
Djsimdcfg.inc82 %define IFAST_SCALE_BITS 2 ; fractional bits in scale factors
/external/webrtc/docs/native-code/rtp-hdrext/abs-capture-time/
DREADME.md70 bits for the timestamp in seconds and low 32 bits for the fractional part. This
83 with the high 32 bits for the seconds and low 32 bits for the fractional part.
/external/sonivox/arm-wt-22k/lib_src/
DARM_synth_constants_gnu.inc61 @/* macros for fractional phase accumulator */
/external/skqp/third_party/libjpeg-turbo/
Djsimdcfg.inc82 %define IFAST_SCALE_BITS 2 ; fractional bits in scale factors
/external/pdfium/testing/resources/javascript/
Dglobals.in49 // Include both zero and a number with some fractional digits.
/external/fmtlib/include/fmt/
Dformat-inl.h1519 uint64_t fractional = value.f & (one.f - 1);
1570 auto remainder = (static_cast<uint64_t>(integral) << -one.e) + fractional;
1578 fractional *= 10;
1580 char digit = static_cast<char>('0' + (fractional >> -one.e));
1581 fractional &= one.f - 1;
1583 result = handler.on_digit(digit, one.f, fractional, error, exp, false);
/external/XNNPACK/src/f32-raddstoreexpminusmax/
Dscalar-lut64-p2.c.in64 …// i.e. -87.33642 <= x <= 0.0. As n has 6 fractional bits, we split s == 2**(n / 64) = 2**e * 2**(…
155 …// i.e. -87.33642 <= x <= 0.0. As n has 6 fractional bits, we split s == 2**(n / 64) = 2**e * 2**(…
/external/python/cpython3/Misc/NEWS.d/
D3.5.0rc1.rst73 Handle fractional time in cookie expiry. Patch by ssh.
/external/oboe/src/flowgraph/resampler/
DREADME.md44 You cannot generate a fractional number of frames. So the resampler will sometimes generate 1044 fr…

123456