Searched defs:count (Results 51 - 75 of 430) sorted by relevance

1234567891011>>

/frameworks/av/services/audioflinger/
H A DAudioResamplerFirProcessNeon.h54 int count,
83 "subs %[count], %[count], #8 \n"// (1) update loop counter
92 [count] "+r" (count),
106 int count,
140 "subs %[count], %[count], #8 \n"// (1) update loop counter
149 [count] "+r" (count),
53 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
105 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
163 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
233 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
309 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
370 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
450 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
535 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
639 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
689 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
742 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
810 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
881 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
935 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
997 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
1069 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
[all...]
H A DStateQueue.cpp117 unsigned count = 0; local
130 if (count == 1) {
133 ++count;
138 if (count > 1) {
161 unsigned count = 0; local
170 if (count == 1) {
173 ++count;
178 if (count > 1) {
/frameworks/base/core/java/android/util/
H A DIntArray.java84 final int count = values.mSize;
85 ensureCapacity(count);
87 System.arraycopy(values.mValues, 0, mValues, mSize, count);
88 mSize += count;
92 * Ensures capacity to append at least <code>count</code> values.
94 private void ensureCapacity(int count) { argument
96 final int minCapacity = currentSize + count;
H A DLogWriter.java64 @Override public void write(char[] buf, int offset, int count) { argument
65 for(int i = 0; i < count; i++) {
H A DLongArray.java83 final int count = values.mSize;
84 ensureCapacity(count);
86 System.arraycopy(values.mValues, 0, mValues, mSize, count);
87 mSize += count;
91 * Ensures capacity to append at least <code>count</code> values.
93 private void ensureCapacity(int count) { argument
95 final int minCapacity = currentSize + count;
/frameworks/base/drm/java/android/drm/
H A DDrmOutputStream.java93 public void write(byte[] buffer, int offset, int count) throws IOException { argument
94 Arrays.checkOffsetAndCount(buffer.length, offset, count);
97 if (count == buffer.length) {
100 exactBuffer = new byte[count];
101 System.arraycopy(buffer, offset, exactBuffer, 0, count);
/frameworks/base/libs/common_time/
H A Dutils.h65 uint32_t count; member in class:android::LogRing::Entry
/frameworks/base/obex/javax/obex/
H A DPrivateOutputStream.java97 public synchronized void write(byte[] buffer, int offset, int count) throws IOException { argument
99 int remainLength = count;
104 if ((offset | count) < 0 || count > buffer.length - offset) {
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
H A DUsbAccessoryBulkTransport.java55 protected int ioRead(byte[] buffer, int offset, int count) throws IOException { argument
59 return mConnection.bulkTransfer(mBulkInEndpoint, buffer, offset, count, -1);
63 protected void ioWrite(byte[] buffer, int offset, int count) throws IOException { argument
68 buffer, offset, count, TIMEOUT_MILLIS);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DUnsafeByteSequence.java32 private int count; field in class:UnsafeByteSequence
39 return count;
47 count = 0;
51 if (count + length >= bytes.length) {
52 byte[] newBytes = new byte[(count + length) * 2];
53 System.arraycopy(bytes, 0, newBytes, 0, count);
56 System.arraycopy(buffer, offset, bytes, count, length);
57 count += length;
61 if (count == bytes.length) {
62 byte[] newBytes = new byte[count *
[all...]
/frameworks/native/include/gui/
H A DDisplayEventReceiver.h56 uint32_t count; member in struct:android::DisplayEventReceiver::Event::VSync
104 ssize_t getEvents(Event* events, size_t count);
106 Event* events, size_t count);
113 Event const* events, size_t count);
121 status_t setVsyncRate(uint32_t count);
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetDebugMessageLogKHR.cpp1 /* GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog ) */
4 (JNIEnv *_env, jobject _this, jint count, jint bufSize, jintArray sources_ref, jint sourcesOffset, jintArray types_ref, jint typesOffset, jintArray ids_ref, jint idsOffset, jintArray severities_ref, jint severitiesOffset, jintArray lengths_ref, jint lengthsOffset, jbyteArray messageLog_ref, jint messageLogOffset) {
9 /* GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog ) */
12 (JNIEnv *_env, jobject _this, jint count, jobject sources_ref, jobject types_ref, jobject ids_ref, jobject severities_ref, jobject lengths_ref, jobject messageLog_ref) {
17 /* GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog ) */
20 (JNIEnv *_env, jobject _this, jint count, jintArray sources_ref, jint sourcesOffset, jintArray types_ref, jint typesOffset, jintArray ids_ref, jint idsOffset, jintArray severities_ref, jint severitiesOffset) {
25 /* GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog ) */
28 (JNIEnv *_env, jobject _this, jint count, jobject sources_ref, jobject types_ref, jobject ids_ref, jobject severities_ref) {
3 android_glGetDebugMessageLogKHR__II_3II_3II_3II_3II_3II_3BI(JNIEnv *_env, jobject _this, jint count, jint bufSize, jintArray sources_ref, jint sourcesOffset, jintArray types_ref, jint typesOffset, jintArray ids_ref, jint idsOffset, jintArray severities_ref, jint severitiesOffset, jintArray lengths_ref, jint lengthsOffset, jbyteArray messageLog_ref, jint messageLogOffset) argument
11 android_glGetDebugMessageLogKHR__ILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_ByteBuffer_2(JNIEnv *_env, jobject _this, jint count, jobject sources_ref, jobject types_ref, jobject ids_ref, jobject severities_ref, jobject lengths_ref, jobject messageLog_ref) argument
19 android_glGetDebugMessageLogKHR__I_3II_3II_3II_3II(JNIEnv *_env, jobject _this, jint count, jintArray sources_ref, jint sourcesOffset, jintArray types_ref, jint typesOffset, jintArray ids_ref, jint idsOffset, jintArray severities_ref, jint severitiesOffset) argument
27 android_glGetDebugMessageLogKHR__ILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint count, jobject sources_ref, jobject types_ref, jobject ids_ref, jobject severities_ref) argument
/frameworks/native/services/sensorservice/
H A DGravitySensor.cpp32 GravitySensor::GravitySensor(sensor_t const* list, size_t count) argument
36 for (size_t i=0 ; i<count ; i++) {
H A DLinearAccelerationSensor.cpp32 LinearAccelerationSensor::LinearAccelerationSensor(sensor_t const* list, size_t count) argument
34 mGravitySensor(list, count)
/frameworks/native/services/sensorservice/tests/
H A Dsensorservicetest.cpp67 ssize_t count = mgr.getSensorList(&list); local
68 printf("numSensors=%d\n", int(count));
/frameworks/native/services/surfaceflinger/EventLog/
H A DEventLog.cpp69 void EventLog::TagBuffer::startList(int8_t count) { argument
71 const size_t needed = 1 + sizeof(count);
77 mStorage[mPos + 1] = count;
/frameworks/opt/net/voip/src/jni/rtp/
H A DGsmCodec.cpp47 int decode(int16_t *samples, int count, void *payload, int length);
60 int GsmCodec::decode(int16_t *samples, int count, void *payload, int length) argument
64 while (n + 160 <= count && length >= 33 &&
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup.h42 size_t count; member in struct:android::renderscript::CpuScriptGroupImpl::ScriptList
/frameworks/wilhelm/src/itf/
H A DIMetadataTraversal.c55 SLuint32 count = thiz->mCount; local
57 *pCount = count;
/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/av/media/libmedia/
H A DIMediaCodecList.cpp104 size_t count = countCodecs(); local
105 if (count > INT32_MAX) {
106 count = INT32_MAX;
108 reply->writeInt32(count);
/frameworks/av/media/libnbaio/
H A DAudioBufferProviderSource.cpp50 size_t count,
57 mBuffer.frameCount = count;
66 if (CC_UNLIKELY(count > available)) {
67 count = available;
69 // count could be zero, either because count was zero on entry or
71 memcpy(buffer, (char *) mBuffer.raw + (mConsumed * mFrameSize), count * mFrameSize);
72 if (CC_UNLIKELY((mConsumed += count) >= mBuffer.frameCount)) {
77 mFramesRead += count;
78 // For better responsiveness with large values of count,
49 read(void *buffer, size_t count, int64_t readPTS) argument
95 size_t count = total - accumulator; local
[all...]
H A DAudioStreamInSource.cpp67 ssize_t AudioStreamInSource::read(void *buffer, size_t count, int64_t readPTS __unused) argument
72 ssize_t bytesRead = mStream->read(mStream, buffer, count * mFrameSize);
H A DAudioStreamOutSink.cpp53 ssize_t AudioStreamOutSink::write(const void *buffer, size_t count) argument
59 ssize_t ret = mStream->write(mStream, buffer, count * mFrameSize);

Completed in 476 milliseconds

1234567891011>>