HomeSort by relevance Sort by last modified time
    Searched refs:getSize (Results 1 - 25 of 596) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/view/
DisplayList.java 63 abstract int getSize();
  /frameworks/compile/linkloader/include/
ELFSectionProgBits.h 55 AR.prologue(sh->getSize());
56 AR.readBytes(chunk.getBuffer(), sh->getSize());
57 AR.epilogue(sh->getSize());
  /frameworks/base/libs/hwui/
Caches.cpp 117 textureCache.getSize(), textureCache.getMaxSize());
119 layerCache.getSize(), layerCache.getMaxSize());
121 gradientCache.getSize(), gradientCache.getMaxSize());
123 pathCache.getSize(), pathCache.getMaxSize());
125 circleShapeCache.getSize(), circleShapeCache.getMaxSize());
127 ovalShapeCache.getSize(), ovalShapeCache.getMaxSize());
129 roundRectShapeCache.getSize(), roundRectShapeCache.getMaxSize());
131 rectShapeCache.getSize(), rectShapeCache.getMaxSize());
133 arcShapeCache.getSize(), arcShapeCache.getMaxSize());
134 log.appendFormat(" TextDropShadowCache %8d / %8d\n", dropShadowCache.getSize(),
    [all...]
FboCache.h 64 uint32_t getSize();
  /system/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 40 int capacity = format.getSize();
113 if (ints.length * nativeIntSize() > getFormat().getSize()) {
116 (getFormat().getSize() / nativeIntSize()) + " integers).");
124 return getNativeInts(getFormat().getSize());
130 if (floats.length * nativeFloatSize() > getFormat().getSize()) {
133 (getFormat().getSize() / nativeFloatSize()) + " floats).");
141 return getNativeFloats(getFormat().getSize());
154 } else if (getFormat().getSize() != length) {
156 "Frame size is " + getFormat().getSize() + " bytes, but " +
165 byte[] data = getNativeData(getFormat().getSize());
    [all...]
VertexFrame.java 36 if (getFormat().getSize() <= 0) {
39 if (!nativeAllocate(getFormat().getSize())) {
91 if (getFormat().getSize() != bytes.length) {
  /frameworks/compile/linkloader/include/impl/
ELFSectionProgBits.hxx 55 if (!result->chunk.allocate(sh->getSize() + stub_size)) {
59 stubs->initStubTable(result->chunk.getBuffer()+sh->getSize(), func_count);
62 if (!result->chunk.allocate(sh->getSize())) {
ELFSectionStrTab.hxx 34 st->buf.resize(sh->getSize());
40 AR.prologue(sh->getSize());
41 AR.readBytes(&*st->buf.begin(), sh->getSize());
42 AR.epilogue(sh->getSize());
ELFSectionNoBits.hxx 35 if (!result->chunk.allocate(sh->getSize())) {
  /external/chromium/webkit/glue/
webthemeengine_impl_linux.h 15 virtual WebKit::WebSize getSize(WebKit::WebThemeEngine::Part);
  /frameworks/base/libs/utils/
ZipUtils.cpp 92 unsigned long getSize;
96 getSize = (compRemaining > kReadBufSize) ?
99 getSize, compRemaining);
101 int cc = read(fd, readBuf, getSize);
102 if (cc != (int) getSize) {
104 cc, getSize);
108 compRemaining -= getSize;
111 zstream.avail_in = getSize;
204 unsigned long getSize;
208 getSize = (compRemaining > kReadBufSize)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/sqlite/
DatabaseConnectionPoolTest.java 70 assertEquals(0, mTestPool.getSize());
76 assertEquals(1, mTestPool.getSize());
84 assertEquals(1, mTestPool.getSize());
112 assertEquals(MAX_CONN, mTestPool.getSize());
120 assertEquals(MAX_CONN, mTestPool.getSize());
126 assertEquals(MAX_CONN, mTestPool.getSize());
134 assertEquals(MAX_CONN, mTestPool.getSize());
154 assertEquals(MAX_CONN, mTestPool.getSize());
161 assertEquals(MAX_CONN, mTestPool.getSize());
173 assertEquals(MAX_CONN, mTestPool.getSize());
    [all...]
  /external/llvm/lib/Object/
Archive.cpp 44 uint64_t getSize() const {
58 ToHeader(Data.data())->getSize();
70 ToHeader(NextLoc)->getSize();
100 + Parent->StringTable->getSize()))
113 uint64_t Archive::Child::getSize() const {
114 return ToHeader(Data.data())->getSize();
121 getSize()),
162 ToHeader(Loc)->getSize();
  /external/skia/include/core/
SkMallocPixelRef.h 35 size_t getSize() const { return fSize; }
  /external/skia/src/animator/
SkDrawText.h 34 size_t getSize() { return text.size(); }
SkTextOnPath.cpp 44 maker.fCanvas->drawTextOnPathHV(text->getText(), text->getSize(),
  /libcore/luni/src/main/java/java/nio/
MappedByteBuffer.java 71 long size = block.getSize();
101 Libcore.os.mlock(block.toInt(), block.getSize());
102 Libcore.os.munlock(block.toInt(), block.getSize());
119 Libcore.os.msync(block.toInt(), block.getSize(), MS_SYNC);
  /system/media/wilhelm/src/android/
BufferQueueSource.h 42 virtual status_t getSize(off64_t *size);
  /external/llvm/lib/DebugInfo/
DWARFCompileUnit.h 52 uint32_t getSize() const { return 11; }
57 uint32_t getFirstDIEOffset() const { return Offset + getSize(); }
60 size_t getDebugInfoSize() const { return Length + 4 - getSize(); }
  /external/llvm/utils/TableGen/
CallingConvEmitter.cpp 53 for (unsigned i = 0, e = CCActions->getSize(); i != e; ++i) {
71 for (unsigned i = 0, e = VTs->getSize(); i != e; ++i) {
95 if (RegList->getSize() == 1) {
102 for (unsigned i = 0, e = RegList->getSize(); i != e; ++i) {
108 << Counter << ", " << RegList->getSize() << ")) {\n";
117 if (ShadowRegList->getSize() >0 &&
118 ShadowRegList->getSize() != RegList->getSize())
121 if (RegList->getSize() == 1) {
133 for (unsigned i = 0, e = RegList->getSize(); i != e; ++i)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
MediaLayer.cpp 79 mediaBounds.set(0, 0, getSize().width(), getSize().height());
90 m.translate(0, -getSize().height());
  /frameworks/base/core/java/android/webkit/
WebBackForwardList.java 70 if (index < 0 || index >= getSize()) {
80 public synchronized int getSize() {
168 int size = getSize();
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeHeapLabelProvider.java 55 return Integer.toString(info.getSize() * info.getAllocationCount());
57 return getPercentageString(info.getSize() * info.getAllocationCount(), mTotalSize);
65 return Integer.toString(info.getSize());
  /external/llvm/lib/Archive/
ArchiveReader.cpp 285 At += mbr->getSize();
293 strtab.assign(At, mbr->getSize());
294 At += mbr->getSize();
306 if (!parseSymbolTable(mbr->getData(), mbr->getSize(), error))
309 At += mbr->getSize();
321 At += mbr->getSize();
351 MemoryBuffer::getMemBufferCopy(StringRef(I->getData(), I->getSize()),
389 At += mbr->getSize();
405 strtab.assign((const char*)mbr->getData(), mbr->getSize());
406 At += mbr->getSize();
    [all...]
  /external/webkit/Source/WebCore/platform/
FileStream.h 62 long long getSize(const String& path, double expectedModificationTime);

Completed in 540 milliseconds

1 2 3 4 5 6 7 8 91011>>