Searched refs:getSize (Results 1 - 25 of 249) sorted by relevance

12345678910

/frameworks/base/media/java/android/media/
H A DDataSource.java42 public long getSize(); method in interface:DataSource
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DNativeFrame.java40 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...]
H A DVertexFrame.java36 if (getFormat().getSize() <= 0) {
39 if (!nativeAllocate(getFormat().getSize())) {
91 if (getFormat().getSize() != bytes.length) {
H A DCachedFrameManager.java101 int frameSize = frame.getFormat().getSize();
125 mStorageSize -= frame.getFormat().getSize();
146 mStorageSize -= format.getSize();
/frameworks/rs/driver/linkloader/include/
H A DELFSectionProgBits.h71 AR.prologue(sh->getSize());
72 AR.readBytes(chunk.getBuffer(), sh->getSize());
73 AR.epilogue(sh->getSize());
/frameworks/base/core/java/android/webkit/
H A DWebBackForwardList.java65 public synchronized int getSize() { method in class:WebBackForwardList
H A DWebBackForwardListClassic.java49 if (index < 0 || index >= getSize()) {
55 public synchronized int getSize() { method in class:WebBackForwardListClassic
138 int size = getSize();
/frameworks/native/libs/utils/
H A DZipUtils.cpp93 unsigned long getSize; local
97 getSize = (compRemaining > kReadBufSize) ?
100 getSize, compRemaining);
102 int cc = TEMP_FAILURE_RETRY(read(fd, readBuf, getSize));
105 } else if (cc != (int) getSize) {
106 ALOGW("inflate read failed (%d vs %ld)", cc, getSize);
110 compRemaining -= getSize;
113 zstream.avail_in = getSize;
206 unsigned long getSize; local
210 getSize
[all...]
H A DBlobCache.cpp111 size_t newTotalSize = mTotalSize + valueSize - oldValueBlob->getSize();
151 size_t valueBlobSize = valueBlob->getSize();
173 size += sizeof(EntryHeader) + keyBlob->getSize() +
174 valueBlob->getSize();
208 size_t keySize = keyBlob->getSize();
209 size_t valueSize = valueBlob->getSize();
303 mTotalSize -= entry.getKey()->getSize() + entry.getValue()->getSize();
339 size_t BlobCache::Blob::getSize() const { function in class:android::BlobCache::Blob
/frameworks/rs/driver/linkloader/include/impl/
H A DELFSectionStrTab.hxx34 st->buf.resize(sh->getSize());
40 AR.prologue(sh->getSize());
41 AR.readBytes(&*st->buf.begin(), sh->getSize());
42 AR.epilogue(sh->getSize());
H A DELFSectionNoBits.hxx35 if (!result->chunk.allocate(sh->getSize())) {
H A DELFSymbol.hxx102 PRINT_LINT("Size", getSize() );
116 setw(7) << getSize() <<
152 allocateSHNCommonData((size_t)getSize(), align);
178 (size_t)getSize()) != 0) {
183 (size_t)getSize());
188 memset(my_addr, '\0', getSize());
193 allocateSHNCommonData((size_t)getSize(), align);
/frameworks/base/libs/hwui/
H A DFboCache.h64 uint32_t getSize();
H A DRenderBufferCache.cpp62 uint32_t RenderBufferCache::getSize() { function in class:android::uirenderer::RenderBufferCache
97 mSize -= buffer->getSize();
121 mSize -= buffer->getSize();
141 const uint32_t size = buffer->getSize();
H A DCaches.cpp219 textureCache.getSize(), textureCache.getMaxSize());
221 layerCache.getSize(), layerCache.getMaxSize());
223 renderBufferCache.getSize(), renderBufferCache.getMaxSize());
225 gradientCache.getSize(), gradientCache.getMaxSize());
227 pathCache.getSize(), pathCache.getMaxSize());
228 log.appendFormat(" TextDropShadowCache %8d / %8d\n", dropShadowCache.getSize(),
236 fboCache.getSize(), fboCache.getMaxSize());
238 patchCache.getSize(), patchCache.getMaxSize());
241 total += textureCache.getSize();
242 total += layerCache.getSize();
[all...]
/frameworks/native/include/utils/
H A DFlattenable.h80 inline size_t getSize() const;
94 inline size_t LightFlattenable<T>::getSize() const { function in class:android::LightFlattenable
95 return static_cast<T const*>(this)->T::getSize();
117 inline size_t getSize() const { function in class:android::LightFlattenablePod
/frameworks/base/core/java/android/text/style/
H A DReplacementSpan.java25 public abstract int getSize(Paint paint, CharSequence text, method in class:ReplacementSpan
/frameworks/base/media/tests/omxjpegdecoder/
H A DSkOmxPixelRef.h34 size_t getSize() const { return mSize; } function in class:android::SkOmxPixelRef
H A DStreamSource.cpp48 status_t StreamSource::getSize(off64_t *size) { function in class:android::StreamSource
H A DStreamSource.h36 virtual status_t getSize(off64_t *size);
/frameworks/native/include/binder/
H A DMemoryBase.h38 size_t getSize() const { return mSize; } function in class:android::MemoryBase
H A DIMemory.h44 virtual size_t getSize() const = 0;
51 size_t virtualSize() const { return getSize(); }
/frameworks/wilhelm/src/android/
H A DBufferQueueSource.h42 virtual status_t getSize(off64_t *size);
/frameworks/av/media/libstagefright/include/
H A DThrottledSource.h45 virtual status_t getSize(off64_t *size) { function in struct:android::ThrottledSource
46 return mSource->getSize(size);
H A DDataUriSource.h39 virtual status_t getSize(off64_t *size) { function in class:android::DataUriSource

Completed in 591 milliseconds

12345678910