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

1 2 3

  /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...]
ImathHalfLimits.h 57 static float smallest() {return HALF_MIN;} function in struct:Imath::limits
  /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));
ssebfly27.s 132 # Normalize by finding smallest metric and subtracting it
142 # mm0 contains 8 smallest metrics
  /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/icu/icu4c/source/i18n/
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;
  /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/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;
  /frameworks/base/core/java/com/android/internal/view/
ActionBarPolicy.java 51 final int smallest = config.smallestScreenWidthDp; local
52 if (smallest > 600 || (width > 960 && height > 720) || (width > 720 && height > 960)) {
  /frameworks/support/v7/appcompat/src/android/support/v7/view/
ActionBarPolicy.java 57 final int smallest = ConfigurationHelper.getSmallestScreenWidthDp(res); local
59 if (smallest > 600 || widthDp > 600 || (widthDp > 960 && heightDp > 720)
  /external/libpng/contrib/intel/
filter_sse2_intrinsics.c 213 __m128i smallest = _mm_min_epi16(pc, _mm_min_epi16(pa, pb)); local
216 __m128i nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a,
217 if_then_else(_mm_cmpeq_epi16(smallest, pb), b,
269 __m128i smallest = _mm_min_epi16(pc, _mm_min_epi16(pa, pb)); local
272 __m128i nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a,
273 if_then_else(_mm_cmpeq_epi16(smallest, pb), b,
  /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.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
VaryingConfiguration.java 250 double smallest = 100; local
260 if (size <= smallest) {
261 smallest = size;
266 double inchesPerBucket = (biggest - smallest) / bucketCount;
269 int overriddenBucket = (int) ((overriddenSize - smallest) / inchesPerBucket);
271 double from = inchesPerBucket * bucket + smallest;
  /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);*/
  /external/lz4/examples/
HCStreaming_ringBuffer.c 149 size_t smallest = r0; local
150 if (r1<r0) smallest = r1;
151 result += smallest;
  /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/av/media/libstagefright/foundation/
MediaBufferGroup.cpp 67 size_t smallest = requestedSize; local
73 } else if (buffer->size() < smallest) {
  /external/skia/tests/
PathOpsCubicLineIntersectionIdeas.cpp 193 double smallest = SkTMin(allRoots[0], allRoots[1]); local
195 smallest = SkTMin(smallest, allRoots[2]);
197 SkASSERT_RELEASE(smallest < 0);
198 SkASSERT_RELEASE(smallest >= -1);
  /prebuilts/go/darwin-x86/test/bench/shootout/
meteor-contest.go 617 /* Find smallest and largest solutions */
618 func smallest_largest() (smallest, largest *[50]int8) {
619 smallest = &solutions[0]
623 for j, s := range *smallest {
629 smallest = candidate
653 smallest, largest := smallest_largest()
654 pretty(smallest)
  /prebuilts/go/linux-x86/test/bench/shootout/
meteor-contest.go 617 /* Find smallest and largest solutions */
618 func smallest_largest() (smallest, largest *[50]int8) {
619 smallest = &solutions[0]
623 for j, s := range *smallest {
629 smallest = candidate
653 smallest, largest := smallest_largest()
654 pretty(smallest)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
GridLayoutConverter.java 936 int smallest = iterator.next().mY1; local
947 int smallest = iterator.next().mX1; local
    [all...]
  /cts/tests/tests/display/src/android/display/cts/
DisplayTest.java 242 Point smallest = new Point();
244 display.getCurrentSizeRange(smallest, largest);
246 assertEquals(SECONDARY_DISPLAY_WIDTH, smallest.x);
247 assertEquals(SECONDARY_DISPLAY_HEIGHT, smallest.y);
  /external/tpm2/
Session.c 34 CONTEXT_SLOT smallest = ((CONTEXT_SLOT) ~0); local
48 // value for smallest.
49 if(((CONTEXT_SLOT) (entry - lowBits)) <= smallest)
51 smallest = (entry - lowBits);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/test_ttk/
test_functions.py 245 # smallest (after an empty one) acceptable layout
246 smallest = ttk._format_layoutlist([('a', None)], indent=0)
247 self.assertEqual(smallest,
249 self.assertEqual(smallest[0], 'a')

Completed in 1047 milliseconds

1 2 3