HomeSort by relevance Sort by last modified time
    Searched refs:quantize (Results 1 - 25 of 54) sorted by null

1 2 3

  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
DepthTransform.java 42 public int quantize(float depth); method in interface:DepthTransform
BlurStack.java 166 depthTransform.quantize(focusDepth3D * (1 - depthOfField)));
168 depthTransform.quantize(focusDepth3D * (1 + depthOfField)));
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
DepthTransform.java 29 public int quantize(float depth); method in interface:DepthTransform
BlurStack.java 151 depthTransform.quantize(focusDepth3D * (1 - depthOfField)));
153 depthTransform.quantize(focusDepth3D * (1 + depthOfField)));
DepthImage.java 141 int value = transform.quantize(floatPixels[i]) & 0xFF;
  /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
  /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
  /external/ImageMagick/Magick++/demo/
button.cpp 78 // Quantize to desired colors
82 button.quantize();
demo.cpp 240 example.quantize( );
279 example.quantize( );
337 cout << " quantize ..." << endl;
339 example.label( "Quantize" );
340 example.quantize( );
  /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/libjpeg-turbo/
jcdctmgr.c 44 METHODDEF(void) quantize (JCOEFPTR, DCTELEM *, DCTELEM *);
52 quantize_method_ptr quantize; member in struct:__anon23547
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/sonivox/jet_tools/JetCreator/
JetFile.py 75 SEGMENT_QUANTIZE = 'quantize'
94 def __init__ (self, segname, filename, start=None, end=None, length=None, output=None, quantize=None, jetevents=[], dlsfile=None, dump_file=None, transpose=0, repeat=0, mute_flags=0):
102 self.quantize = quantize
133 def ExtractEvents (self, start, end, length, quantize, chase_controllers):
148 if quantize is not None:
149 quantize = int(quantize)
151 quantize = 0
153 self.Trim(start, end, quantize, chase_controllers=chase_controllers)
    [all...]
JetDebug.py 67 print(segment.quantize)
JetPreview.py 113 self.segment.quantize,
  /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));
  /frameworks/ml/nn/common/
OperationsUtils.cpp 138 auto quantize = [scale, zero_point](float f) {
143 *act_min = std::max(qmin, quantize(0.0));
146 *act_min = std::max(qmin, quantize(0.0));
147 *act_max = std::min(qmax, quantize(6.0));
149 *act_min = std::max(qmin, quantize(-1.0));
150 *act_max = std::min(qmax, quantize(1.0));
  /external/ImageMagick/MagickCore/
Android.mk 59 quantize.c\
  /external/icu/icu4c/source/i18n/
digitlst.h 409 void quantize(const DigitList &amount, UErrorCode &status);
precision.cpp 57 value.quantize(fRoundingIncrement, status);
61 value.quantize(adjustedIncrement, status);
  /external/libvpx/libvpx/vp8/
vp8cx.mk 49 VP8_CX_SRCS-yes += encoder/quantize.h
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_decimal.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_decimal.py     [all...]

Completed in 1625 milliseconds

1 2 3