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

  /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
481 const Slice min_user_key = meta.smallest.user_key();
487 meta.smallest, meta.largest);
691 f->smallest, f->largest);
764 out.smallest.Clear();
847 out.number, out.file_size, out.smallest, out.largest);
957 compact->current_output()->smallest.DecodeFrom(key);
    [all...]
  /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 400 LevelDBIterator* smallest = 0; local
403 smallest = tree_iterator_.get();
406 if (!smallest ||
407 comparator_->Compare(db_iterator_->Key(), smallest->Key()) < 0)
408 smallest = db_iterator_.get();
411 current_ = smallest;
  /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;
  /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...]
  /external/chromium_org/cc/trees/
occlusion_tracker_unittest.cc 4472 typename Types::LayerType* smallest = this->CreateDrawingLayer( local
    [all...]
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 1415 milliseconds