Searched refs:chunkSize (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DNinePatch.cpp73 size_t chunkSize = env->GetArrayLength(chunkObj); local
74 void* storage = alloca(chunkSize);
75 env->GetByteArrayRegion(chunkObj, 0, chunkSize,
80 assert(chunkSize == chunk->serializedSize());
154 size_t chunkSize = env->GetArrayLength(chunkObj); local
155 void* storage = alloca(chunkSize);
156 env->GetByteArrayRegion(chunkObj, 0, chunkSize,
161 assert(chunkSize == chunk->serializedSize());
H A DBitmapFactory.cpp611 size_t chunkSize = env->GetArrayLength(chunkObject); local
612 void* storage = alloca(chunkSize);
614 memcpy(chunk, array, chunkSize);
636 memcpy(array, chunk, chunkSize);
/frameworks/base/media/libstagefright/
H A DJPEGSource.cpp171 uint16_t chunkSize; local
172 if (!mSource->getUInt16(i, &chunkSize)) {
178 if (chunkSize < 2) {
215 i += chunkSize - 2;
223 i += chunkSize - 2;
/frameworks/base/core/java/android/backup/
H A DBackupHelperDispatcher.java34 int chunkSize; // not including the header field in class:BackupHelperDispatcher.Header
67 skipChunk_native(oldStateFD, header.chunkSize);
100 // where it was at the end of performBackup. Header.chunkSize will not be filled in.

Completed in 127 milliseconds