Searched refs:count (Results 101 - 125 of 1169) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dh264bsd_interpolate_chroma_hor_ver.s42 count RN 2 label
155 ;// pack values to count register
164 ADD count, count, tmp2, LSL #16 ;// chromaPartHeight-1
165 ADD count, count, tmp2, LSL #24 ;// loop_y
166 ADD count, count, tmp1, LSL #20 ;// chromaPartWidth-1
167 AND tmp2, count, #0x00F00000 ;// loop_x
190 ADD count, coun
[all...]
H A Dh264bsd_interpolate_chroma_ver.s40 count RN 2 label
147 ;// pack values to count register
156 ADD count, count, tmp2, LSL #16 ;// chromaPartHeight-1
157 ADD count, count, tmp2, LSL #24 ;// loop_y
158 ADD count, count, tmp1, LSL #20 ;// chromaPartWidth-1
159 AND tmp2, count, #0x00F00000 ;// loop_x
173 ADD count, coun
[all...]
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...]
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DExif.java52 count = pack(jpeg, offset - 2, 2, littleEndian);
143 int count = pack(jpeg, offset + 4, 4, littleEndian) + 2;
144 if (count < 10 || count > length) {
148 offset += count;
149 length -= count;
154 // Get the count and go through all the elements.
155 count = pack(jpeg, offset - 2, 2, littleEndian);
157 while (count-- > 0 && length >= 12) {
161 // We do not really care about type and count, d
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DExif.java47 count = pack(jpeg, offset - 2, 2, littleEndian);
138 int count = pack(jpeg, offset + 4, 4, littleEndian) + 2;
139 if (count < 10 || count > length) {
143 offset += count;
144 length -= count;
149 // Get the count and go through all the elements.
150 count = pack(jpeg, offset - 2, 2, littleEndian);
152 while (count-- > 0 && length >= 12) {
156 // We do not really care about type and count, d
[all...]
/frameworks/av/media/libnbaio/
H A DNBAIO.cpp79 size_t count = total - accumulator; local
80 if (count > block) {
81 count = block;
83 ssize_t ret = via(user, buffer, count);
85 ALOG_ASSERT((size_t) ret <= count);
115 size_t count = total - accumulator; local
116 if (count > block) {
117 count = block;
119 ssize_t ret = read(buffer, count);
121 ALOG_ASSERT((size_t) ret <= count);
[all...]
/frameworks/base/libs/usb/tests/accessorytest/
H A Dhid.c95 int count = desc_length - offset; local
96 if (count > max_packet) count = max_packet;
98 fprintf(stderr, "sending ACCESSORY_SET_HID_REPORT_DESC offset: %d count: %d desc_length: %d\n",
99 offset, count, desc_length);
101 ACCESSORY_SET_HID_REPORT_DESC, id, offset, &desc.value[offset], count, 1000);
103 offset += count;
167 int count = read(inotify_fd, event_buf, sizeof(event_buf)); local
168 if (count < (int)sizeof(*event)) {
174 while (count >
[all...]
/frameworks/base/core/java/android/view/
H A DHandlerActionQueue.java52 final int count = mCount;
56 for (int i = 0; i < count; i++) {
76 for (; j < count; j++) {
85 for (int i = 0, count = mCount; i < count; i++) {
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
H A DObjectFormat.java29 public static MutableFrameFormat fromClass(Class clazz, int count, int target) { argument
33 if (count != FrameFormat.SIZE_UNSPECIFIED) {
34 result.setDimensions(count);
50 public static MutableFrameFormat fromObject(Object object, int count, int target) { argument
53 : fromClass(object.getClass(), count, target);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
H A DDashboardCategory.java88 final int count = tiles.size();
89 dest.writeInt(count);
91 for (int n = 0; n < count; n++) {
102 final int count = in.readInt();
104 for (int n = 0; n < count; n++) {
/frameworks/av/media/img_utils/include/img_utils/
H A DEndianUtils.h102 virtual status_t write(const uint8_t* buf, size_t offset, size_t count);
104 virtual status_t write(const int8_t* buf, size_t offset, size_t count);
106 virtual status_t write(const uint16_t* buf, size_t offset, size_t count);
108 virtual status_t write(const int16_t* buf, size_t offset, size_t count);
110 virtual status_t write(const uint32_t* buf, size_t offset, size_t count);
112 virtual status_t write(const int32_t* buf, size_t offset, size_t count);
114 virtual status_t write(const uint64_t* buf, size_t offset, size_t count);
116 virtual status_t write(const int64_t* buf, size_t offset, size_t count);
118 virtual status_t write(const float* buf, size_t offset, size_t count);
120 virtual status_t write(const double* buf, size_t offset, size_t count);
132 writeHelper(const T* buf, size_t offset, size_t count) argument
[all...]
H A DTiffEntryImpl.h38 TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, const T* data);
64 TiffEntryImpl<T>::TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, argument
66 : mTag(tag), mType(static_cast<uint16_t>(type)), mCount(count), mEnd(end) {
67 count = (type == RATIONAL || type == SRATIONAL) ? count * 2 : count;
68 ssize_t index = mData.appendArray(data, count);
134 uint32_t count = mCount; local
139 * size of the array here, multiply the count by 2.
141 count <<
160 uint32_t count = mCount; local
[all...]
/frameworks/base/core/java/android/view/animation/
H A DAnimationSet.java131 final int count = mAnimations.size();
134 for (int i = 0; i < count; i++) {
185 final int count = mAnimations.size();
188 for (int i = 0; i < count; i++) {
257 final int count = mAnimations.size();
260 for (int i = 0; i < count; i++) {
270 final int count = mAnimations.size();
273 for (int i = 0; i < count; i++) {
286 int count = animations.size();
288 for (int i = 0; i < count;
[all...]
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A Dchecks.spec28 glDebugMessageControl check ids count
36 glDrawElements check_AIOOBE indices count
37 glDrawElementsBaseVertex check_AIOOBE indices count-basevertex
38 glDrawRangeElementsBaseVertex check_AIOOBE indices count-basevertex
52 glGetAttachedShaders nullAllowed count check count 1 check shaders maxcount
103 glUniform1 check v count
104 glUniform2 check v count*2
105 glUniform3 check v count*3
106 glUniform4 check v count*
[all...]
/frameworks/base/core/java/android/util/jar/
H A DStrictJarFile.java159 int count = 0;
161 count += chain.length;
165 Certificate[] certs = new Certificate[count];
268 private long count; field in class:StrictJarFile.JarFileInputStream
275 count = size;
283 if (count > 0) {
287 count--;
289 count = 0;
291 if (count == 0) {
308 if (count >
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_connectivity_Vpn.cpp134 int count = 0; local
143 count = BAD_ARGUMENT;
149 count = (errno == EINVAL) ? BAD_ARGUMENT : SYSTEM_ERROR;
156 count = BAD_ARGUMENT;
160 if (count) {
161 sprintf(ifr4.ifr_name, "%s:%d", name, count);
164 count = (errno == EINVAL) ? BAD_ARGUMENT : SYSTEM_ERROR;
171 count = (errno == EINVAL) ? BAD_ARGUMENT : SYSTEM_ERROR;
176 ++count;
179 if (count
286 int count = -1; local
[all...]
/frameworks/base/core/java/android/gesture/
H A DGestureStroke.java50 final int count = points.size();
51 final float[] tmpPoints = new float[count * 2];
52 final long[] times = new long[count];
58 for (int i = 0; i < count; i++) {
122 final int count = localPoints.length;
129 for (int i = 0; i < count; i += 2) {
176 final int count = pts.length;
178 for (int i = 0; i < count; i += 2) {
203 final int count = points.length;
206 out.writeInt(count /
[all...]
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DRequestHolder.java117 int count = 0;
121 ++count;
127 return count;
134 int count = 0;
138 ++count;
144 return 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/libs/hwui/
H A DGpuMemoryTracker.cpp43 int count = 0; member in struct:android::uirenderer::TypeStats
59 gObjectStats[static_cast<int>(mType)].count++;
67 gObjectStats[static_cast<int>(mType)].count--;
97 stream << ", count = " << stats.count;
103 return gObjectStats[static_cast<int>(type)].count;
118 ATRACE_INT(buf, stats.count);
/frameworks/base/media/java/android/media/midi/
H A DMidiOutputPort.java59 int count = mInputStream.read(buffer);
60 if (count < 0) {
65 int packetType = MidiPortImpl.getPacketType(buffer, count);
68 int offset = MidiPortImpl.getDataOffset(buffer, count);
69 int size = MidiPortImpl.getDataSize(buffer, count);
70 long timestamp = MidiPortImpl.getPacketTimestamp(buffer, count);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DSimpleFrame.java49 final int count = format.getLength();
53 mObject = new byte[count];
56 mObject = new short[count];
59 mObject = new int[count];
62 mObject = new float[count];
65 mObject = new double[count];
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DSectionedListAdapter.java55 int count = 0;
58 count += mSections.get(i).getCount() + 1;
60 return count;
157 int count = 1;
160 count += mSections.get(i).getViewTypeCount();
162 return count;
/frameworks/native/opengl/libagl/
H A Darray.cpp314 const GLvoid *pointer, const buffer_t* bo, GLsizei count)
334 this->bounds = count;
381 size_t count = VERTEX_BUFFER_SIZE + VERTEX_CACHE_SIZE; local
385 } while (--count);
392 size_t count = VERTEX_BUFFER_SIZE + VERTEX_CACHE_SIZE; local
396 } while (--count);
533 void drawPrimitivesPoints(ogles_context_t* c, GLint first, GLsizei count) argument
535 if (ggl_unlikely(count < 1))
544 GLsizei num = count > vcs ? vcs : count;
312 init( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, const buffer_t* bo, GLsizei count) argument
564 drawPrimitivesLineStrip(ogles_context_t* c, GLint first, GLsizei count) argument
603 drawPrimitivesLineLoop(ogles_context_t* c, GLint first, GLsizei count) argument
618 drawPrimitivesLines(ogles_context_t* c, GLint first, GLsizei count) argument
650 drawPrimitivesTriangleFanOrStrip(ogles_context_t* c, GLint first, GLsizei count, int winding) argument
704 drawPrimitivesTriangleStrip(ogles_context_t* c, GLint first, GLsizei count) argument
709 drawPrimitivesTriangleFan(ogles_context_t* c, GLint first, GLsizei count) argument
714 drawPrimitivesTriangles(ogles_context_t* c, GLint first, GLsizei count) argument
764 drawIndexedPrimitivesPoints(ogles_context_t* c, GLsizei count, const GLvoid *indices) argument
781 drawIndexedPrimitivesLineStrip(ogles_context_t* c, GLsizei count, const GLvoid *indices) argument
806 drawIndexedPrimitivesLineLoop(ogles_context_t* c, GLsizei count, const GLvoid *indices) argument
838 drawIndexedPrimitivesLines(ogles_context_t* c, GLsizei count, const GLvoid *indices) argument
860 drawIndexedPrimitivesTriangleFanOrStrip(ogles_context_t* c, GLsizei count, const GLvoid *indices, int winding) argument
896 drawIndexedPrimitivesTriangleStrip(ogles_context_t* c, GLsizei count, const GLvoid *indices) argument
901 drawIndexedPrimitivesTriangleFan(ogles_context_t* c, GLsizei count, const GLvoid *indices) argument
906 drawIndexedPrimitivesTriangles(ogles_context_t* c, GLsizei count, const GLvoid *indices) argument
965 compileElements__generic(ogles_context_t* c, vertex_t* v, GLint first, GLsizei count) argument
1345 glDrawArrays(GLenum mode, GLint first, GLsizei count) argument
1389 glDrawElements( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) argument
[all...]
/frameworks/av/services/audioflinger/
H A DAudioResamplerFirProcessNeon.h75 int count,
85 ALOG_ASSERT(count > 0 && (count & 7) == 0); // multiple of 8
160 } while (count -= 8);
183 int count,
193 ALOG_ASSERT(count > 0 && (count & 7) == 0); // multiple of 8
335 } while (count -= 8);
358 int count,
368 ALOG_ASSERT(count >
74 ProcessNeonIntrinsic(int32_t* out, int count, const int16_t* coefsP, const int16_t* coefsN, const int16_t* sP, const int16_t* sN, const int32_t* volumeLR, uint32_t lerpP, const int16_t* coefsP1, const int16_t* coefsN1) argument
182 ProcessNeonIntrinsic(int32_t* out, int count, const int32_t* coefsP, const int32_t* coefsN, const int16_t* sP, const int16_t* sN, const int32_t* volumeLR, uint32_t lerpP, const int32_t* coefsP1, const int32_t* coefsN1) argument
357 ProcessNeonIntrinsic(float* out, int count, const float* coefsP, const float* coefsN, const float* sP, const float* sN, const float* volumeLR, float lerpP, const float* coefsP1, const float* coefsN1) argument
526 ProcessL(int32_t* const out, int count, const int16_t* coefsP, const int16_t* coefsN, const int16_t* sP, const int16_t* sN, const int32_t* const volumeLR) argument
583 ProcessL(int32_t* const out, int count, const int16_t* coefsP, const int16_t* coefsN, const int16_t* sP, const int16_t* sN, const int32_t* const volumeLR) argument
646 Process(int32_t* const out, int count, const int16_t* coefsP, const int16_t* coefsN, const int16_t* coefsP1, const int16_t* coefsN1, const int16_t* sP, const int16_t* sN, uint32_t lerpP, const int32_t* const volumeLR) argument
722 Process(int32_t* const out, int count, const int16_t* coefsP, const int16_t* coefsN, const int16_t* coefsP1, const int16_t* coefsN1, const int16_t* sP, const int16_t* sN, uint32_t lerpP, const int32_t* const volumeLR) argument
803 ProcessL(int32_t* const out, int count, const int32_t* coefsP, const int32_t* coefsN, const int16_t* sP, const int16_t* sN, const int32_t* const volumeLR) argument
869 ProcessL(int32_t* const out, int count, const int32_t* coefsP, const int32_t* coefsN, const int16_t* sP, const int16_t* sN, const int32_t* const volumeLR) argument
954 Process(int32_t* const out, int count, const int32_t* coefsP, const int32_t* coefsN, const int32_t* coefsP1, const int32_t* coefsN1, const int16_t* sP, const int16_t* sN, uint32_t lerpP, const int32_t* const volumeLR) argument
1044 Process(int32_t* const out, int count, const int32_t* coefsP, const int32_t* coefsN, const int32_t* coefsP1, const int32_t* coefsN1, const int16_t* sP, const int16_t* sN, uint32_t lerpP, const int32_t* const volumeLR) argument
1153 ProcessL(float* const out, int count, const float* coefsP, const float* coefsN, const float* sP, const float* sN, const float* const volumeLR) argument
1166 ProcessL(float* const out, int count, const float* coefsP, const float* coefsN, const float* sP, const float* sN, const float* const volumeLR) argument
1179 Process(float* const out, int count, const float* coefsP, const float* coefsN, const float* coefsP1, const float* coefsN1, const float* sP, const float* sN, float lerpP, const float* const volumeLR) argument
1195 Process(float* const out, int count, const float* coefsP, const float* coefsN, const float* coefsP1, const float* coefsN1, const float* sP, const float* sN, float lerpP, const float* const volumeLR) argument
[all...]

Completed in 1845 milliseconds

1234567891011>>