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

1234567891011>>

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_DecodeBlockCoef_Intra.c124 OMX_INT predDir, predACDir, i, j, count; local
226 for (j = 0, count = 0; j < 8; j++)
228 for(i = 0; i < 8; i++, count++)
230 pDst[i] = armClip (0, 255, pTempBuf2[count]);
H A DomxVCM4P2_DecodePadMV_PVOP.c108 OMX_INT iBlk, i, count = 1; local
140 count = 4;
144 count = 1;
154 for (iBlk = 0; iBlk < count; iBlk++)
H A DomxVCM4P2_MCReconBlock.c203 OMX_U8 x,y,count,index; local
206 for (y = 0, count = 0, index = 0; y < 8; y++,index += (srcStep -8), count += (dstStep - 8))
208 for (x = 0; x < 8; x++, count++,index++)
210 pDst[count] = pSrc[index];
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/foundation/include/
H A DDataSource.h76 // Reads in "count" entries of type T into vector *x.
77 // Returns true if "count" entries can be read.
78 // If fewer than "count" entries can be read, return false. In this case,
87 bool getVector(off64_t offset, Vector<T>* x, size_t count,
136 bool DataSource::getVector(off64_t offset, Vector<T>* x, size_t count, argument
143 if (count == 0) {
152 for (i = 0; i + chunkSize < count; i += chunkSize) {
169 // There are (count - i) more records to read.
170 // Right now, (count - i) <= chunkSize.
171 // We do the same thing as above, but with chunkSize replaced by count
[all...]
/frameworks/av/media/libstagefright/include/
H A DDataSource.h76 // Reads in "count" entries of type T into vector *x.
77 // Returns true if "count" entries can be read.
78 // If fewer than "count" entries can be read, return false. In this case,
87 bool getVector(off64_t offset, Vector<T>* x, size_t count,
136 bool DataSource::getVector(off64_t offset, Vector<T>* x, size_t count, argument
143 if (count == 0) {
152 for (i = 0; i + chunkSize < count; i += chunkSize) {
169 // There are (count - i) more records to read.
170 // Right now, (count - i) <= chunkSize.
171 // We do the same thing as above, but with chunkSize replaced by count
[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/av/services/oboeservice/
H A DAAudioServiceStreamBase.cpp150 int32_t count = mUpMessageQueue->getFifoBuffer()->write(command, 1); local
151 if (count != 1) {
/frameworks/base/core/java/android/text/
H A DAndroidCharacter.java35 * Fill in the first <code>count</code> bytes of <code>dest</code> with the
36 * directionalities from the first <code>count</code> chars of <code>src</code>.
41 int count);
57 * Fill the first <code>count</code> bytes of <code>dest</code> with the
58 * East Asian Width from <code>count</code> chars of <code>src</code>
68 * @param count maximum number of characters to measure
72 int count, byte[] dest);
81 * @param count maximum number of characters to mirror
84 public native static boolean mirror(char[] text, int start, int count); argument
40 getDirectionalities(char[] src, byte[] dest, int count) argument
71 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/logging/
H A DMetricsLogger.java126 public void count(String name, int value) { method in class:MetricsLogger
203 * @deprecated use {@link #count(String, int)}
206 public static void count(Context context, String name, int value) { method in class:MetricsLogger
207 getLogger().count(name, value);
/frameworks/base/core/java/com/android/internal/midi/
H A DMidiDispatcher.java88 public void onSend(byte[] msg, int offset, int count, long timestamp) throws IOException { argument
91 receiver.send(msg, offset, count, timestamp);
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/java/com/android/internal/widget/
H A DAlertDialogLayout.java80 final int count = getChildCount();
81 for (int i = 0; i < count; i++) {
195 for (int i = 0; i < count; i++) {
211 forceUniformWidth(count, heightMeasureSpec);
220 * @param count the number of child views
223 private void forceUniformWidth(int count, int heightMeasureSpec) { argument
228 for (int i = 0; i < count; i++) {
283 final int count = getChildCount();
310 for (int i = 0; i < count; i++) {
/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/app/
H A DResolverListControllerTest.java126 String annotation, int count) {
129 counts.put(annotation, count);
125 initStats(String packageName, String action, String annotation, int count) argument
/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));

Completed in 2182 milliseconds

1234567891011>>