HomeSort by relevance Sort by last modified time
    Searched refs:mapSize (Results 1 - 10 of 10) sorted by null

  /frameworks/base/core/jni/
android_ddm_DdmHandleNativeHeap.cpp 42 size_t mapSize;
79 uint8_t* ptr = mapsFile + header.mapSize;
87 header.mapSize += amount;
88 } while (header.mapSize < MAPS_FILE_SIZE);
90 ALOGD("**** read %d bytes from '%s'", (int) header.mapSize, path);
100 jbyteArray array = env->NewByteArray(sizeof(Header) + header.mapSize + header.allocSize);
108 // ALOGD("*** mapSize: %d allocSize: %d allocInfoSize: %d totalMemory: %d",
109 // header.mapSize, header.allocSize, header.allocInfoSize, header.totalMemory);
114 if (header.mapSize > 0 && mapsFile != NULL) {
115 memcpy(ptr, mapsFile, header.mapSize);
    [all...]
  /external/stlport/test/eh/
test_map.cpp 54 const size_t mapSize = random_number(random_base);
56 while ( testMultiMap.size() < mapSize )
102 const size_t mapSize = random_number(random_base);
104 while ( testMap.size() < mapSize )
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleNativeHeap.java 136 // uint32_t mapSize;
143 int mapSize = buffer.getInt();
149 Log.d("ddms", "mapSize: " + mapSize);
160 if (mapSize > 0) {
161 byte[] maps = new byte[mapSize];
162 buffer.get(maps, 0, mapSize);
  /dalvik/dx/src/com/android/dx/dex/
TableOfContents.java 118 int mapSize = in.readInt();
120 for (int i = 0; i < mapSize; i++) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CollectionsTest.java 170 int mapSize;
187 mapSize - 1));
189 .get(new Integer(mapSize));
191 2 * mapSize - 1));
218 mapSize = m.size();
219 normalCountingMap = new HashMap(mapSize);
220 offsetCountingMap = new HashMap(mapSize);
221 for (int counter = 0; counter < mapSize; counter++) {
225 for (int counter = 0; counter < mapSize; counter++) {
226 myInt = new Integer(counter + mapSize);
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CollectionsTest.java 153 int mapSize;
170 mapSize - 1));
172 .get(new Integer(mapSize));
174 2 * mapSize - 1));
201 mapSize = m.size();
202 normalCountingMap = new HashMap(mapSize);
203 offsetCountingMap = new HashMap(mapSize);
204 for (int counter = 0; counter < mapSize; counter++) {
208 for (int counter = 0; counter < mapSize; counter++) {
209 myInt = new Integer(counter + mapSize);
    [all...]
  /dalvik/vm/analysis/
RegisterMap.cpp 621 size_t mapSize = computeRegisterMapSize(meth->registerMap);
622 memcpy(*pPtr, meth->registerMap, mapSize);
628 *pPtr += mapSize;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 239 FloatSize mapSize(const FloatSize& size) const
    [all...]
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp 283 static status_t getIdmapPackageId(const uint32_t* map, size_t mapSize, uint32_t *outId)
285 if (!assertIdmapHeader(map, mapSize)) {
    [all...]
  /frameworks/base/services/input/
InputReader.cpp 104 const int32_t map[][4], size_t mapSize) {
106 for (size_t i = 0; i < mapSize; i++) {
    [all...]

Completed in 637 milliseconds