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

1 2

  /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/chromium_org/third_party/leveldatabase/src/table/
merger.cc 65 // the smallest child and key() == current_->key(). Otherwise,
156 IteratorWrapper* smallest = NULL; local
160 if (smallest == NULL) {
161 smallest = child;
162 } else if (comparator_->Compare(child->key(), smallest->key()) < 0) {
163 smallest = child;
167 current_ = smallest;
  /external/chromium_org/third_party/mesa/src/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;
  /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;
  /cts/tests/tests/display/src/android/display/cts/
DisplayTest.java 161 Point smallest = new Point(); local
163 display.getCurrentSizeRange(smallest, largest);
165 assertEquals(SECONDARY_DISPLAY_WIDTH, smallest.x);
166 assertEquals(SECONDARY_DISPLAY_HEIGHT, smallest.y);
  /external/chromium_org/third_party/leveldatabase/src/db/
version_edit.h 22 InternalKey smallest; // Smallest internal key served by table member in struct:leveldb::FileMetaData
61 // REQUIRES: "smallest" and "largest" are smallest and largest keys in file
64 const InternalKey& smallest,
69 f.smallest = smallest;
db_impl.cc 64 InternalKey smallest, largest; member in struct:leveldb::DBImpl::CompactionState::Output
487 const Slice min_user_key = meta.smallest.user_key();
493 meta.smallest, meta.largest);
692 f->smallest, f->largest);
767 out.smallest.Clear();
850 out.number, out.file_size, out.smallest, out.largest);
960 compact->current_output()->smallest.DecodeFrom(key);
    [all...]
  /external/chromium_org/third_party/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/glide/library/tests/src/com/bumptech/glide/load/engine/bitmap_recycle/
SizeStrategyTest.java 71 Bitmap smallest = Bitmap.createBitmap(100, 100, Bitmap.Config.ARGB_8888); local
76 strategy.put(smallest);
79 assertEquals(smallest, strategy.get(99, 99, Bitmap.Config.ARGB_8888));
  /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/chromium_org/content/browser/indexed_db/leveldb/
leveldb_transaction.cc 407 LevelDBIterator* smallest = 0; local
410 smallest = data_iterator_.get();
413 if (!smallest ||
414 comparator_->Compare(db_iterator_->Key(), smallest->Key()) < 0)
415 smallest = db_iterator_.get();
418 current_ = smallest;
  /external/chromium_org/third_party/skia/tests/
PathOpsCubicLineIntersectionIdeas.cpp 193 double smallest = SkTMin(allRoots[0], allRoots[1]); local
195 smallest = SkTMin(smallest, allRoots[2]);
197 SK_ALWAYSBREAK(smallest < 0);
198 SK_ALWAYSBREAK(smallest >= -1);
PathOpsAngleIdeas.cpp 53 int smallest = -1; local
65 smallest = idx;
69 REPORTER_ASSERT(reporter, smallest >= 0);
71 return i[1][smallest];
    [all...]
SkpSkGrTest.cpp 308 int smallest = SK_MaxS32; local
311 if (smallest > data->fError[index]) {
312 smallest = data->fError[index];
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_pixels.c 316 unsigned int smallest; local
322 smallest = ~0;
328 if ( distance < smallest ) {
333 smallest = distance;
  /external/skia/tests/
PathOpsCubicLineIntersectionIdeas.cpp 193 double smallest = SkTMin(allRoots[0], allRoots[1]); local
195 smallest = SkTMin(smallest, allRoots[2]);
197 SK_ALWAYSBREAK(smallest < 0);
198 SK_ALWAYSBREAK(smallest >= -1);
PathOpsAngleIdeas.cpp 53 int smallest = -1; local
65 smallest = idx;
69 REPORTER_ASSERT(reporter, smallest >= 0);
71 return i[1][smallest];
    [all...]
SkpSkGrTest.cpp 310 int smallest = SK_MaxS32; local
313 if (smallest > data->fError[index]) {
314 smallest = data->fError[index];
  /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;
  /external/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobsdiff.c 238 /* Recompress buf of size buf_len using bzip2 or gzip. The smallest version is
239 * used. The original uncompressed variant may be the smallest. Returns a
242 * smallest, it is freed. The caller must free any buf after this function
254 char smallest; local
256 smallest = 1;
264 smallest = 2;
283 smallest = 3;
311 smallest = 4;
325 if (smallest != 1) {
329 return smallest;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_execute.c 1372 const float largest = 1.884467e+19, smallest = 5.42101e-20; local
    [all...]
  /external/mesa3d/src/mesa/program/
prog_execute.c 1372 const float largest = 1.884467e+19, smallest = 5.42101e-20; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
VaryingConfiguration.java 249 double smallest = 100; local
259 if (size <= smallest) {
260 smallest = size;
265 double inchesPerBucket = (biggest - smallest) / bucketCount;
268 int overriddenBucket = (int) ((overriddenSize - smallest) / inchesPerBucket);
270 double from = inchesPerBucket * bucket + 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...]

Completed in 1600 milliseconds

1 2