HomeSort by relevance Sort by last modified time
    Searched full:smallest (Results 1 - 25 of 1579) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/fec/
peakval_av.c 15 vector signed short smallest,largest; local
17 smallest = (vector signed short)(0);
26 smallest = vec_min(smallest,x);
34 smallest = vec_min(smallest,x);
44 smallest = vec_min(smallest,x);
48 largest = vec_max(largest,vec_abs(smallest));
  /external/opencv3/3rdparty/openexr/Imath/
ImathLimits.h 74 // smallest() smallest possible positive value of type T
75 // (for float and double: smallest normalized
78 // epsilon() smallest possible e of type T, for which
121 static T smallest();
137 static char smallest() {return 1;} function in struct:Imath::limits
148 static signed char smallest() {return 1;} function in struct:Imath::limits
159 static unsigned char smallest() {return 1;} function in struct:Imath::limits
170 static short smallest() {return 1;} function in struct:Imath::limits
181 static unsigned short smallest() {return 1; function in struct:Imath::limits
192 static int smallest() {return 1;} function in struct:Imath::limits
203 static unsigned int smallest() {return 1;} function in struct:Imath::limits
214 static long smallest() {return 1;} function in struct:Imath::limits
225 static unsigned long smallest() {return 1;} function in struct:Imath::limits
236 static float smallest() {return FLT_MIN;} function in struct:Imath::limits
247 static double smallest() {return DBL_MIN;} function in struct:Imath::limits
258 static long double smallest() {return LDBL_MIN;} function in struct:Imath::limits
    [all...]
  /external/opencv3/modules/videostab/src/
fast_marching.cpp 97 int l, r, smallest; local
102 smallest = idx;
104 if (l < size_ && narrowBand_[l] < narrowBand_[smallest]) smallest = l;
105 if (r < size_ && narrowBand_[r] < narrowBand_[smallest]) smallest = r;
107 if (smallest == idx)
111 std::swap(indexOf(narrowBand_[idx]), indexOf(narrowBand_[smallest]));
112 std::swap(narrowBand_[idx], narrowBand_[smallest]);
113 idx = smallest;
    [all...]
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialSolver.h 21 * - greatest, smallest complex roots,
22 * - real roots with greatest, smallest absolute real value,
23 * - greatest, smallest real roots.
107 * \returns the complex root with smallest norm.
201 * part smallest than absImaginaryThreshold.
205 * the root with smallest absolute imaginary part is returned instead.
222 * \returns a real root with smallest absolute magnitude.
224 * part smallest than absImaginaryThreshold.
228 * the root with smallest absolute imaginary part is returned instead.
247 * part smallest than absImaginaryThreshold
    [all...]
  /external/icu/icu4c/source/i18n/
fmtableimp.h 29 * Define this constant to the smallest value from those for supported platforms.
digitinterval.h 92 * Sets the least significant inclusive value to smallest. If smallest >= 0
95 void setLeastSignificantInclusive(int32_t smallest) {
96 fSmallestInclusive = smallest < 0 ? smallest : 0;
  /external/mesa3d/src/gallium/drivers/svga/
svga_draw_arrays.c 135 unsigned smallest = 0; local
141 smallest = i;
144 else if (hwtnl->index_cache[prim][i].gen_nr < smallest)
146 smallest = i;
151 assert (smallest != IDX_CACHE_MAX);
153 pipe_resource_reference( &hwtnl->index_cache[prim][smallest].buffer,
157 debug_printf("%s discard smallest %d/%d\n", __FUNCTION__,
158 smallest, smallest_size);
160 i = smallest;
  /development/samples/ApiDemos/src/com/example/android/apis/content/
_index.html 17 <dt><a href="ResourcesSmallestWidth.html">Resources Smallest Width</a></dt>
18 <dd>Shows how you can vary a layout resource based on the device's smallest
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
bounds.hpp 28 static N smallest() { return static_cast<N>(1); } function in class:boost::numeric::boundsdetail::Integral
40 static N smallest() { return limits::min BOOST_PREVENT_MACRO_SUBSTITUTION (); } function in class:boost::numeric::boundsdetail::Float
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
TimeUnit.java 20 /** The ordinal of the unit, in order from largest to smallest. */
62 /** Returns the next smaller time unit, or null if this is the smallest. */
67 /** The list of units, in order from largest to smallest. */
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
TimeUnit.java 18 /** The ordinal of the unit, in order from largest to smallest. */
60 /** Returns the next smaller time unit, or null if this is the smallest. */
65 /** The list of units, in order from largest to smallest. */
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
_heapq.so 
  /development/samples/training/ContactsList/res/values-sw600dp/
bools.xml 19 <!-- On devices with a smallest width of 600dp or more, switch to a two-pane layout.-->
integers.xml 19 <!-- On devices with a smallest width of 600dp or more, the two-pane layout should allocate
  /development/samples/training/ContactsList/res/values-sw600dp-port/
integers.xml 19 <!-- On devices with a smallest width of 600dp or more in portrait orientation, the two-pane
  /external/lzma/C/
Lzma2Dec.h 37 LZMA_FINISH_ANY - use smallest number of input bytes
61 LZMA_FINISH_ANY - use smallest number of input bytes
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
GraphAlgo.py 74 1. D.smallest() returns the value x minimizing D[x]. For this to work correctly,
85 until it is found by smallest() or until the heap is rebuilt.
90 def smallest(self): member in class:_priorityDictionary
92 Find smallest item after removing deleted items from front of heap.
95 raise IndexError("smallest of empty priorityDictionary")
117 x = self.smallest()
  /frameworks/base/core/java/com/android/internal/database/
SortCursor.java 73 String smallest = ""; local
78 if (mCursor == null || current.compareToIgnoreCase(smallest) < 0) {
79 smallest = current;
155 String smallest = ""; local
162 if (smallestIdx < 0 || current.compareToIgnoreCase(smallest) < 0) {
163 smallest = current;
  /packages/apps/Music/src/com/android/music/
SortCursor.java 73 String smallest = ""; local
78 if (mCursor == null || current.compareToIgnoreCase(smallest) < 0) {
79 smallest = current;
155 String smallest = ""; local
162 if (smallestIdx < 0 || current.compareToIgnoreCase(smallest) < 0) {
163 smallest = current;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/resources/manager/
ConfigMatchTest.java 96 null, // smallest width dp
120 null, // smallest width dp
144 null, // smallest width dp
168 null, // smallest width dp
192 null, // smallest width dp
224 null, // smallest width dp
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
SquareFrameLayout.java 54 // Now use the smallest of the measured dimensions for both dimensions
67 // smallest of the two
  /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
SquareFrameLayout.java 54 // Now use the smallest of the measured dimensions for both dimensions
67 // smallest of the two
  /development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/
SquareFrameLayout.java 54 // Now use the smallest of the measured dimensions for both dimensions
67 // smallest of the two
  /external/icu/icu4c/source/common/
patternprops.h 60 * @return The smallest pointer at or after s with a non-white space character.
78 * @return The smallest pointer at or after s with
  /external/speex/libspeex/
stereo.c 151 spx_word32_t largest, smallest; local
178 smallest = e_right;
182 smallest = e_left;
189 smallest = VSHR32(smallest, shift);
190 balance = DIV32(largest, ADD32(smallest, 1));
195 balance=(largest+1.)/(smallest+1.);
216 /*fprintf (stderr, "%d %d %d %d\n", largest, smallest, balance_id, e_ratio);*/

Completed in 560 milliseconds

1 2 3 4 5 6 7 8 91011>>