HomeSort by relevance Sort by last modified time
    Searched full:totalsize (Results 51 - 75 of 164) sorted by null

1 23 4 5 6 7

  /external/icu4c/common/
rbbirb.cpp 165 int32_t totalSize = headerSize + forwardTableSize + reverseTableSize
169 RBBIDataHeader *data = (RBBIDataHeader *)uprv_malloc(totalSize);
174 uprv_memset(data, 0, totalSize);
182 data->fLength = totalSize;
rbbidata.cpp 337 int32_t totalSize = headerSize + breakDataLength;
339 return totalSize;
345 if (length < totalSize) {
442 return totalSize;
  /external/webkit/Source/WebKit/win/
WebScrollBar.h 71 /* [in] */ int totalSize);
  /frameworks/base/include/androidfw/
BackupHelpers.h 40 int totalSize;
  /frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
LowStorageTest.java 55 TextView startSizeTextView = (TextView) findViewById(R.id.totalsize);
  /frameworks/base/tools/aapt/
StringPool.cpp 432 const size_t totalSize = lenSize + encLenSize +
435 void* dat = (void*)pool->editData(preSize + strPos + totalSize);
457 strPos += totalSize;
479 const size_t totalSize = (N*sizeof(ResStringPool_span))
483 uint8_t* dat = (uint8_t*)pool->editData(preSize + styPos + totalSize);
497 styPos += totalSize;
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
LODGeomap.java 80 public Mesh createMesh(Vector3f scale, Vector2f tcScale, Vector2f tcOffset, float offsetAmount, int totalSize, boolean center) {
81 return this.createMesh(scale, tcScale, tcOffset, offsetAmount, totalSize, center, 1, false, false, false, false);
84 public Mesh createMesh(Vector3f scale, Vector2f tcScale, Vector2f tcOffset, float offsetAmount, int totalSize, boolean center, int lod, boolean rightLod, boolean topLod, boolean leftLod, boolean bottomLod) {
86 FloatBuffer texb = writeTexCoordArray(null, tcOffset, tcScale, offsetAmount, totalSize);
105 public FloatBuffer writeTexCoordArray(FloatBuffer store, Vector2f offset, Vector2f scale, float offsetAmount, int totalSize) {
123 getUV(x, y, tcStore, offset, offsetAmount, totalSize);
134 public Vector2f getUV(int x, int y, Vector2f store, Vector2f offset, float offsetAmount, int totalSize) {
138 store.set((((float) x) + offsetX) / (float) (totalSize - 1), // calculates percentage of texture here
139 (((float) y) + offsetY) / (float) (totalSize - 1));
    [all...]
  /external/icu4c/tools/toolutil/
swapimpl.cpp 117 int32_t totalSize=udata_readInt32(ds, inIndexes[PropNameData::IX_TOTAL_SIZE]);
119 if(length<totalSize) {
122 (int)length, (int)totalSize);
137 totalSize-numBytesIndexesAndValueMaps);
153 return headerSize+totalSize;
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 671 int totalSize = 0;
674 totalSize += media.getMediaSize();
678 Log.v(TAG, "finalResize: new message size: " + totalSize);
681 if (totalSize > MmsConfig.getMaxMessageSize()) {
684 setCurrentMessageSize(totalSize);
  /external/guava/guava-tests/test/com/google/common/cache/
CacheTesting.java 170 int totalSize = 0;
172 totalSize += segment.maxSegmentWeight;
174 return totalSize;
  /external/webkit/Source/WebCore/platform/
Scrollbar.cpp 122 void Scrollbar::setProportion(int visibleSize, int totalSize)
124 if (visibleSize == m_visibleSize && totalSize == m_totalSize)
128 m_totalSize = totalSize;
ScrollableArea.cpp 82 step = scrollbar->totalSize();
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.mm 448 const float percent = static_cast<float>(i->y()) / scrollbar->totalSize();
472 scrollbarInfo.totalSize = scrollbar->totalSize();
ScrollbarThemeChromium.cpp 128 const float percent = static_cast<float>(i->y()) / scrollbar->totalSize();
  /external/webkit/Source/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 151 DWORD totalSize = GetGlyphOutlineW(dc, glyph, GGO_GLYPH_INDEX | GGO_NATIVE,
153 if (totalSize == GDI_ERROR)
157 const char* endGlyph = &buffer[totalSize];
  /external/webkit/Source/WebCore/storage/
AbstractDatabase.cpp 479 int64_t totalSize = m_sqliteDatabase.totalSize();
480 if (totalSize <= 10 * freeSpaceSize)
  /frameworks/base/tests/CoreTests/android/core/
HeapTest.java 164 int totalSize = 0;
166 while (i < junk.length && totalSize < 8 * 1024 * 1024) {
171 totalSize += r * 4;
  /frameworks/av/media/libstagefright/
WAVExtractor.cpp 148 size_t totalSize = U32_LE_AT(&header[4]);
151 size_t remainingSize = totalSize;
  /packages/apps/Browser/tests/src/com/android/browser/
WebStorageSizeManagerUnitTests.java 55 public void setTotalSizeBytes(long totalSize) {
56 mTotalSize = totalSize;
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.cpp     [all...]
  /dalvik/vm/compiler/
CompilerIR.h 212 int totalSize; // header + code size
  /dalvik/vm/oo/
Array.cpp 51 size_t totalSize = elementSize + headerSize;
52 if (elementSize >> elementShift != length || totalSize < elementSize) {
58 ArrayObject* newArray = (ArrayObject*)dvmMalloc(totalSize, allocFlags);
62 dvmTrackAllocation(arrayClass, totalSize);
  /external/webkit/Source/WebCore/inspector/front-end/
DetailedHeapshotGridNodes.js 240 return this._retainedSize / this.dataGrid.snapshot.totalSize * 100.0;
245 return this._shallowSize / this.dataGrid.snapshot.totalSize * 100.0;
487 return this._retainedSize / this.dataGrid.snapshot.totalSize * 100.0;
492 return this._shallowSize / this.dataGrid.snapshot.totalSize * 100.0;
  /external/webkit/Source/WebCore/platform/sql/
SQLiteDatabase.h 93 int64_t totalSize();
  /external/webkit/Tools/DumpRenderTree/chromium/
WebThemeEngineDRTMac.mm 165 float knobProportion = float(scrollbarInfo.visibleSize) / float(scrollbarInfo.totalSize);

Completed in 902 milliseconds

1 23 4 5 6 7