Searched refs:count (Results 151 - 175 of 576) sorted by relevance

1234567891011>>

/frameworks/base/graphics/java/android/renderscript/
H A DType.java155 int count = x * y * z * faces;
168 count += x * y * z * faces;
170 mElementCount = count;
/frameworks/base/libs/gui/
H A DSensorManager.cpp92 size_t count = mSensors.size(); local
93 mSensorList = (Sensor const**)malloc(count * sizeof(Sensor*));
94 for (size_t i=0 ; i<count ; i++) {
/frameworks/base/libs/hwui/
H A DGammaFontRenderer.cpp98 int count = 0; local
104 count++;
112 if (count <= 1 || min < 0) return;
/frameworks/base/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
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...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccSmsInterfaceManager.java175 int count = messages.size();
178 ret = new ArrayList<SmsRawData>(count);
180 for (int i = 0; i < count; i++) {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeAdapter.java50 // Need an array to count for each type.
65 int count = dataBindingItem.getCount();
68 typeCount[typeIndex] += count;
70 for (int k = 0 ; k < count ; k++) {
H A DFakeExpandableAdapter.java48 // Need an array to count for each type.
64 int count = dataBindingItem.getCount();
66 // if there are children, we use the count as a repeat count for the children.
68 count = 1;
72 typeCount[typeIndex] += count;
74 for (int k = 0 ; k < count ; k++) {
/frameworks/base/opengl/java/android/opengl/
H A DGLES20.java665 // C function void glDrawArrays ( GLenum mode, GLint first, GLsizei count )
670 int count
673 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, GLint offset )
677 int count,
682 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
686 int count,
860 // C function void glGetAttachedShaders ( GLuint program, GLsizei maxcount, GLsizei *count, GLuint *shaders )
865 int[] count,
871 // C function void glGetAttachedShaders ( GLuint program, GLsizei maxcount, GLsizei *count, GLuint *shaders )
876 java.nio.IntBuffer count,
675 glDrawElements( int mode, int count, int type, int offset ) argument
684 glDrawElements( int mode, int count, int type, java.nio.Buffer indices ) argument
862 glGetAttachedShaders( int program, int maxcount, int[] count, int countOffset, int[] shaders, int shadersOffset ) argument
873 glGetAttachedShaders( int program, int maxcount, java.nio.IntBuffer count, java.nio.IntBuffer shaders ) argument
1532 glUniform1fv( int location, int count, float[] v, int offset ) argument
1541 glUniform1fv( int location, int count, java.nio.FloatBuffer v ) argument
1556 glUniform1iv( int location, int count, int[] v, int offset ) argument
1565 glUniform1iv( int location, int count, java.nio.IntBuffer v ) argument
1581 glUniform2fv( int location, int count, float[] v, int offset ) argument
1590 glUniform2fv( int location, int count, java.nio.FloatBuffer v ) argument
1606 glUniform2iv( int location, int count, int[] v, int offset ) argument
1615 glUniform2iv( int location, int count, java.nio.IntBuffer v ) argument
1632 glUniform3fv( int location, int count, float[] v, int offset ) argument
1641 glUniform3fv( int location, int count, java.nio.FloatBuffer v ) argument
1658 glUniform3iv( int location, int count, int[] v, int offset ) argument
1667 glUniform3iv( int location, int count, java.nio.IntBuffer v ) argument
1685 glUniform4fv( int location, int count, float[] v, int offset ) argument
1694 glUniform4fv( int location, int count, java.nio.FloatBuffer v ) argument
1712 glUniform4iv( int location, int count, int[] v, int offset ) argument
1721 glUniform4iv( int location, int count, java.nio.IntBuffer v ) argument
1729 glUniformMatrix2fv( int location, int count, boolean transpose, float[] value, int offset ) argument
1739 glUniformMatrix2fv( int location, int count, boolean transpose, java.nio.FloatBuffer value ) argument
1748 glUniformMatrix3fv( int location, int count, boolean transpose, float[] value, int offset ) argument
1758 glUniformMatrix3fv( int location, int count, boolean transpose, java.nio.FloatBuffer value ) argument
1767 glUniformMatrix4fv( int location, int count, boolean transpose, float[] value, int offset ) argument
1777 glUniformMatrix4fv( int location, int count, boolean transpose, java.nio.FloatBuffer value ) argument
[all...]
/frameworks/base/tools/aapt/
H A DZipFile.cpp177 int count = mEntries.size(); local
179 while (--count >= 0)
180 delete mEntries[count];
649 size_t count; local
654 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
657 if (count == 0)
660 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
662 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
663 LOGD("fwrite %d bytes failed\n", (int) count);
679 size_t count; local
705 size_t count; local
901 int i, count; local
953 int i, count; local
[all...]
/frameworks/base/libs/utils/
H A DAsset.cpp436 ssize_t _FileAsset::read(void* buf, size_t count) argument
454 /* adjust count if we're near EOF */
456 if (count > maxLen)
457 count = maxLen;
459 if (!count)
465 memcpy(buf, (char*)mMap->getDataPtr() + mOffset, count);
466 actual = count;
470 memcpy(buf, (char*)mBuf + mOffset, count);
471 actual = count;
488 actual = fread(buf, 1, count, mF
760 read(void* buf, size_t count) argument
[all...]
/frameworks/base/core/java/android/database/
H A DIBulkCursor.java45 public int count() throws RemoteException; method in interface:IBulkCursor
/frameworks/base/core/java/android/text/
H A DPackedObjectVector.java83 deleteAt(int row, int count) argument
85 moveRowGapTo(row + count);
87 mRowGapStart -= count;
88 mRowGapLength += count;
/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java378 final float totalDelay = delay * params.count;
404 return params.count - 1 - params.index;
409 return (int) (params.count * mRandomizer.nextFloat());
427 public int count; field in class:LayoutAnimationController.AnimationParameters
/frameworks/base/core/java/android/widget/
H A DAbsoluteLayout.java57 int count = getChildCount();
66 for (int i = 0; i < count; i++) {
109 int count = getChildCount();
111 for (int i = 0; i < count; i++) {
H A DAlphabetIndexer.java164 int count = cursor.getCount();
166 int end = count;
227 if (start >= count) {
228 pos = count;
/frameworks/base/core/java/com/google/android/mms/pdu/
H A DEncodedStringValue.java273 int count = array.length;
274 if (count > 0) {
275 EncodedStringValue[] encodedArray = new EncodedStringValue[count];
276 for (int i = 0; i < count; i++) {
/frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
H A DListTouchManyTest.java100 int count = mListView.getChildCount();
104 for (i = 0; i < count; i++) {
127 int count = mListView.getChildCount();
132 for (i = 0; i < count; i++) {
/frameworks/base/include/utils/
H A DStreamingZipInflater.h41 // read 'count' bytes of uncompressed data from the current position. outBuf may
43 ssize_t read(void* outBuf, size_t count);
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP.c93 OMX_INT iBlk, i, count = 1; local
125 count = 4;
129 count = 1;
139 for (iBlk = 0; iBlk < count; iBlk++)
/frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
H A DEvaluationTestBench.c331 void H264SwDecMemcpy(void *dest, void *src, u32 count) argument
333 memcpy(dest, src, count);
346 void H264SwDecMemset(void *ptr, i32 value, u32 count) argument
348 memset(ptr, value, count);
/frameworks/base/opengl/libs/GLES2_dbg/
H A Dgenerate_api_cpp.py97 count = 1 variable
100 count = int(annotation.split("*")[0]) variable
104 count = 1 variable
109 count = int(annotation) variable
H A Dgenerate_caller_cpp.py84 count = 1
87 count = int(annotation.split("*")[0])
91 count = 1
96 count = int(annotation)
/frameworks/base/opengl/tools/glgen/stubs/gles11/
H A DGLES10cHeader.cpp32 const GLvoid *ptr, GLsizei count);
34 const GLvoid *pointer, GLsizei count);
36 GLsizei stride, const GLvoid *pointer, GLsizei count);
38 GLsizei stride, const GLvoid *pointer, GLsizei count);
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
H A DTestDelegates.java47 final int count = classes.length;
48 for (int i = 0 ; i < count ; i++) {
55 final int count = methods.length;
56 for (int i = 0 ; i < count ; i++) {
/frameworks/compile/libbcc/runtime/test/timing/
H A Dashldi3.c16 int64_t FUNCTION_NAME(int64_t input, INPUT_TYPE count);

Completed in 609 milliseconds

1234567891011>>