/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;
|
vector.h | 55 #define AVECTOR_REALLOC(obj,name,newMax) \ 57 AARRAY_RENEW((obj)->name,newMax); \ 58 (obj)->max_##name = (newMax); \
|
reflist.c | 74 int newmax; local 83 newmax = oldmax; 84 while (newmax < newcount) 85 newmax += (newmax >> 1) + 4; 87 AARRAY_RENEW(items, newmax); 93 l->max = (uint16_t) newmax;
|
ini.c | 97 int newMax = oldMax + (oldMax >> 1) + 4; 99 AARRAY_RENEW(i->pairs, newMax); 100 i->maxPairs = newMax;
|
/packages/apps/Settings/src/com/android/settings/widget/ |
ChartDataUsageView.java | 222 long newMax = 0; 227 newMax = max * 11 / 10; 230 newMax = max * 9 / 10; 232 newMax = max; 241 newMax = Math.max(maxDefault, newMax); 244 if (newMax != mVertMax) { 245 mVertMax = newMax; 247 final boolean changed = mVert.setBounds(0L, newMax); 248 mSweepWarning.setValidRange(0L, newMax); [all...] |
/external/e2fsprogs/e2fsck/ |
profile_helpers.c | 91 int newmax; local 94 newmax = list->max + 10; 95 newlist = realloc(list->list, newmax * sizeof(char *)); 98 list->max = newmax;
|
/frameworks/base/core/java/android/widget/ |
RatingBar.java | 217 final float newMax = mNumStars / stepSize; 218 final int newProgress = (int) (newMax / getMax() * getProgress()); 219 setMax((int) newMax);
|
/external/skia/src/views/ |
SkProgressBarView.cpp | 98 e.setS32("newMax", max);
|
/libcore/luni/src/main/java/java/lang/ |
ThreadGroup.java | 573 * @param newMax the new maximum priority to be set 580 public final void setMaxPriority(int newMax) { 581 if (newMax <= this.maxPriority) { 582 if (newMax < Thread.MIN_PRIORITY) { 583 newMax = Thread.MIN_PRIORITY; 586 int parentPriority = parent == null ? newMax : parent.getMaxPriority(); 587 this.maxPriority = parentPriority <= newMax ? parentPriority : newMax; 590 group.setMaxPriority(newMax);
|
/external/qemu/distrib/sdl-1.2.15/src/audio/symbian/ |
streamplayer.cpp | 173 const TReal newMax = MaxVolume(); 176 const TReal newvolume = (newVol * 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; 237 UnicodeString *newStrings = new UnicodeString[newMax]; 258 listMax = 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/mdnsresponder/mDNSPosix/ |
NetMonitor.c | 217 long newMax = list->max + 64; 218 HostEntry *newHosts = realloc(list->hosts, newMax * sizeof(HostEntry)); 221 list->max = newMax; [all...] |
/sdk/traceview/src/com/android/traceview/ |
TimeLineView.java | [all...] |
/external/libvorbis/lib/ |
psytune.c | 236 float ampmax=-9999,newmax; local
|