HomeSort by relevance Sort by last modified time
    Searched refs:maximum (Results 26 - 50 of 411) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/av/include/cpustats/
CentralTendencyStatistics.h 42 // return the maximum of all samples so far
43 double maximum() const { return mMaximum; } function in class:CentralTendencyStatistics
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 180 int maximum = sx; local
182 if (selection + thumb > maximum) {
183 selection = maximum - thumb;
189 mScrollbar.setValues(selection, mScrollbar.getMinimum(), maximum, thumb, mScrollbar
  /external/libgdx/gdx/src/com/badlogic/gdx/math/collision/
BoundingBox.java 25 /** Encapsulates an axis aligned bounding box represented by a minimum and a maximum Vector. Additionally you can query for the
114 /** @param out The {@link Vector3} to receive the maximum values.
120 /** Constructs a new bounding box with the minimum and maximum vector set to zeros. */
132 /** Constructs the new bounding box using the given minimum and maximum vector.
135 * @param maximum The maximum vector */
136 public BoundingBox (Vector3 minimum, Vector3 maximum) {
137 this.set(minimum, maximum);
148 /** Sets the given minimum and maximum vector.
151 * @param maximum The maximum vector
    [all...]
  /external/freetype/include/freetype/
ftmm.h 71 /* maximum :: The axis's maximum design coordinate. */
77 FT_Long maximum; member in struct:FT_MM_Axis_
131 /* maximum :: The axis's maximum design coordinate. */
146 FT_Fixed maximum; member in struct:FT_Var_Axis_
190 /* num_axis :: The number of axes. The maximum value is~4 for */
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/
ftmm.h 71 /* maximum :: The axis's maximum design coordinate. */
77 FT_Long maximum; member in struct:FT_MM_Axis_
131 /* maximum :: The axis's maximum design coordinate. */
146 FT_Fixed maximum; member in struct:FT_Var_Axis_
190 /* num_axis :: The number of axes. The maximum value is~4 for */
  /external/pdfium/third_party/freetype/include/freetype/
ftmm.h 71 /* maximum :: The axis's maximum design coordinate. */
77 FT_Long maximum; member in struct:FT_MM_Axis_
131 /* maximum :: The axis's maximum design coordinate. */
146 FT_Fixed maximum; member in struct:FT_Var_Axis_
190 /* num_axis :: The number of axes. The maximum value is~4 for */
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftmm.h 71 /* maximum :: The axis's maximum design coordinate. */
77 FT_Long maximum; member in struct:FT_MM_Axis_
131 /* maximum :: The axis's maximum design coordinate. */
146 FT_Fixed maximum; member in struct:FT_Var_Axis_
190 /* num_axis :: The number of axes. The maximum value is~4 for */
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterBasicRepresentation.java 38 public FilterBasicRepresentation(String name, int minimum, int value, int maximum) {
41 mMaximum = maximum;
123 public void setMaximum(int maximum) {
124 mMaximum = maximum;
  /external/opencv3/samples/python2/
gabor_threads.py 35 np.maximum(accum, fimg, accum)
44 np.maximum(accum, fimg, accum)
camshift.py 53 x0, y0 = np.maximum(0, np.minimum([xo, yo], [x, y]))
54 x1, y1 = np.minimum([w, h], np.maximum([xo, yo], [x, y]))
  /frameworks/av/services/audioflinger/
FastMixerDumpState.cpp 127 wall.mean()*1e-6, wall.minimum()*1e-6, wall.maximum()*1e-6,
131 loadNs.mean()*1e-3, loadNs.minimum()*1e-3, loadNs.maximum()*1e-3,
139 kHz.mean()*1e-3, kHz.minimum()*1e-3, kHz.maximum()*1e-3, kHz.stddev()*1e-3);
142 loadMHz.mean(), loadMHz.minimum(), loadMHz.maximum(), loadMHz.stddev());
157 left.mean()*1e-6, left.minimum()*1e-6, left.maximum()*1e-6, left.stddev()*1e-6,
158 right.mean()*1e-6, right.minimum()*1e-6, right.maximum()*1e-6,
  /tools/test/connectivity/acts/tests/google/tel/config/
README.md 8 - **telephony_auto_rerun** - Because testing with live infrastructure sometimes yields flaky results, when no other options are available to mitigate this uncertainty, this key specifies a maximum number of re-runs that will be performed in the event of a test failure. The test will be reported as a 'pass' after the first successful run.
12 - **pass_criteria_call_(3g/volte/2g/wfc)** - The maximum amount of power in mW that can be used in steady state during calling power tests in order to pass the test.
13 - **pass_criteria_idle_(3g/volte/2g/wfc)** - The maximum amount of power in mW that can be used in steady state during idle power tests in order to pass the test.
  /external/ImageMagick/MagickCore/
morphology.h 77 DilateMorphology, /* Maximum Value in Neighbourhood */
120 maximum, member in struct:_KernelInfo
  /external/fec/
viterbi39_av.c 185 int minimum,maximum;
203 maximum = t.s[0];
204 if(maximum-minimum > max_spread){
205 max_spread = maximum-minimum;
212 * The maximum possible spread, found by experiment, for 8 bit symbols is about 3825
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
complexityMeasures.m 38 % Compute each function's maximum complexity in encoding
46 % Compute maximum complexity for a single frame (enc/dec separately and together)
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
wbalance.rs 96 int maximum = max(estimation.r, max(estimation.g, estimation.b));
97 float avg = (minimum + maximum) / 2.f;
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
wbalance.rs 96 int maximum = max(estimation.r, max(estimation.g, estimation.b));
97 float avg = (minimum + maximum) / 2.f;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
wbalance.rs 96 int maximum = max(estimation.r, max(estimation.g, estimation.b));
97 float avg = (minimum + maximum) / 2.f;
  /external/opencv3/modules/core/include/opencv2/core/cuda/
functional.hpp 315 template <typename T> struct maximum : binary_function<T, T, T> struct in namespace:cv::cuda::device
321 __host__ __device__ __forceinline__ maximum() {} function in struct:cv::cuda::device::maximum
322 __host__ __device__ __forceinline__ maximum(const maximum&) {} function in struct:cv::cuda::device::maximum
325 OPENCV_CUDA_IMPLEMENT_MINMAX(maximum, uchar, ::max)
326 OPENCV_CUDA_IMPLEMENT_MINMAX(maximum, schar, ::max)
327 OPENCV_CUDA_IMPLEMENT_MINMAX(maximum, char, ::max)
328 OPENCV_CUDA_IMPLEMENT_MINMAX(maximum, ushort, ::max)
329 OPENCV_CUDA_IMPLEMENT_MINMAX(maximum, short, ::max)
330 OPENCV_CUDA_IMPLEMENT_MINMAX(maximum, int, ::max
    [all...]
  /external/libweave/examples/daemon/ledflasher/
ledflasher.cc 27 "maximum": 3
38 "maximum": 3
  /external/libweave/examples/daemon/speaker/
speaker.cc 43 "maximum": 100
57 "maximum": 100,
  /external/opencv3/modules/cudev/include/opencv2/cudev/expr/
per_element_func.hpp 72 __host__ Expr<BinaryTransformPtrSz<typename PtrTraits<SrcPtr1>::ptr_type, typename PtrTraits<SrcPtr2>::ptr_type, maximum<typename LargerType<typename PtrTraits<SrcPtr1>::value_type, typename PtrTraits<SrcPtr2>::value_type>::type> > >
75 return makeExpr(transformPtr(src1, src2, maximum<typename LargerType<typename PtrTraits<SrcPtr1>::value_type, typename PtrTraits<SrcPtr2>::value_type>::type>()));
  /external/webrtc/tools/matlab/
maxUnwrap.m 9 % max: The maximum value that the sequence can take,
  /packages/experimental/procstatlog/
Android.mk 17 # Build a static binary for maximum portability
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
greg-17.d 37 # Allocating the maximum number of gregs *plus one* is an error, mmo.

Completed in 593 milliseconds

12 3 4 5 6 7 8 91011>>