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

123456789

/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/compile/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/compile/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/native/libs/utils/
H A DZipUtils.cpp92 unsigned long getSize; local
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; local
208 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/base/libs/hwui/
H A DCaches.cpp177 textureCache.getSize(), textureCache.getMaxSize());
179 layerCache.getSize(), layerCache.getMaxSize());
181 gradientCache.getSize(), gradientCache.getMaxSize());
183 pathCache.getSize(), pathCache.getMaxSize());
185 circleShapeCache.getSize(), circleShapeCache.getMaxSize());
187 ovalShapeCache.getSize(), ovalShapeCache.getMaxSize());
189 roundRectShapeCache.getSize(), roundRectShapeCache.getMaxSize());
191 rectShapeCache.getSize(), rectShapeCache.getMaxSize());
193 arcShapeCache.getSize(), arcShapeCache.getMaxSize());
194 log.appendFormat(" TextDropShadowCache %8d / %8d\n", dropShadowCache.getSize(),
[all...]
H A DFboCache.h64 uint32_t getSize();
/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
/frameworks/compile/mclinker/include/mcld/LD/
H A DFillFragment.h34 uint64_t getSize() const { return m_Size; } function in class:mcld::FillFragment
H A DTargetFragment.h36 virtual size_t getSize() const = 0;
/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/
H A DThrottledSource.cpp69 status_t ThrottledSource::getSize(off64_t *size) { function in class:android::ThrottledSource
70 return mSource->getSize(size);
/frameworks/av/media/libstagefright/include/
H A DDataUriSource.h39 virtual status_t getSize(off64_t *size) { function in class:android::DataUriSource
H A DThrottledSource.h35 virtual status_t getSize(off64_t *size);

Completed in 1673 milliseconds

123456789