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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
sce4.asm 2 [allocstack 8] ; smallest value
3 [setframe rbp, 0] ; smallest value
sce4.masm 5 .allocstack 8 ; smallest value
6 .setframe rbp, 0 ; smallest value
  /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;
version_set_test.cc 25 void Add(const char* smallest, const char* largest,
30 f->smallest = InternalKey(smallest, smallest_seq, kTypeValue);
41 bool Overlaps(const char* smallest, const char* largest) {
43 Slice s(smallest != NULL ? smallest : "");
46 (smallest != NULL ? &s : NULL),
version_set.cc 109 ucmp->Compare(*user_key, f->smallest.user_key()) < 0);
289 if (ucmp->Compare(user_key, f->smallest.user_key()) >= 0 &&
312 if (ucmp->Compare(user_key, f->smallest.user_key()) < 0) {
354 if (ucmp->Compare(user_key, f->smallest.user_key()) >= 0 &&
372 if (ucmp->Compare(user_key, tmp2->smallest.user_key()) < 0) {
540 const Slice file_start = f->smallest.user_key();
582 r.append(files[i]->smallest.DebugString());
596 // Helper to sort by v->files_[file_number].smallest
601 int r = internal_comparator->Compare(f1->smallest, f2->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/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;
  /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/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;
  /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/chromium_org/third_party/lzma_sdk/
Lzma2Dec.h 39 LZMA_FINISH_ANY - use smallest number of input bytes
63 LZMA_FINISH_ANY - use smallest number of input bytes
  /external/lzma/C/
Lzma2Dec.h 39 LZMA_FINISH_ANY - use smallest number of input bytes
63 LZMA_FINISH_ANY - use smallest number of input bytes
  /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));
  /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

Completed in 452 milliseconds

1 2 3 4 5 6 7 8 91011>>