HomeSort by relevance Sort by last modified time
    Searched full:maxsize (Results 276 - 300 of 831) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_support.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_support.py     [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
strsignal.c 370 int maxsize; local
376 maxsize = MAX (sys_nsig, num_signal_names);
377 return (maxsize - 1);
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebSettingsTest.java 355 int maxSize = mSettings.getDefaultFontSize();
357 assertTrue(maxSize > defaultSize);
362 assertTrue(minSize < maxSize);
376 int maxSize = mSettings.getDefaultFixedFontSize();
378 assertTrue(maxSize > defaultSize);
383 assertTrue(minSize < maxSize);
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Cell.java 247 public Cell<T> maxSize (Value size) {
255 public Cell<T> maxSize (Value width, Value height) {
276 public Cell<T> maxSize (float size) {
277 maxSize(new Fixed(size));
282 public Cell<T> maxSize (float width, float height) {
283 maxSize(new Fixed(width), new Fixed(height));
  /cts/tests/tests/media/src/android/media/cts/
EncodeVirtualDisplayWithCompositionTest.java 409 Size maxSize = getMaxSupportedEncoderSize();
410 if (maxSize == null) {
422 mEncodingSurface = encodingHelper.startEncoding(maxSize.getWidth(), maxSize.getHeight(),
428 compositor.startComposition(mEncodingSurface, maxSize.getWidth(), maxSize.getHeight(),
438 maxSize.getWidth()/numDisplays, maxSize.getHeight());
    [all...]
  /external/aac/libAACenc/src/
aacEnc_ram.h 156 #define maxSize(a,b) ( ((a)>(b)) ? (a) : (b) )
177 #define BUF_SIZE_1 ( ALIGN_SIZE(maxSize(sizeof(PSY_DYNAMIC), \
  /external/chromium-trace/catapult/third_party/gsutil/third_party/six/
CHANGES 222 - Issue #11: Fix maxsize support on Jython.
239 - Fix six.MAXSIZE on platforms where sizeof(long) != sizeof(Py_ssize_t).
  /external/chromium-trace/catapult/third_party/six/
CHANGES 238 - Issue #11: Fix maxsize support on Jython.
255 - Fix six.MAXSIZE on platforms where sizeof(long) != sizeof(Py_ssize_t).
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_HighLevelEncoder.cpp 72 CBC_Dimension* maxSize,
77 context.setSizeConstraints(minSize, maxSize);
  /packages/apps/Dialer/src/com/android/dialer/util/
ExpirableCache.java 263 public static <K, V> ExpirableCache<K, V> create(int maxSize) {
264 return create(new LruCache<K, CachedValue<V>>(maxSize));
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
AudioRecordView.java 250 final int maxSize = MmsConfig.get(mHostInterface.getConversationSelfSubId())
254 AudioRecordView.this, maxSize)) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
DrawableDownloader.java 207 * trim memory cache to 0~1 * maxSize
213 mMemoryCache.trimToSize((int) (amount * mMemoryCache.maxSize()));
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 117 // is not performed. MaxSize is turned into unswitching quota for
120 // processed, so that MaxSize will return to its previous
121 // value. So in most cases MaxSize will equal the Threshold flag
123 // MaxSize will have a smaller value while processing nested loops
126 // FIXME: The way that MaxSize works is subtle and depends on the
129 // way of doing what MaxSize does.
130 unsigned MaxSize;
135 MaxSize(Threshold) {}
297 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation);
299 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount
    [all...]
  /external/deqp/modules/gles31/functional/
es31fNegativeBufferApiTests.cpp     [all...]
  /frameworks/av/services/camera/libcameraservice/api1/client2/
Parameters.cpp     [all...]
  /build/tools/droiddoc/templates-ndk/
sample.cs 56 <?cs # embed image/videos if below maxsize (show message otherwise), else display source code ?>
  /build/tools/droiddoc/templates-sdk/
sample.cs 51 <?cs # embed image/videos if below maxsize (show message otherwise), else display source code ?>
  /cts/tests/camera/src/android/hardware/camera2/cts/
AllocationTest.java 533 final Size maxSize = getMaxSize(
536 try (ScriptGraph scriptGraph = createGraphForYuvCroppedMeans(maxSize)) {
596 final Size maxSize = getMaxSize(
609 try (ScriptGraph scriptGraph = createGraphForYuvCroppedMeans(maxSize)) {
    [all...]
  /external/autotest/client/site_tests/hardware_SAT/
hardware_SAT.py 86 if sys.maxsize < 2**32 and mbytes > 2047:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
_compat.py 26 MAX_INT = sys.maxsize
  /external/deqp/modules/gles2/functional/
es2fBufferWriteTests.cpp 433 const int maxSize = 32*1024;
469 const int size = rnd.getInt(minSize, maxSize);
665 const int maxSize = 65536;
677 spec->size = rnd.getInt(minSize, maxSize);
  /external/deqp/modules/gles3/functional/
es3fBufferWriteTests.cpp 433 const int maxSize = 32*1024;
481 const int size = rnd.getInt(minSize, maxSize);
665 const int maxSize = 65536;
677 spec->size = rnd.getInt(minSize, maxSize);
  /external/eigen/Eigen/src/Eigenvalues/
Tridiagonalization.h 76 MaxSize = MatrixType::MaxRowsAtCompileTime,
77 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : (MaxSize > 1 ? MaxSize - 1 : 1)
  /external/libnl/lib/
addr.c 161 * @arg maxsize Maximum size of the binary address.
164 struct nl_addr *nl_addr_alloc(size_t maxsize)
168 addr = calloc(1, sizeof(*addr) + maxsize);
173 addr->a_maxsize = maxsize;

Completed in 1325 milliseconds

<<11121314151617181920>>