Searched defs:count (Results 101 - 125 of 519) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_TransRecBlockCoef_intra.c159 OMX_INT x, y, count, predDir; local
198 for (y = 0, count = 0; y < 8; y++)
200 for(x= 0; x < 8; x++, count++)
202 pTempBuf1[count] = pSrc[(y*srcStep) + x];
214 for (y = 0, count = 0; y < 8; y++)
216 for(x = 0; x < 8; x++, count++)
219 pTempBuf1[count] = pTempBuf2[count];
220 pDst[(y*dstStep) + x] = pTempBuf2[count];
265 for(count
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dh264bsd_interpolate_hor_half.s38 count RN 2 label
138 ;// pack values to count register
144 MOV count, width
148 ADD count, count, tmp2, LSL #16
154 AND tmp1, count, #0x000F0000 ;// partHeight-1
155 AND tmp3, count, #0x00F00000 ;// partWidth-1
156 ADD count, count, tmp1, LSL #8
159 ADD count, coun
[all...]
H A Dh264bsd_interpolate_hor_quarter.s38 count RN 2 label
140 ;// pack values to count register
146 MOV count, width
150 ADD count, count, tmp2, LSL #16
156 AND tmp1, count, #0x000F0000 ;// partHeight-1
157 AND tmp3, count, #0x00F00000 ;// partWidth-1
158 ADD count, count, tmp1, LSL #8
161 ADD count, coun
[all...]
H A Dh264bsd_interpolate_ver_half.s38 count RN 2 label
138 ADD count, partW, partH, LSL #16 ;// |partH|partW|
140 SSUB16 count, count, tmp5; ;// |partH-1|partW-1|
143 AND tmp1, count, #0x000000FF ;// partWidth
147 ADD count, count, tmp1, LSL #24 ;// partWidth-1 to top byte
281 SUBS count, count, #4<<24 ;// (partWidth-1) -= 4;
335 ADDS count, coun
[all...]
H A Dh264bsd_interpolate_ver_quarter.s37 count RN 2 label
137 ADD count, partW, partH, LSL #8 ;// |xx|xx|partH|partW|
139 RSB count, tmp5, count, LSL #8 ;// |xx|partH-1|partW-1|xx|
141 ADD count, count, tmp2 ;// |xx|partH-1|partW-1|verOffset|
144 AND tmp1, count, #0x0000FF00 ;// partWidth
148 ADD count, count, tmp1, LSL #16 ;// partWidth-1 to top byte
189 MOVS tmp1, count, LS
[all...]
/frameworks/av/media/libstagefright/timedtext/
H A DTextDescriptions.cpp123 uint16_t count = U16_AT(tmpData); local
128 for (int i = 0; i < count; i++) {
174 uint16_t count = U16_AT(tmpData + 4); local
175 parcel->writeInt32(count);
181 for (int i = 0; i < count; i++) {
458 uint16_t count = U16_AT(tmpData); local
459 parcel->writeInt32(count);
464 for (int i = 0; i < count; i++) {
/frameworks/base/core/java/android/text/
H A DAndroidCharacter.java33 * Fill in the first <code>count</code> bytes of <code>dest</code> with the
34 * directionalities from the first <code>count</code> chars of <code>src</code>.
39 int count);
55 * Fill the first <code>count</code> bytes of <code>dest</code> with the
56 * East Asian Width from <code>count</code> chars of <code>src</code>
66 * @param count maximum number of characters to measure
70 int count, byte[] dest);
79 * @param count maximum number of characters to mirror
82 public native static boolean mirror(char[] text, int start, int count); argument
38 getDirectionalities(char[] src, byte[] dest, int count) argument
69 getEastAsianWidths(char[] src, int start, int count, byte[] dest) argument
H A DPackedObjectVector.java85 deleteAt(int row, int count) argument
87 moveRowGapTo(row + count);
89 mRowGapStart -= count;
90 mRowGapLength += count;
/frameworks/base/core/java/android/util/
H A DIntArray.java103 final int count = values.mSize;
104 ensureCapacity(count);
106 System.arraycopy(values.mValues, 0, mValues, mSize, count);
107 mSize += count;
111 * Ensures capacity to append at least <code>count</code> values.
113 private void ensureCapacity(int count) { argument
115 final int minCapacity = currentSize + count;
/frameworks/base/core/java/com/android/internal/midi/
H A DMidiEventScheduler.java39 public void onSend(byte[] msg, int offset, int count, long timestamp) argument
41 MidiEvent event = createScheduledEvent(msg, offset, count, timestamp);
54 public int count = 0; field in class:MidiEventScheduler.MidiEvent
57 private MidiEvent(int count) { argument
59 data = new byte[count];
62 private MidiEvent(byte[] msg, int offset, int count, long timestamp) { argument
64 data = new byte[count];
65 System.arraycopy(msg, offset, data, 0, count);
66 this.count = count;
82 createScheduledEvent(byte[] msg, int offset, int count, long timestamp) argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DProcFileReader.java75 private void consumeBuf(int count) throws IOException { argument
78 System.arraycopy(mBuffer, count, mBuffer, 0, mTail - count);
79 mTail -= count;
/frameworks/base/core/jni/
H A Dandroid_text_AndroidCharacter.cpp55 jbyteArray destArray, jint count)
66 if (env->GetArrayLength(srcArray) < count || env->GetArrayLength(destArray) < count) {
71 for (int i = 0; i < count; i++) {
73 i + 1 < count &&
106 jint start, jint count, jbyteArray destArray)
117 if (start < 0 || start > start + count
118 || env->GetArrayLength(srcArray) < (start + count)
119 || env->GetArrayLength(destArray) < count) {
124 for (int i = 0; i < count;
54 getDirectionalities(JNIEnv* env, jobject obj, jcharArray srcArray, jbyteArray destArray, jint count) argument
105 getEastAsianWidths(JNIEnv* env, jobject obj, jcharArray srcArray, jint start, jint count, jbyteArray destArray) argument
148 mirror(JNIEnv* env, jobject obj, jcharArray charArray, jint start, jint count) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DMemoryFileTest.java123 private void readIndexOutOfBoundsException(int offset, int count, String msg) argument
131 is.read(buffer, offset, count);
164 "read() with offset + count outside buffer should throw IndexOutOfBoundsException");
176 // read() with count larger than data should succeed, and return # of bytes read
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
H A DKernelWakelockReaderTest.java42 public ProcFileBuilder addLine(String name, int count, long timeMillis) { argument
44 mStringBuilder.append(name).append("\t").append(count).append("\t0\t0\t0\t0\t")
/frameworks/base/libs/androidfw/
H A DStreamingZipInflater.cpp136 ssize_t StreamingZipInflater::read(void* outBuf, size_t count) { argument
139 size_t toRead = min_of(count, size_t(mOutTotalSize - mOutCurPosition));
/frameworks/base/libs/androidfw/tests/
H A DResTable_test.cpp167 ssize_t count = table.lockBag(base::R::array::integerArray1, &entry); local
168 ASSERT_GE(count, 0);
180 count = table.lockBag(base::R::array::integerArray1, &entry);
181 ASSERT_GE(count, 0);
357 EXPECT_EQ(1, std::count(configs.begin(), configs.end(), configSv));
362 EXPECT_EQ(1, std::count(locales.begin(), locales.end(), String8("sv")));
/frameworks/base/libs/hwui/
H A DAssetAtlas.cpp30 void AssetAtlas::init(sp<GraphicBuffer> buffer, int64_t* map, int count) { argument
44 createEntries(caches, map, count);
96 void AssetAtlas::createEntries(Caches& caches, int64_t* map, int count) { argument
100 for (int i = 0; i < count; ) {
/frameworks/base/libs/hwui/hwui/
H A DMinikinUtils.cpp54 Typeface* typeface, const uint16_t* buf, size_t start, size_t count,
60 layout->doLayout(buf, start, count, bufSize, bidiFlags, minikinStyle, minikinPaint);
64 const uint16_t* buf, size_t start, size_t count, size_t bufSize, float *advances) {
68 return Layout::measureText(buf, start, count, bufSize, bidiFlags, minikinStyle, minikinPaint,
53 doLayout(Layout* layout, const Paint* paint, int bidiFlags, Typeface* typeface, const uint16_t* buf, size_t start, size_t count, size_t bufSize) argument
63 measureText(const Paint* paint, int bidiFlags, Typeface* typeface, const uint16_t* buf, size_t start, size_t count, size_t bufSize, float *advances) argument
/frameworks/base/libs/hwui/tests/unit/
H A DRecordingCanvasTests.cpp112 << "float count must be rounded down to closest multiple of 4";
155 int count = 0; local
156 playbackOps(*dl, [&count](const RecordedOp& op) {
157 count++;
164 ASSERT_EQ(1, count);
213 int count = 0; local
215 playbackOps(*dl, [&count, &lastX](const RecordedOp& op) {
216 count++;
226 ASSERT_EQ(3, count);
266 int count local
315 int count = 0; local
349 int count = 0; local
364 int count = 0; local
399 int count = 0; local
418 int count = 0; local
446 int count = 0; local
473 int count = 0; local
722 int count = 0; local
746 int count = 0; local
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DMutableFrameFormat.java81 public void setDimensionCount(int count) { argument
82 mDimensions = new int[count];
H A DNativeBuffer.java39 public NativeBuffer(int count) { argument
40 allocate(count * getElementSize());
63 public int count() { method in class:NativeBuffer
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
H A DPoint.java88 public Point rotated90(int count) { argument
91 for (int i = 0; i < count; ++i) {
/frameworks/base/media/mca/filterfw/jni/
H A Djni_util.cpp58 ALOGE("JavaObject: Reference count is NULL! JavaObject may be corrupted.");
75 ALOGE("JavaObject: Reference count is NULL! JavaObject may be corrupted.");
149 const jint count = env->GetArrayLength(static_cast<jintArray>(object)); local
150 result = MakeIntArrayValue(elems, count);
154 const jint count = env->GetArrayLength(static_cast<jfloatArray>(object)); local
155 result = MakeFloatArrayValue(elems, count);
/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
H A DBluetoothPacketEncoder.java56 public void onSend(byte[] msg, int offset, int count, long timestamp)
70 bytesNeeded = count;
106 (msg[offset + count - 1] == MidiConstants.STATUS_END_SYSEX);
107 int remaining = (hasSysExEnd ? count - 1 : count);
149 int dataLength = count - 1;
183 public void onSend(byte[] msg, int offset, int count, long timestamp) argument
186 mMidiFramer.send(msg, offset, count, timestamp);
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
H A DDocumentLoaderTest.java188 private void setUpDocument(TestMtpManager manager, int count) { argument
189 int[] childDocuments = new int[count];

Completed in 1799 milliseconds

1234567891011>>