HomeSort by relevance Sort by last modified time
    Searched refs:mapSize (Results 1 - 9 of 9) 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 LOGD("**** read %d bytes from '%s'", (int) header.mapSize, path);
100 jbyteArray array = env->NewByteArray(sizeof(Header) + header.mapSize + header.allocSize);
108 // LOGD("*** 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);
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ConcurrentSkipListMapTest.java 982 int mapSize = 1000;
985 bs = new BitSet(mapSize);
987 populate(map, mapSize);
988 check(map, 0, mapSize - 1, true);
989 check(map.descendingMap(), 0, mapSize - 1, false);
991 mutateMap(map, 0, mapSize - 1);
992 check(map, 0, mapSize - 1, true);
993 check(map.descendingMap(), 0, mapSize - 1, false);
995 bashSubMap(map.subMap(0, true, mapSize, false),
996 0, mapSize - 1, true)
    [all...]
  /frameworks/base/core/java/android/webkit/
CookieManager.java 638 int mapSize = mCookieMap.size();
640 if (mapSize < MAX_RAM_DOMAIN_COUNT) {
667 if (mapSize >= MAX_RAM_DOMAIN_COUNT || count >= MAX_RAM_COOKIES_COUNT) {
670 + " bytes with " + mapSize + " domains");
673 int toGo = mapSize / 10 + 1;
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CollectionsTest.java 159 int mapSize;
176 mapSize - 1));
178 .get(new Integer(mapSize));
180 2 * mapSize - 1));
207 mapSize = m.size();
208 normalCountingMap = new HashMap(mapSize);
209 offsetCountingMap = new HashMap(mapSize);
210 for (int counter = 0; counter < mapSize; counter++) {
214 for (int counter = 0; counter < mapSize; counter++) {
215 myInt = new Integer(counter + mapSize);
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 239 FloatSize mapSize(const FloatSize& size) const
    [all...]
  /dalvik/vm/analysis/
RegisterMap.c 619 size_t mapSize = computeRegisterMapSize(meth->registerMap);
620 memcpy(*pPtr, meth->registerMap, mapSize);
626 *pPtr += mapSize;
    [all...]
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 172 milliseconds