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

1234567891011>>

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetDebugMessageLogKHR.java1 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
4 int count,
19 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
22 int count,
30 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
33 int count,
43 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
46 int count,
3 glGetDebugMessageLogKHR( int count, int bufSize, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset, int[] lengths, int lengthsOffset, byte[] messageLog, int messageLogOffset) argument
21 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities, java.nio.IntBuffer lengths, java.nio.ByteBuffer messageLog) argument
32 glGetDebugMessageLogKHR( int count, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset) argument
45 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities) argument
/frameworks/native/services/sensorservice/
H A DBatteryService.h40 int32_t count; member in struct:android::BatteryService::Info
41 Info() : uid(0), handle(0), count(0) { }
42 Info(uid_t uid, int handle) : uid(uid), handle(handle), count(0) { }
H A DCorrectedGyroSensor.cpp32 CorrectedGyroSensor::CorrectedGyroSensor(sensor_t const* list, size_t count) argument
34 for (size_t i=0 ; i<count ; i++) {
H A DGravitySensor.cpp32 GravitySensor::GravitySensor(sensor_t const* list, size_t count) { argument
33 for (size_t i=0 ; i<count ; i++) {
H A DLinearAccelerationSensor.cpp32 LinearAccelerationSensor::LinearAccelerationSensor(sensor_t const* list, size_t count) : argument
33 mGravitySensor(list, 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/support/compat/java/android/support/v4/util/
H A DLogWriter.java55 @Override public void write(char[] buf, int offset, int count) { argument
56 for(int i = 0; i < count; i++) {
/frameworks/support/compat/tests/java/android/support/v4/view/
H A DViewPropertyAnimatorCompatTest.java123 void waitAndCheckCallCount(final int count) throws InterruptedException { argument
125 while (mNumListenerCalls != count) {
/frameworks/support/v7/recyclerview/src/android/support/v7/util/
H A DListUpdateCallback.java25 * Called when {@code count} number of items are inserted at the given position.
28 * @param count The number of items that have been added.
30 void onInserted(int position, int count); argument
33 * Called when {@code count} number of items are removed from the given position.
36 * @param count The number of items which have been removed.
38 void onRemoved(int position, int count); argument
49 * Called when {@code count} number of items are updated at the given position.
52 * @param count The number of items which has changed.
54 void onChanged(int position, int count, Object payload); argument
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/util/
H A DSortedListAdapterCallback.java41 public void onInserted(int position, int count) { argument
42 mAdapter.notifyItemRangeInserted(position, count);
46 public void onRemoved(int position, int count) { argument
47 mAdapter.notifyItemRangeRemoved(position, count);
56 public void onChanged(int position, int count) { argument
57 mAdapter.notifyItemRangeChanged(position, count);
/frameworks/av/camera/ndk/impl/
H A DACameraMetadata.h51 camera_status_t update(uint32_t tag, uint32_t count, const uint8_t* data);
52 camera_status_t update(uint32_t tag, uint32_t count, const int32_t* data);
53 camera_status_t update(uint32_t tag, uint32_t count, const float* data);
54 camera_status_t update(uint32_t tag, uint32_t count, const double* data);
55 camera_status_t update(uint32_t tag, uint32_t count, const int64_t* data);
56 camera_status_t update(uint32_t tag, uint32_t count, const ACameraMetadata_rational* data);
70 camera_status_t updateImpl(uint32_t tag, uint32_t count, const NDK_T* data) { argument
83 if (count == 0 && data == nullptr) {
88 ret = mData.update(tag, reinterpret_cast<const INTERNAL_T*>(data), count);
/frameworks/av/media/img_utils/src/
H A DEndianUtils.cpp48 status_t EndianOutput::write(const uint8_t* buf, size_t offset, size_t count) { argument
50 if((res = mOutput->write(buf, offset, count)) == OK) {
51 mOffset += count;
56 status_t EndianOutput::write(const int8_t* buf, size_t offset, size_t count) { argument
57 return write(reinterpret_cast<const uint8_t*>(buf), offset, count);
61 status_t EndianOutput::write(const _type_* buf, size_t offset, size_t count) { \
62 return writeHelper<_type_>(buf, offset, count); \
72 status_t EndianOutput::write(const float* buf, size_t offset, size_t count) { argument
74 return writeHelper<uint32_t>(reinterpret_cast<const uint32_t*>(buf), offset, count);
77 status_t EndianOutput::write(const double* buf, size_t offset, size_t count) { argument
[all...]
/frameworks/av/media/libmedia/
H A DIMediaDeathNotifier.cpp92 size_t count = list.size(); local
93 for (size_t iter = 0; iter < count; ++iter) {
/frameworks/av/media/libnbaio/
H A DAudioBufferProviderSource.cpp49 ssize_t AudioBufferProviderSource::read(void *buffer, size_t count) argument
55 mBuffer.frameCount = count;
64 if (CC_UNLIKELY(count > available)) {
65 count = available;
67 // count could be zero, either because count was zero on entry or
69 memcpy(buffer, (char *) mBuffer.raw + (mConsumed * mFrameSize), count * mFrameSize);
70 if (CC_UNLIKELY((mConsumed += count) >= mBuffer.frameCount)) {
75 mFramesRead += count;
76 // For better responsiveness with large values of count,
92 size_t count = total - accumulator; local
[all...]
H A DAudioStreamInSource.cpp70 ALOGE("Error when retrieving lost frames count from HAL: %d", result);
75 ssize_t AudioStreamInSource::read(void *buffer, size_t count) argument
81 status_t result = mStream->read(buffer, count * mFrameSize, &bytesRead);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_EncodeMV.c104 OMX_INT iBlk, i, count = 1; local
133 count = 4;
137 count = 1;
143 for (iBlk = 0; iBlk < count; iBlk++)
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dh264bsd_interpolate_mid_hor.s37 count RN 2 ;// bit-packed width and count values label
71 ;// pack values to count register
81 AND tmp3, count, #0x000F0000 ;// partWidth-1
84 ADD count, count, tmp3, LSL #12
115 SUBS count, count, #4<<28
146 SUBS count, count, #
[all...]
/frameworks/av/media/mtp/
H A DMtpStringBuffer.cpp59 // count the characters
60 int count = 0; local
64 while ((ch = *src++) != 0 && count < MTP_STRING_MAX_CHARACTER_NUMBER) {
95 count++;
100 mCharCount = count;
104 int count = 0; local
108 while ((ch = *src++) != 0 && count < MTP_STRING_MAX_CHARACTER_NUMBER) {
119 count++;
122 mCharCount = count;
127 uint8_t count; local
155 int count = mCharCount; local
[all...]
/frameworks/av/media/utils/
H A DMemoryLeakTrackUtil.cpp64 size_t count; local
66 || (count = overallSize / infoSize) == 0) {
72 oss << totalMemory << " bytes in " << count << " allocations\n"; local
74 if (count > limit) count = limit;
79 for (size_t i = 0; i < count; i++) {
/frameworks/av/services/audioflinger/
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/av/services/oboeservice/
H A DAAudioServiceEndpoint.h65 void setReferenceCount(int32_t count) { argument
66 mReferenceCount = count;
/frameworks/base/cmds/incidentd/src/
H A DFdBuffer.cpp83 int count = poll(&pfds, 1, remainingTime); local
84 if (count == 0) {
87 } else if (count < 0) {
/frameworks/base/core/java/android/os/health/
H A DTimerStat.java23 * A TimerStat object stores a count and a time.
49 * Construct an empty TimerStat object with the count and time set to 0.
55 * Construct a TimerStat object with the supplied count and time fields.
57 * @param count The count
60 public TimerStat(int count, long time) { argument
61 mCount = count;
90 * Set the count for this timer.
92 public void setCount(int count) { argument
93 mCount = count;
[all...]
/frameworks/base/core/java/android/util/
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;

Completed in 506 milliseconds

1234567891011>>