HomeSort by relevance Sort by last modified time
    Searched full:least (Results 101 - 125 of 11789) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
valarray_array.tcc 57 // at least n true elements. a must contain at least n elements and
82 // must contain at least n true elements. b must have at least as
85 // at least 15 elements.
108 // k must contain at least n true elements. a and b must have at
109 // least as many elements as the index of the nth true element of m.
187 // have at least n true elements and a must have at least as many
190 // at least 15 elements
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
valarray_array.tcc 60 // at least n true elements. a must contain at least n elements and
85 // must contain at least n true elements. b must have at least as
88 // at least 15 elements.
111 // k must contain at least n true elements. a and b must have at
112 // least as many elements as the index of the nth true element of m.
190 // have at least n true elements and a must have at least as many
193 // at least 15 elements
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
valarray_array.tcc 60 // at least n true elements. a must contain at least n elements and
85 // must contain at least n true elements. b must have at least as
88 // at least 15 elements.
111 // k must contain at least n true elements. a and b must have at
112 // least as many elements as the index of the nth true element of m.
190 // have at least n true elements and a must have at least as many
193 // at least 15 elements
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
valarray_array.tcc 60 // at least n true elements. a must contain at least n elements and
85 // must contain at least n true elements. b must have at least as
88 // at least 15 elements.
111 // k must contain at least n true elements. a and b must have at
112 // least as many elements as the index of the nth true element of m.
190 // have at least n true elements and a must have at least as many
193 // at least 15 elements
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
valarray_array.tcc 60 // at least n true elements. a must contain at least n elements and
85 // must contain at least n true elements. b must have at least as
88 // at least 15 elements.
111 // k must contain at least n true elements. a and b must have at
112 // least as many elements as the index of the nth true element of m.
190 // have at least n true elements and a must have at least as many
193 // at least 15 elements
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
valarray_array.tcc 59 // at least n true elements. a must contain at least n elements and
84 // must contain at least n true elements. b must have at least as
87 // at least 15 elements.
110 // k must contain at least n true elements. a and b must have at
111 // least as many elements as the index of the nth true element of m.
189 // have at least n true elements and a must have at least as many
192 // at least 15 elements
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
valarray_array.tcc 59 // at least n true elements. a must contain at least n elements and
84 // must contain at least n true elements. b must have at least as
87 // at least 15 elements.
110 // k must contain at least n true elements. a and b must have at
111 // least as many elements as the index of the nth true element of m.
189 // have at least n true elements and a must have at least as many
192 // at least 15 elements
    [all...]
  /docs/source.android.com/src/devices/
tuning.jd 51 recommend using a cache large enough to hold several screens worth of 32-bit textures (for instance, on a 1280x800 display, a full screen buffer uses about 4 MB so the cache should be at least 20 MB.)</td>
60 on a 1280x800 display, a full screen buffer uses about 4 MB, so the cache should be at least 16 MB.</td>
68 cache large enough to hold at least twelve gradients.</td>
85 cache large enough to hold at least one screen worth of 32-bit textures. For instance,
86 on a 1280x800 display, a full screen buffer uses about 4 MB, so the cache should be at least 4 MB.</td>
95 large enough to hold at least one 8-bit screen. For instance, on a 1280x800 display,
96 a full screen buffer uses about 1 MB, so the cache should be at least 1 MB.</td>
103 using a cache large enough to hold two screens worth of 8-bit textures. For instance, on a 1280x800 display, a full screen buffer uses about 1 MB, so the cache should be at least 2 MB.</td>
109 <td>Defines the size, in megabytes, of the render buffers cache per process. It is recommended to use a cache large enough to hold twice the screen in 8 bits. For instance, on a 1280x800 display, a full screen buffer uses about 1 MB so the cache should be at least 2 MB. The cache can be smaller if the device supports 4 bits or 1 bit stencil buffers.</td>
122 We recommend using at least 1024 pixels but at most 2048 pixels. You should also use a power of two value.</td
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
IntsTest.java 47 private static final int LEAST = Integer.MIN_VALUE;
51 { LEAST, (int) -1, (int) 0, (int) 1, GREATEST };
64 assertCastFails(LEAST - 1L);
74 assertEquals(LEAST, Ints.saturatedCast(LEAST - 1L));
76 assertEquals(LEAST, Ints.saturatedCast(Long.MIN_VALUE));
181 assertEquals(LEAST, Ints.max(LEAST));
197 assertEquals(LEAST, Ints.min(LEAST));
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
ConvexHull.cpp 76 int least = yMin ^ mask; local
79 order[1] = least;
81 // see if mid value is on same side of line (least, most) as yMin
83 if (!rotate(cubic, least, most, midPath)) { // ! if cbc[least]==cbc[most]
87 int midSides = side(midPath[yMin].y - midPath[least].y);
88 midSides ^= side(midPath[midX].y - midPath[least].y);
  /external/skia/experimental/Intersection/
ConvexHull.cpp 76 int least = yMin ^ mask; local
79 order[1] = least;
81 // see if mid value is on same side of line (least, most) as yMin
83 if (!rotate(cubic, least, most, midPath)) { // ! if cbc[least]==cbc[most]
87 int midSides = side(midPath[yMin].y - midPath[least].y);
88 midSides ^= side(midPath[midX].y - midPath[least].y);
  /cts/tests/tests/view/res/menu/
category_order.xml 45 android:title="Last least often" />
49 android:title="Middle least often" />
53 android:title="First least often" />
  /external/chromium_org/third_party/skia/gyp/
freetype.gyp 21 # Both Android and NaCl provide at least FreeType 2.4.0
44 # The font host requires at least FreeType 2.3.0
56 # Android provides at least FreeType 2.4.0
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
mingw.h 49 // least 0x0400 for mutex.h to have access to TryLock, and at least
59 // work as well as native windows spinlocks (at least for us). So
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
mingw.h 49 // least 0x0400 for mutex.h to have access to TryLock, and at least
59 // work as well as native windows spinlocks (at least for us). So
  /external/libnfc-nxp/src/
phLlcNfc_Frame.h 144 * \retval NFCSTATUS_INVALID_PARAMETER At least one parameter of the function is invalid.
161 * \retval NFCSTATUS_INVALID_PARAMETER At least one parameter of the function is invalid.
180 * \retval NFCSTATUS_INVALID_PARAMETER At least one parameter of the function is invalid.
201 * \retval NFCSTATUS_INVALID_PARAMETER At least one parameter of the function is invalid.
223 * \retval NFCSTATUS_INVALID_PARAMETER At least one parameter of the function is invalid.
247 * \retval NFCSTATUS_INVALID_PARAMETER At least one parameter of the function is invalid.
272 * \retval NFCSTATUS_INVALID_PARAMETER At least one parameter of the function is invalid.
315 * \retval NFCSTATUS_INVALID_PARAMETER At least one parameter of the function is invalid.
337 * \retval NFCSTATUS_INVALID_PARAMETER At least one parameter of the function is invalid.
358 * \retval NFCSTATUS_INVALID_PARAMETER At least one parameter of the function is invalid
    [all...]
  /external/skia/gyp/
freetype.gyp 21 # Both Android and NaCl provide at least FreeType 2.4.0
44 # The font host requires at least FreeType 2.3.0
56 # Android provides at least FreeType 2.4.0
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_refcounts.py 44 # the CFuncPtr instance holds atr least one refcount on func:
61 # the CFuncPtr instance holds atr least one refcount on func:
74 # the CFuncPtr instance holds atr least one refcount on func:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_refcounts.py 44 # the CFuncPtr instance holds atr least one refcount on func:
61 # the CFuncPtr instance holds atr least one refcount on func:
74 # the CFuncPtr instance holds atr least one refcount on func:
  /development/samples/ApiDemos/res/values-v19/
bools.xml 18 <!-- This resource is true if running under at least KitKat
  /development/samples/ApiDemos/res/values-v20/
bools.xml 18 <!-- This resource is true if running under at least L-Release
  /external/chromium_org/ash/audio/
sounds.h 18 // sound identified by |key| iff at least one of the following
  /external/chromium_org/ash/display/
projecting_observer_chromeos.h 29 // True if at least one output is internal. This value is updated when
  /external/chromium_org/chrome/browser/extensions/api/log_private/
syslog_parser.cc 43 << "Error when parsing data. Expect: At least 3 tokens. Actual: 0";
53 << "Error when parsing data. Expect: At least 3 tokens. Actual: 1";
58 << "Error when parsing data. Expect: At least 3 tokens. Actual: 2";
90 << "Error when parsing data. Expect: At least 1 token. Actual: 0";
  /external/chromium_org/chrome/browser/ui/startup/
startup_types.h 22 // been run at least once on the system.

Completed in 958 milliseconds

1 2 3 45 6 7 8 91011>>