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

  /external/qemu/android/utils/
vector.c 10 unsigned newMax = oldMax;
22 while (newMax < newCount) {
23 unsigned newMax2 = newMax + (newMax >> 1) + 4;
24 if (newMax2 < newMax || newMax2 > bigMax)
26 newMax = newMax2;
29 *items = _android_array_realloc( *items, itemSize, newMax );
30 *pMaxItems = newMax;
ini.c 97 int newMax = oldMax + (oldMax >> 1) + 4;
99 AARRAY_RENEW(i->pairs, newMax);
100 i->maxPairs = newMax;
  /frameworks/base/core/java/android/widget/
RatingBar.java 214 final float newMax = mNumStars / stepSize;
215 final int newProgress = (int) (newMax / getMax() * getProgress());
216 setMax((int) newMax);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
NamespaceMappings.java 399 int newMax = 2*max + 1;
400 Object[] newArray = new Object[newMax];
402 max = newMax;
  /external/icu4c/i18n/
colldata.cpp 132 int32_t newMax = listMax + CELIST_BUFFER_SIZE;
138 uint32_t *newCEs = NEW_ARRAY(uint32_t, newMax);
152 listMax = newMax;
236 int32_t newMax = listMax + STRING_LIST_BUFFER_SIZE;
238 UnicodeString *newStrings = new UnicodeString[newMax];
254 listMax = newMax;
  /packages/apps/Settings/src/com/android/settings/widget/
ChartDataUsageView.java 219 long newMax = 0;
224 newMax = max * 11 / 10;
227 newMax = max * 9 / 10;
229 newMax = max;
238 newMax = Math.max(maxDefault, newMax);
241 if (newMax != mVertMax) {
242 mVertMax = newMax;
244 final boolean changed = mVert.setBounds(0L, newMax);
245 mSweepWarning.setValidRange(0L, newMax);
    [all...]
  /sdk/traceview/src/com/android/traceview/
TimeLineView.java     [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/15/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 299 milliseconds