Searched refs:size (Results 251 - 275 of 3680) sorted by relevance

<<11121314151617181920>>

/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp131 status_t parseTrackFragmentHeader(off64_t offset, off64_t size);
132 status_t parseTrackFragmentRun(off64_t offset, off64_t size);
133 status_t parseSampleAuxiliaryInformationSizes(off64_t offset, off64_t size);
134 status_t parseSampleAuxiliaryInformationOffsets(off64_t offset, off64_t size);
160 size_t size; member in struct:android::MPEG4Source::Sample
184 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
185 virtual status_t getSize(off64_t *size);
188 status_t setCachedRange(off64_t offset, size_t size);
232 ssize_t MPEG4DataSource::readAt(off64_t offset, void *data, size_t size) { argument
235 if (isInRange(mCachedOffset, mCachedSize, offset, size)) {
243 getSize(off64_t *size) argument
251 setCachedRange(off64_t offset, size_t size) argument
280 hexdump(const void *_data, size_t size) argument
488 size_t size; local
597 uint32_t size = 0; local
628 int32_t size = readSize(data_offset, mDataSource, &numOfBytes); local
2108 size_t size = 0; local
2257 parseSegmentIndex(off64_t offset, size_t size) argument
2379 parseQTMetaKey(off64_t offset, size_t size) argument
2434 parseQTMetaVal( int32_t keyId, off64_t offset, size_t size) argument
2575 parseITunesMetaData(off64_t offset, size_t size) argument
2774 parseColorInfo(off64_t offset, size_t size) argument
2817 parse3GPPMetaData(off64_t offset, size_t size, int depth) argument
3035 size_t size; local
3048 size_t size; local
3072 size_t size; local
3497 size_t size; local
3510 size_t size; local
3899 parseTrackFragmentHeader(off64_t offset, off64_t size) argument
3998 parseTrackFragmentRun(off64_t offset, off64_t size) argument
4280 size_t size; local
4540 size_t size = 0; local
[all...]
H A DNuCachedSource2.cpp52 void copy(size_t from, void *data, size_t size);
139 void PageCache::copy(size_t from, void *data, size_t size) { argument
140 ALOGV("copy from %zu size %zu", from, size);
142 if (size == 0) {
146 CHECK_LE(from + size, mTotalSize);
158 if (avail >= size) {
159 memcpy(data, (const uint8_t *)(*it)->mData + delta, size);
166 size -= avail;
168 while (size >
292 getSize(off64_t *size) argument
459 size_t size; local
514 readAt(off64_t offset, void *data, size_t size) argument
590 readInternal(off64_t offset, void *data, size_t size) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimatorRT.java67 int size = parent.mPendingAnimations.size();
79 for (int i = 0; i < size; i++) {
127 int size = mPendingAnimations.size();
128 for (int i = 0; i < size; i++) {
/frameworks/base/core/java/com/android/internal/util/
H A DImageUtils.java62 // shrink to a more manageable (yet hopefully no more or less colorful) size
83 final int size = height*width;
84 ensureBufferSize(size);
86 for (int i = 0; i < size; i++) {
95 * Makes sure that {@code mTempBuffer} has at least length {@code size}.
97 private void ensureBufferSize(int size) { argument
98 if (mTempBuffer == null || mTempBuffer.length < size) {
99 mTempBuffer = new int[size];
/frameworks/base/media/mca/filterfw/jni/
H A Djni_native_frame.h27 Java_android_filterfw_core_NativeFrame_nativeAllocate(JNIEnv* env, jobject thiz, jint size);
42 Java_android_filterfw_core_NativeFrame_getNativeInts(JNIEnv* env, jobject thiz, jint size);
48 Java_android_filterfw_core_NativeFrame_getNativeFloats(JNIEnv* env, jobject thiz, jint size);
58 Java_android_filterfw_core_NativeFrame_getNativeData(JNIEnv* env, jobject thiz, jint size);
67 jint size,
74 jint size,
/frameworks/base/telephony/java/com/android/ims/
H A DImsConferenceState.java104 out.writeInt(mParticipants.size());
106 if (mParticipants.size() > 0) {
123 int size = in.readInt();
125 for (int i = 0; i < size; ++i) {
140 public ImsConferenceState[] newArray(int size) {
141 return new ImsConferenceState[size];
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.cpp78 ASSERT_TRUE(10 == m_pNodeList.size());
83 ASSERT_TRUE(10 == m_pNodeList.size());
89 ASSERT_TRUE(0 == m_pNodeList.size());
95 ASSERT_TRUE(11 == m_pNodeList.size());
97 ASSERT_TRUE(10 == m_pNodeList.size());
119 ASSERT_TRUE(m_pNodeList.size() == 8);
H A DFactoriesTest.cpp41 ASSERT_EQ(1, m_pNodeAlloc->size());
44 ASSERT_EQ(2, m_pNodeAlloc->size());
47 ASSERT_EQ(3, m_pNodeAlloc->size());
79 ASSERT_EQ(100, m_pNodeAlloc->size());
101 ASSERT_EQ(100, m_pNodeAlloc->size());
111 ASSERT_EQ(0, delegatee->size());
137 ASSERT_EQ(200, m_pNodeAlloc->size());
147 ASSERT_EQ(0, delegatee->size());
159 ASSERT_EQ(100, m_pNodeAlloc->size());
161 ASSERT_EQ(100, m_pNodeAlloc->size());
[all...]
/frameworks/minikin/libs/minikin/
H A DHbFontCache.cpp34 size_t size = 0; local
35 const void* buffer = font->GetTable(tag, &size, &destroy);
41 (tag >>24)&0xff, (tag>>16)&0xff, (tag>>8)&0xff, tag&0xff, size);
43 return hb_blob_create(reinterpret_cast<const char*>(buffer), size,
125 size_t size = minikinFont->GetFontSize(); local
126 hb_blob_t* blob = hb_blob_create(reinterpret_cast<const char*>(buf), size,
/frameworks/rs/driver/
H A DrsdVertexArray.cpp47 size = 0;
54 void RsdVertexArray::Attrib::set(uint32_t type, uint32_t size, uint32_t stride, argument
59 this->size = size;
70 ALOGV("va %i: slot=%i name=%s buf=%i ptr=%p size=%i type=0x%x stride=0x%x norm=%i offset=0x%p",
75 mAttribs[idx].size,
111 mAttribs[ct].size,
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.cpp55 for (i = 0; i < mInputSources.size(); i++) {
60 for (i = 0; i < mInputs.size(); i++) {
67 for (i = 0; i < mOutputStreams.size(); i++) {
72 for (i = 0; i < mOutputSessions.size(); i++) {
110 for (size_t i = 0; i < effects.size(); i++) {
121 for (size_t j = 0; j < effect->mParams.size(); j++) {
163 for (index = 0; index < mInputs.size(); index++) {
168 if (index == mInputs.size()) {
174 for (size_t i = 0; i < effects.size(); i++) {
180 if (effects.size() > *coun
376 growParamSize(char **param, size_t size, size_t *curSize, size_t *totSize) argument
509 size_t size = local
525 size_t size = local
[all...]
/frameworks/base/tools/aapt2/util/
H A DUtil.h42 if (str.size() < prefix.size()) {
45 return str.substr(0, prefix.size()) == prefix;
53 if (str.size() < suffix.size()) {
56 return str.substr(str.size() - suffix.size(), suffix.size()) == suffix;
131 inline ::std::function<::std::ostream&(::std::ostream&)> formatSize(size_t size) { argument
132 return [size](
137 out << size << "B"; local
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp230 return m_OutputSymbols.size();
234 return m_pFile->size();
238 return m_pLocal->size();
242 return m_pLocalDyn->size();
246 return m_pCommon->size();
250 return m_pDynamic->size();
254 return m_pRegular->size();
307 iter += m_pFile->size();
317 iter += m_pFile->size();
327 iter += m_pLocal->size();
[all...]
/frameworks/av/drm/libmediadrm/
H A DDrmSessionManager.cpp34 for (size_t i = 0; i < sessionId.size(); ++i) {
41 if (sessionId1.size() != sessionId2.size()) {
44 for (size_t i = 0; i < sessionId1.size(); ++i) {
92 for (size_t i = 0; i < mSessionMap.size(); ++i) {
94 for (size_t j = 0; j < infos.size(); ++j) {
108 for (size_t i = 0; i < mSessionMap.size(); ++i) {
110 for (size_t j = 0; j < infos.size(); ++j) {
124 for (size_t i = 0; i < mSessionMap.size(); ++i) {
126 for (size_t j = 0; j < infos.size();) {
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DStringHash.h47 for (unsigned int i = 0; i < pKey.size(); ++i) {
64 for (unsigned int i = 0; i < pKey.size(); ++i) {
88 for (unsigned int i = 0; i < pKey.size(); ++i) {
109 for (unsigned int i = 0; i < pKey.size(); ++i) {
129 for (uint32_t i = 0; i < pKey.size(); ++i)
145 for (uint32_t i = 0; i < pKey.size(); ++i)
161 for (uint32_t i = 0; i < pKey.size(); ++i)
176 uint32_t hash_val = pKey.size();
178 for (uint32_t i = 0; i < pKey.size(); ++i)
194 for (uint32_t i = 0; i < pKey.size();
[all...]
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DObservableArrayListTest.java159 assertEquals(1, mNotifications.size());
173 assertEquals(4, mObservable.size());
178 assertEquals(4, mNotifications.size());
192 assertEquals(3, mObservable.size());
195 assertEquals(1, mNotifications.size());
209 assertEquals(3, mObservable.size());
212 assertEquals(1, mNotifications.size());
224 assertEquals(1, mNotifications.size());
232 assertEquals(1, mNotifications.size());
240 assertEquals(1, mNotifications.size());
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseWrapContentWithAspectRatioTest.java209 return behaviors.size();
220 public static MeasureSpecMatcher is(int size, int mode) { argument
221 MeasureSpecMatcher matcher = new MeasureSpecMatcher(size, mode);
227 public static MeasureSpecMatcher size(int size) { argument
228 MeasureSpecMatcher matcher = new MeasureSpecMatcher(size, 0);
241 private MeasureSpecMatcher(int size, int mode) { argument
242 mSize = size;
253 final int size = View.MeasureSpec.getSize(intValue);
255 if (checkSize && size !
[all...]
/frameworks/base/tools/aapt/
H A DStringPool.cpp62 const size_t N = pool->size();
74 (ZD_TYPE)uniqueStrings.size(), pool->isUTF8() ? "UTF-8" : "UTF-16",
78 const size_t NS = pool->size();
87 if (configStr.size() > 0) configStr.append(" ");
88 if (configs.size() > 0) {
89 for (size_t j=0; j<configs.size(); j++) {
100 // Strings with styles go first, to reduce the size of the styles array.
114 const size_t LHN = configs.size();
115 const size_t RHN = o.configs.size();
164 if (ent.configTypeName.size() <
[all...]
H A DXMLNode.cpp84 prefixSize = RESOURCES_PREFIX.size();
87 prefixSize = RESOURCES_PRV_PREFIX.size();
94 //printf("namespace: %s\n", String8(String16(namespaceUri, namespaceUri.size()-prefixSize, prefixSize)).string());
96 return String16(namespaceUri, namespaceUri.size()-prefixSize, prefixSize);
105 const char16_t* end = str + str16.size();
130 // This must be a size specification instead of position.
227 if (firstTime && text.size() > 0) {
283 curString.size(), false, &errorMsg, true)) {
302 span.span.firstChar = span.span.lastChar = outString->size();
318 curString.size(), fals
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DCryptoFactory.cpp39 const void* data, size_t size,
47 sessionId.appendArray(reinterpret_cast<const uint8_t*>(data), size); local
37 createPlugin( const uint8_t uuid[16], const void* data, size_t size, android::CryptoPlugin** plugin) argument
/frameworks/av/drm/mediadrm/plugins/clearkey/tests/
H A DJsonWebKeyUnittest.cpp48 for (size_t i = 0; i < input.size(); ++i) {
59 for (size_t i = 0; i < keys.size(); ++i) {
122 EXPECT_TRUE(keys.size() == 1);
147 EXPECT_TRUE(keys.size() == 1);
185 EXPECT_TRUE(keys.size() == 1);
243 EXPECT_TRUE(keys.size() == 2);
274 EXPECT_TRUE(keys.size() == 2);
313 EXPECT_TRUE(keys.size() == 3);
/frameworks/av/include/media/
H A DIDataSource.h37 // Read up to |size| bytes into the memory returned by getIMemory(). Returns
38 // the number of bytes read, or -1 on error. |size| must not be larger than
40 virtual ssize_t readAt(off64_t offset, size_t size) = 0;
41 // Get the size, or -1 if the size is unknown.
42 virtual status_t getSize(off64_t* size) = 0;
/frameworks/av/include/media/stagefright/foundation/
H A DParsedMessage.h28 const char *data, size_t size, bool noMoreData, size_t *length);
55 ssize_t parse(const char *data, size_t size, bool noMoreData);
/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DDelayMix_16x16.c30 LVM_INT16 size, /* Delay size */
61 if (Offset >= size)
28 DelayMix_16x16(const LVM_INT16 *src, LVM_INT16 *delay, LVM_INT16 size, LVM_INT16 *dst, LVM_INT16 *pOffset, LVM_INT16 n) argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerStreamListener.h34 virtual void queueBuffer(size_t index, size_t size);
40 ssize_t read(void *data, size_t size, sp<AMessage> *extra);

Completed in 1715 milliseconds

<<11121314151617181920>>