HomeSort by relevance Sort by last modified time
    Searched defs:quantize (Results 1 - 23 of 23) sorted by null

  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/
quantization_util_test.cc 26 auto quantize = [](double d) { local
33 EXPECT_DEATH(quantize(-0.1), "");
34 EXPECT_DEATH(quantize(0.0), "");
35 EXPECT_THAT(quantize(0.25), Pair(1073741824, 1));
39 EXPECT_THAT(quantize(0.50 - 5e-9), Pair(2147483627, 1));
40 EXPECT_THAT(quantize(0.50 - 1e-10), Pair(1073741824, 0));
41 EXPECT_THAT(quantize(0.50), Pair(1073741824, 0));
43 EXPECT_THAT(quantize(0.75), Pair(1610612736, 0));
44 EXPECT_THAT(quantize(1 - 1e-9), Pair(2147483646, 0));
48 EXPECT_DEATH(quantize(1 - 1e-15), "")
54 auto quantize = [](double d) { local
77 auto quantize = [](double beta, double scale, int integer_bits) { local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
DepthTransform.java 42 public int quantize(float depth); method in interface:DepthTransform
  /frameworks/base/core/java/com/android/internal/graphics/palette/
Quantizer.java 25 void quantize(final int[] pixels, final int maxColors, final Palette.Filter[] filters); method in interface:Quantizer
VariationalKMeansQuantizer.java 71 * @param pixels Pixels to quantize.
76 public void quantize(int[] pixels, int maxColors, Palette.Filter[] filters) { method in class:VariationalKMeansQuantizer
ColorCutQuantizer.java 91 public void quantize(final int[] pixels, final int maxColors, final Palette.Filter[] filters) { method in class:ColorCutQuantizer
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
DepthTransform.java 29 public int quantize(float depth); method in interface:DepthTransform
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/image/
RangeInverseDepthTransform.java 52 public int quantize(float value) { method in class:RangeInverseDepthTransform
RangeLinearDepthTransform.java 53 public int quantize(float value) { method in class:RangeLinearDepthTransform
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/image/
RangeInverseDepthTransform.java 38 public int quantize(float value) { method in class:RangeInverseDepthTransform
RangeLinearDepthTransform.java 39 public int quantize(float value) { method in class:RangeLinearDepthTransform
  /external/adhd/scripts/volume_tuning/
volume.js 198 function quantize(v) { function
260 result.push(quantize(interpolate(x)));
  /external/tensorflow/tensorflow/contrib/lite/kernels/
kernel_util.cc 53 auto quantize = [scale, zero_point](float f) { local
58 *act_min = std::max(qmin, quantize(0.0));
61 *act_min = std::max(qmin, quantize(0.0));
62 *act_max = std::min(qmax, quantize(6.0));
64 *act_min = std::max(qmin, quantize(-1.0));
65 *act_max = std::min(qmax, quantize(1.0));
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
depthstencil.h 101 float quantize = (float)((1 << depthBpc) - 1); local
102 simdscalar result = _simd_mul_ps(depth, _simd_set1_ps(quantize));
108 result = _simd_div_ps(result, _simd_set1_ps(quantize));
112 result = _simd_mul_ps(result, _simd_set1_ps(1.0f / quantize));
  /external/libjpeg-turbo/
jcdctmgr.c 44 METHODDEF(void) quantize (JCOEFPTR, DCTELEM *, DCTELEM *);
52 quantize_method_ptr quantize; member in struct:__anon25006
269 fdct->quantize == jsimd_quantize)
270 fdct->quantize = quantize;
312 fdct->quantize == jsimd_quantize)
313 fdct->quantize = quantize;
404 * Quantize/descale the coefficients, and store into coef_blocks[].
408 quantize (JCOEFPTR coef_block, DCTELEM *divisors, DCTELEM *workspace function
    [all...]
  /external/tensorflow/tensorflow/python/ops/
array_ops.py 71 @@quantize
2704 def quantize(input, # pylint: disable=redefined-builtin function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
decimal.py 2394 def quantize(self, exp, rounding=None, context=None, watchexp=True): member in class:Decimal
5017 def quantize(self, a, b): member in class:Context
    [all...]
  /external/python/cpython2/Lib/
decimal.py 2420 def quantize(self, exp, rounding=None, context=None, watchexp=True): member in class:Decimal
5045 def quantize(self, a, b): member in class:Context
    [all...]
  /external/python/cpython3/Lib/
_pydecimal.py 2573 def quantize(self, exp, rounding=None, context=None): member in class:Decimal
5258 def quantize(self, a, b): member in class:Context
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
decimal.py 2422 def quantize(self, exp, rounding=None, context=None, watchexp=True): member in class:Decimal
5045 def quantize(self, a, b): member in class:Context
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
decimal.py 2422 def quantize(self, exp, rounding=None, context=None, watchexp=True): member in class:Decimal
5045 def quantize(self, a, b): member in class:Context
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 2422 def quantize(self, exp, rounding=None, context=None, watchexp=True): member in class:Decimal
5045 def quantize(self, a, b): member in class:Context
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 2422 def quantize(self, exp, rounding=None, context=None, watchexp=True): member in class:Decimal
5045 def quantize(self, a, b): member in class:Context
    [all...]
  /external/ImageMagick/Magick++/lib/
Image.cpp 517 // Quantize to create PseudoClass color map
520 quantize();
3916 void Magick::Image::quantize(const bool measureError_) function in class:Magick::Image
    [all...]

Completed in 1530 milliseconds