HomeSort by relevance Sort by last modified time
    Searched full:maxsize (Results 201 - 225 of 717) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/libs/hwui/
TextDropShadowCache.h 153 void setMaxSize(uint32_t maxSize);
TextureCache.h 107 void setMaxSize(uint32_t maxSize);
GradientCache.cpp 107 void GradientCache::setMaxSize(uint32_t maxSize) {
108 mMaxSize = maxSize;
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderBase.h 75 virtual Encode_Status getMaxOutSize(uint32_t *maxSize);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_scanstring.py 105 self.json.decoder.scanstring(b"xxx", sys.maxsize+1)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_format.py 6 maxsize = test_support.MAX_Py_ssize_t variable
293 if maxsize == 2**31-1:
296 "%*d"%(maxsize, -127)
300 raise TestFailed, '"%*d"%(maxsize, -127) should fail'
test_itertools.py 13 maxsize = test_support.MAX_Py_ssize_t variable
14 minsize = -maxsize-1
339 self.assertEqual(list(islice(count(maxsize-5), 10)), range(maxsize-5, maxsize+5))
340 self.assertEqual(list(islice(count(-maxsize-5), 10)), range(-maxsize-5, -maxsize+5))
371 self.assertEqual(take(20, count(maxsize-15, 3)), take(20, range(maxsize-15, maxsize+100, 3))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_scanstring.py 105 self.json.decoder.scanstring(b"xxx", sys.maxsize+1)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_format.py 6 maxsize = test_support.MAX_Py_ssize_t variable
293 if maxsize == 2**31-1:
296 "%*d"%(maxsize, -127)
300 raise TestFailed, '"%*d"%(maxsize, -127) should fail'
test_itertools.py 13 maxsize = test_support.MAX_Py_ssize_t variable
14 minsize = -maxsize-1
339 self.assertEqual(list(islice(count(maxsize-5), 10)), range(maxsize-5, maxsize+5))
340 self.assertEqual(list(islice(count(-maxsize-5), 10)), range(-maxsize-5, -maxsize+5))
371 self.assertEqual(take(20, count(maxsize-15, 3)), take(20, range(maxsize-15, maxsize+100, 3))
    [all...]
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/
omxSP_FFTInit_R_S16.c 96 * (MaxSize/8 + 1). Rest of the values i.e., up to MaxSize are calculated
omxSP_FFTInit_R_S16S32.c 118 * The original twiddle table "armSP_FFT_S32TwiddleTable" is of size (MaxSize/8 + 1)
119 * Rest of the values i.e., upto MaxSize are calculated using the symmetries of sin and cos
omxSP_FFTInit_R_S32.c 116 * The original twiddle table "armSP_FFT_S32TwiddleTable" is of size (MaxSize/8 + 1)
117 * Rest of the values i.e., upto MaxSize are calculated using the symmetries of sin and cos
  /frameworks/opt/bitmap/src/com/android/bitmap/
UnrefedPooledCache.java 222 public NonPooledCache(int maxSize) {
223 super(maxSize);
  /packages/apps/Launcher3/src/com/android/launcher3/
PendingAppWidgetHostView.java 180 int maxSize = LauncherAppState.getInstance().getDynamicGrid()
182 int size = Math.min(maxSize, Math.min(
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
RobustnessTest.java 203 int maxSize = row[i + 1];
208 tableIdx, rowIdx, i + 1, maxSize),
209 maxSize == PREVIEW || maxSize == RECORD ||
210 maxSize == MAXIMUM || maxSize == VGA);
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebSettingsTest.java 354 int maxSize = mSettings.getDefaultFontSize();
356 assertTrue(maxSize > defaultSize);
361 assertTrue(minSize < maxSize);
375 int maxSize = mSettings.getDefaultFixedFontSize();
377 assertTrue(maxSize > defaultSize);
382 assertTrue(minSize < maxSize);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 688 int[] maxSize = new int[1];
690 glGetIntegerv(GL_MAX_TEXTURE_SIZE, maxSize, 0);
695 if(frame.width() > maxSize[0] || frame.height() > maxSize[0]) {
700 maxSize[0] + "x" + maxSize[0]);
  /packages/services/Mms/src/com/android/mms/service/
MmsService.java 773 * @param maxSize maximum number of bytes to read
776 public byte[] readPduFromContentUri(final Uri contentUri, final int maxSize) {
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java 256 for (int maxSize = 1; maxSize < 8; maxSize++) {
257 checkMaximumSize(1, 8, maxSize);
258 checkMaximumSize(2, 8, maxSize);
259 checkMaximumSize(4, 8, maxSize);
260 checkMaximumSize(8, 8, maxSize);
278 private static void checkMaximumSize(int concurrencyLevel, int initialCapacity, long maxSize) {
282 .maximumSize(maxSize));
287 assertTrue("totalCapacity=" + totalCapacity + ", maxSize=" + maxSize, totalCapacity == maxSize)
    [all...]
  /external/svox/pico/lib/
picoos.c 844 void picoos_emGetExceptionMessage(picoos_ExceptionManager this, picoos_char * msg, picoos_uint16 maxsize)
846 picoos_strlcpy(msg,this->curExceptionMessage,maxsize);
886 void picoos_emGetWarningMessage(picoos_ExceptionManager this, picoos_uint8 index, picoos_char * msg, picoos_uint16 maxsize)
889 picoos_strlcpy(msg,this->curWarningMessage[index],maxsize);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_drawpixels.c 669 GLsizei maxSize;
676 maxSize = 1 << (pipe->screen->get_param(pipe->screen,
678 assert(width <= maxSize);
679 assert(height <= maxSize);
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_drawpixels.c 669 GLsizei maxSize;
676 maxSize = 1 << (pipe->screen->get_param(pipe->screen,
678 assert(width <= maxSize);
679 assert(height <= maxSize);
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
OutputGLSLBase.cpp 250 int maxSize;
257 maxSize = leftType.getArraySize() - 1;
261 maxSize = leftType.getNominalSize() - 1;
265 out << "), 0.0, float(" << maxSize << ")))]";
267 out << ", 0, " << maxSize << ")]";
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
AtPhonebook.java 457 // maxSize = currSize + currSize / 2 rounded up to nearest power of 2
460 int maxSize = (currSize < 100) ? 100 : currSize;
461 maxSize += maxSize / 2;
462 return roundUpToPowerOfTwo(maxSize);

Completed in 941 milliseconds

1 2 3 4 5 6 7 891011>>