OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:newMax
(Results
1 - 25
of
27
) sorted by null
1
2
/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
;
/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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRatingBar.java
82
final float
newMax
= mNumStars / stepSize;
83
final int newProgress = (int) (
newMax
/ getMax() * getProgress());
84
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/test/intltest/
colldata.cpp
112
int32_t
newMax
= listMax + CELIST_BUFFER_SIZE;
113
uint32_t *newCEs = NEW_ARRAY(uint32_t,
newMax
);
127
listMax =
newMax
;
193
int32_t
newMax
= listMax + STRING_LIST_BUFFER_SIZE;
194
UnicodeString *newStrings = new UnicodeString[
newMax
];
204
listMax =
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/chromium_org/third_party/icu/source/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
];
259
listMax =
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
...]
/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/chromium_org/third_party/sqlite/src/src/
vdbe.c
[
all
...]
/prebuilts/devtools/tools/lib/
traceview.jar
jfreechart-1.0.9.jar
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
/external/sqlite/dist/orig/
sqlite3.c
[
all
...]
/external/sqlite/dist/
sqlite3.c
[
all
...]
/prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar
/prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/6/
android.jar
/prebuilts/sdk/7/
android.jar
Completed in 1154 milliseconds
1
2