OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:arrSize
(Results
1 - 5
of
5
) sorted by null
/libcore/luni/src/main/java/org/apache/harmony/luni/util/
TwoKeyHashMap.java
44
private int
arrSize
;
87
arrSize
= initialCapacity > 0 ? initialCapacity : 1;
88
threshold = (int) (
arrSize
* loadFactor);
89
arr = new Entry[
arrSize
+ 1];
143
int index =
arrSize
;
157
int index = (hash & 0x7fffffff) %
arrSize
;
186
int newArrSize = (
arrSize
+ 1) * 2 + 1;
204
newArr[newArrSize] = arr[
arrSize
]; // move null entry
205
arrSize
= newArrSize;
209
if (
arrSize
== Integer.MAX_VALUE)
[
all
...]
/external/opencv/cvaux/src/
cvcalibfilter.cpp
98
int i,
arrSize
;
143
arrSize
= etalonParamCount * sizeof(etalonParams[0]);
144
etalonParams = (double*)cvAlloc(
arrSize
);
147
arrSize
= pointCount * sizeof(etalonPoints[0]);
153
etalonPoints = (CvPoint2D32f*)cvAlloc(
arrSize
);
178
memcpy( etalonParams, params,
arrSize
);
179
memcpy( etalonPoints, points,
arrSize
);
627
int
arrSize
;
637
arrSize
= cameraCount * sizeof(params[0]);
639
cvInitMatHeader( &mat, 1, cameraCount * (
arrSize
/sizeof(float))
[
all
...]
/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
WapPushTest.java
[
all
...]
/external/valgrind/main/VEX/
test_main.c
[
all
...]
/external/valgrind/main/memcheck/
mc_translate.c
[
all
...]
Completed in 520 milliseconds